Note
Consistent hashing evenly distributes cache keys across shards, even if some of the shards crash or become unavailable.
Basic technique
In the problem of load balancing, for example, when a BLOB has to be assigned to one of servers on a cluster, a standard hash function could be used in such a way that we calculate the hash value for that BLOB, assuming the resultant value of the hash is , we perform modular operation with the number of servers () to determine the server in which we can place the BLOB: ; hence the BLOB will be placed in the server whose server ID is successor of in this case. However, when a server is added or removed during outage or scaling (when changes), all the BLOBs in every server should be reassigned and moved due to rehashing, but this operation is expensive. Consistent hashing was designed to avoid the problem of having to reassign every BLOB when a server is added or removed throughout the cluster.