random A pseudorandom number generator (PRNG)
A pseudorandom number generator (PRNG), also known as a deterministic random bit generator (DRBG),[1] is an algorithm for generating a sequence of numbers whose properties approximate the properties of sequences of random numbers. The PRNG-generated sequence is not truly random, because it is completely determined by an initial value, called the PRNG’s seed (which may include truly random values).
number
Kubernetes vs. Docker: What Does it Really Mean?
Kubernetes 101: Pods, Nodes, Containers, and Clusters
Demystifying Kubernetes Operators with the Operator SDK: Part 1 Kubernetes Components
Kubernetes Cluster vs Master Node
api
kubectl-commands
Dive Deep into Resource Requests and Limits in Kubernetes
Kubernetes中pod的创建流程
10 张图带你搞懂 Kubernetes Pod 的创建流程
kubectl 创建 Pod 背后到底发生了什么?
what is kubernetes? docker: create containers k8s: 管理(编排)容器:
deploy container scaling up and removing containers monitor container architecture master: manager worker worker: 运行container 1.
百亿流量微服务网关的设计与实现
How NGINX Ingress Controller Works
what is? 路由 中介策略: 安全: ssl 过滤: 黑名单 流控 1. 分类 流量网:通用的功能,与业务无关 业务网关: 与具体业务相关联 二者也可能合二为一
2. vs zuul gateway core:
rouite filter router 传统方式:
1 2 3 4 5 6 7 ```yaml #Zuul实现的传统的路由配置 zuul: routes: hello-server-url: path: /hello-server/** url: http://localhost:9003 面向服务: 结合服务注册中心
1 2 3 4 5 6 7 8 9 # Zuul面向服务的配置服务 zuul: routes: api-hello-server: path: /hello-server/ service-id: hello-server api-customer-server: path: /customer-server/ service-id: customer-server ingress controller what: k8s网关,基于 nginx实现
Chapter 4. Kafka Consumers: Reading Data from Kafka
Kafka Rebalance机制分析
Deep Dive Into Apache Kafka | Storage Internals
How Kafka’s Storage Internals Work
Kafka消息时间戳(kafka message timestamp)
A Practical Introduction to Kafka Storage Internals
原来 8 张图,就可以搞懂「零拷贝」了 architecture ![[Pasted image 20221208220120.png]] producer
consumer group
broker: kafka 集群节点
topic: 一组消息的集合
partition: subset of topic,locate in different broker segement: subset of partition zookeeper: meta data
brokerList topList consumer consumer list consumer offset replicas what: 一份数据多个备份
30张图解: TCP 重传、滑动窗口、流量控制、拥塞控制
TCP 的那些事儿(上)
SYN packet handling in the wild
linux网络编程之TCP/IP基础(四):TCP连接的建立和断开、滑动窗口
How Linux creates sockets and counts them
小菜学编程
TCP Send Window, Receive Window, and How it Works
ppt
TCP Sliding Window Data Transfer and Acknowledgement Mechanics
TCP的快速重传机制
为什么 TCP 协议有粘包问题
TCP Socket Listen: A Tale of Two Queues (2022)
How to compute DevRTT, estimated RTT, & time-out interval in CCN
字节一面:TCP 和 UDP 可以使用同一个端口吗?
What is the meaning of SO_REUSEADDR (setsockopt option) - Linux
HTTP/2 头部压缩技术介绍
rfc7540
Head-of-Line Blocking in QUIC and HTTP/3: The Details
Introduction to HTTP/2 HTTP/2 头部压缩技术介绍
HTTP/2.0 Header Compression(上)
队头阻塞(Head-of-Line blocking)
http structure start line: GET /background.png HTTP/1.1 Header: provide extra message tell the brower do sth(cache) body: json, xml,etc. content-type content-type x-www-form-urlencoded application/x-www-form-urlencoded form-data multipart/form-data; boundary={boundary string} cache-control load local cache directly cache-control, expire before the time, it will load local;
cache-control:
public: allow proxy to cache the data(default value) private: only local browser can cache the data no-cache: it must go through valiation with origin server; no-store: can’t cache max-age=xxx; validate the resource from server If-Modified-Since: compare resource time If-None-Match: compare resource ta ;