Minimized keys are redistributed when servers are added or removed.
It is easy to scale horizontally because data are more evenly distributed.
Mitigate hotspot key problem. Excessive access to a specific shard could cause server overload. Imagine data for Katy Perry, Justin Bieber, and Lady Gaga all end up on the same shard. Consistent hashing helps to mitigate the problem by distributing the data more evenly.
Consistent hashing is widely used in real-world systems, including some notable ones:
Partitioning component of Amazon’s Dynamo database [3]
Data partitioning across the cluster in Apache Cassandra [4]
Discord chat application [5]
Akamai content delivery network [6]
Maglev network load balancer [7]
Congratulations on getting this far! Now give yourself a pat on the back. Good job!