Home Arrow Icon Knowledge base Arrow Icon Global Arrow Icon How does data sharding work in Redis Cluster
    Redis Cluster data sharding keyspace partitioning hash slots replication high availability scalability automatic resharding


How does data sharding work in Redis Cluster


Here's how data sharding works in Redis Cluster:

Redis Cluster Sharding

Redis Cluster uses a built-in sharding mechanism to automatically partition data across multiple Redis nodes. The key aspects of how this works are:

1. Keyspace Partitioning: The entire keyspace in a Redis Cluster is divided into 16,384 hash slots. These hash slots are responsible for distributing the data across the cluster.

2. Hash Slots Assignment: Each Redis node in the cluster is assigned a subset of the 16,384 hash slots. The assignment of hash slots to nodes is done through a hash function.

3. Data Placement: When a client wants to store a key-value pair, the client calculates a hash value of the key using a predefined hash function. This hash value is then mapped to one of the 16,384 hash slots. The data is then stored on the Redis node that owns that hash slot.

4. Replication: For each hash slot, there is a primary node that is responsible for serving read/write requests. Additionally, there are one or more replica nodes that maintain a copy of the data for high availability.

5. Automatic Resharding: As nodes are added or removed from the cluster, the hash slot assignments are automatically rebalanced to ensure an even distribution of data and load across the cluster.

Benefits of Redis Cluster Sharding

1. Scalability: By distributing data across multiple nodes, Redis Cluster can scale to handle large amounts of data and high throughput.

2. High Availability: The replication of hash slots across primary and replica nodes ensures high availability, as clients can continue to access data even if some nodes fail.

3. Transparent Client Access: The hash slot mapping is handled transparently by the Redis Cluster, so clients can access the data without needing to know the details of the underlying sharding.

4. Automatic Management: Redis Cluster automates the management of sharding, including rebalancing data as the cluster grows or shrinks.

Overall, the sharding architecture of Redis Cluster allows it to provide a highly scalable, available, and easy-to-manage distributed data store, making it well-suited for applications with large data volumes or high throughput requirements.

Citations:
[1] https://scalegrid.io/blog/intro-to-redis-sharding/
[2] https://redis.io/redis-enterprise/technology/redis-enterprise-cluster-architecture/
[3] https://yandex.cloud/en/docs/managed-redis/concepts/sharding
[4] https://redisson.org/glossary/sharding.html
[5] https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/CacheNodes.NodeGroups.html