Jump to content

asinameli

Members
  • Posts

    1
  • Joined

  • Last visited

asinameli's Achievements

Decaf

Decaf (2/10)

0

Reputation

  1. Hi, I need some help finding or creating a consistent hashing algorithm with the following properties: Given N buckets, only distributes new keys to bucket N. Keys in 0...N-1 never change their bucket location and can be accessed at anytime. When number of buckets are increased from N to N+1, only keys in bucket N have to be migrated to bucket N+1. When number of buckets are reduced from N to N-1, only keys in bucket N are migrated to bucket N-1 More context, I'm building a distributed hash table on an environment, where reliability is not an issue, it's guaranteed that each node would be up, and not added or removed unpredictably (I control the nodes being added or removed) I also don't need replication (replication of data is handled at a lower level) Also when nodes are removed, they can only be removed in a LIFO manner (node 2, cannot be removed before node 3) I would appreciate any insight into this, and literature suggestions.
×
×
  • Create New...

Important Information

This website uses cookies to ensure you get the best experience on our website. See our Privacy Policy and Terms of Use