ended3월 18일· 1 sources

Design Consistent Hashing

일관된 해싱(Consistent Hashing) 설계

Why it matters

Consistent hashing is a technique for evenly distributing requests and data across server clusters in distributed systems. Unlike traditional modular hashing where adding or removing servers forces nearly all keys to be remapped, consistent hashing uses a hash ring structure so that only a small subset of keys need redistribution during topology changes. It is widely used in production systems like Amazon DynamoDB, Apache Cassandra, and Akamai CDN.

1
Sources
+0
24h
Growth
186d
Active
Consistent HashingHash RingDistributed SystemsData PartitioningDynamoDB

Sources

Related Issues