Skip to content

gsharma/consistent-hash

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status Test Coverage Quality Gate Licence

Consistent Hashing

Karger et al. introduced the concept of consistent hashing and gave an algorithm to implement it. Consistent hashing specifies a distribution of data among servers in such a way that servers can be added or removed without having to totally reorganize the data. It was originally proposed for web caching on the Internet, in order to address the problem that clients may not be aware of the entire set of cache servers.

Ring Consistent Hashing

https://www.akamai.com/es/es/multimedia/documents/technical-publication/consistent-hashing-and-random-trees-distributed-caching-protocols-for-relieving-hot-spots-on-the-world-wide-web-technical-publication.pdf

Jump Consistent Hashing

https://arxiv.org/abs/1406.2294

Rendezvous Consistent Hashing

https://www.eecs.umich.edu/techreports/cse/96/CSE-TR-316-96.pdf

Maglev Consistent Hashing

https://ai.google/research/pubs/pub44824 (section 3.4)

Rough Design Notes

  1. Start with a circle in line with Karger et al
  2. N nodes can be replicated R times to improve shard distribution. Replicated nodes to be termed Virtual nodes.
  3. Shard replicated nodes' hashes to angles on the cicle
  4. Add sharded nodes' hashes to a sorted map - key (angle) : value (node id)
  5. Circle is now primed
  6. Operations provided: a) data ops: add(), get(), remove() - key (angle) : value (kv pair) b) node ops: addNode(), removeNode()
  7. Don't deal with get() misses. get() misses should be rehydrated, responsibility of clients to rehydrate from permanent storage
  8. Don't apply algorithmic operations to storage stratum server-side, rather apply only client-side
  9. Tunables available: a) replication factor (by cluster size, by hardware homogeneity) b) choice of hashing algorithm
  10. Open questions: a) no perfect hashing algorithms - how to cheaply deal with collisions? b) how to handle hot replicas that show a major K/N skew? c) can we do better than Krager? d) what is a good value for the upper-bound of N times R?
  11. Consider improvements afforded by HRW / Rendezvous Hashing.
  12. Is support for CAS operations needed?

Consistent Hashing as a library

Add mvn dependency:

<dependency>
  <groupId>com.github.consistenthash</groupId>
  <artifactId>consistenthash</artifactId>
  <version>1.0-SNAPSHOT</version>
</dependency>

Releases

No releases published

Packages

No packages published

Languages