You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/zh-cn/docs/reference/command-line-tools-reference/feature-gates/consistent-list-from-cache.md
+21-2Lines changed: 21 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,8 +9,27 @@ stages:
9
9
- stage: alpha
10
10
defaultValue: false
11
11
fromVersion: "1.28"
12
+
toVersion: "1.30"
13
+
- stage: beta
14
+
defaultValue: true
15
+
fromVersion: "1.31"
12
16
---
13
17
<!--
14
-
Allow the API server to serve consistent lists from cache.
18
+
Enhance Kubernetes API server performance by serving consistent **list** requests
19
+
directly from its watch cache, improving scalability and response times.
20
+
To consistent list from cache Kubernetes requires a newer etcd version (v3.4.31+ or v3.5.13+),
21
+
that includes fixes to watch progress request feature.
22
+
If older etcd version is provided Kubernetes will automatically detect it and fallback to serving consistent reads from etcd.
23
+
Progress notifications ensure watch cache is consistent with etcd while reducing
24
+
the need for resource-intensive quorum reads from etcd.
25
+
26
+
See the Kubernetes documentation on [Semantics for **get** and **list**](/docs/reference/using-api/api-concepts/#semantics-for-get-and-list) for more details.
15
27
-->
16
-
允许 API 服务器从缓存中提供一致的 list 操作。
28
+
通过直接使用监视缓存来为 **list** 请求提供一致性的数据,提升 Kubernetes API 服务器的性能,
0 commit comments