Unlocking Efficiency with Kubernetes v1.36: Server-Side Sharded List and Watch
In a world where Kubernetes clusters can grow massive, the need for efficient resource management becomes critical. The server-side sharded list and watch feature addresses this by allowing the API server to filter events right at the source. This means that each controller replica only receives the slice of the resource collection it owns, reducing unnecessary load and improving overall system performance.
The mechanism behind this feature is straightforward yet powerful. It introduces a shardSelector field in ListOptions, where clients can specify a hash range using the shardRange() function. For instance, you can define your range with shardRange(object.metadata.uid, '0x0000000000000000', '0x8000000000000000'). The API server then computes a deterministic 64-bit FNV-1a hash of the specified field and returns only the objects whose hash falls within the defined range. This filtering applies to both list responses and watch event streams, making it a versatile tool for managing resources effectively.
As with any alpha feature, there are caveats. You must enable the ShardedListAndWatch feature gate on your API server to use this functionality. While it can significantly enhance performance, be mindful of its alpha status and the potential for changes in future releases. Always test thoroughly in your environment before rolling it out to production.
Key takeaways
- →Enable the ShardedListAndWatch feature gate on your API server to access this functionality.
- →Use the shardSelector field in ListOptions to filter events effectively.
- →Implement the shardRange() function to define your hash range for resource filtering.
- →Expect improved performance by reducing unnecessary event traffic to controller replicas.
- →Be cautious as this feature is in alpha; monitor for changes in future Kubernetes versions.
Why it matters
This feature can drastically reduce the load on your Kubernetes API server, leading to faster response times and improved scalability in large clusters. By ensuring that each controller only processes relevant events, you enhance the efficiency of your resource management.
Code examples
1{
2"kind": "PodList",
3"apiVersion": "v1",
4"metadata": {
5"resourceVersion": "10245",
6"shardInfo": {
7"selector": "shardRange(object.metadata.uid, '0x0000000000000000', '0x8000000000000000')"
8}
9},
10"items": [
11...
12]
13}When NOT to use this
The official docs don't call out specific anti-patterns here. Use your judgment based on your scale and requirements.
Want the complete reference?
Read official docsUnified observability — logs, uptime monitoring, and on-call in one place. Used by 50,000+ engineering teams to ship faster and sleep better.
Try Better Stack free →Centralized Observability for Multi-Account Amazon EKS: A Practical Guide
Centralized observability is essential for managing multiple Amazon EKS accounts effectively. By leveraging CloudWatch cross-account observability, you can replicate telemetry data seamlessly across your AWS accounts. This article dives into how to set this up for maximum visibility and control.
Why Are Cloud Native Teams Stuck with Three Observability Stacks?
Despite the availability of powerful tools, many cloud native teams still juggle multiple observability stacks. OpenTelemetry provides a consistent instrumentation layer, yet teams often rely on Prometheus, Jaeger, and Fluentd for metrics, tracing, and logs respectively. This article dives into the reasons behind this fragmentation.
Mastering Observability in Kubernetes: Monitoring, Logging, and Debugging
In a Kubernetes environment, observability is crucial for maintaining application health and performance. Understanding how to effectively monitor, log, and debug can save you hours of troubleshooting. Dive into the key concepts that every Kubernetes operator needs to master.
Get the daily digest
One email. 5 articles. Every morning.
No spam. Unsubscribe anytime.