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/en/docs/reference/command-line-tools-reference/feature-gates/consistent-list-from-cache.md
+13-1Lines changed: 13 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,18 @@ 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
-
Allow the API server to serve consistent lists from cache.
17
+
Enhance Kubernetes API server performance by serving consistent **list** requests
18
+
directly from its watch cache, improving scalability and response times.
19
+
To consistent list from cache Kubernetes requires a newer etcd version (v3.4.31+ or v3.5.13+),
20
+
that includes fixes to watch progress request feature.
21
+
If older etcd version is provided Kubernetes will automatically detect it and fallback to serving consistent reads from etcd.
22
+
Progress notifications ensure watch cache is consistent with etcd while reducing
23
+
the need for resource-intensive quorum reads from etcd.
24
+
25
+
See the Kubernetes documentation on [Semantics for **get** and **list**](/docs/reference/using-api/api-concepts/#semantics-for-get-and-list) for more details.
0 commit comments