You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| Hash ring (with vnodes) | O(log N): binary search over N points; O(1): with specialized structures | O(log N) | O(N) | O(log N + R): Take next R distinct successors |
22
-
| Rendezvous | O(N): max score | O(1) | O(N) node list | O(N log R): pick top R scores |
| Hash ring (with vnodes) | O(log N): binary search over N points; O(1): with specialized structures | O(log N) | O(N) | O(log N + R): Take next R distinct successors |
21
+
| Rendezvous | O(N): max score | O(1) | O(N) node list | O(N log R): pick top R scores |
|**ConsistentChooseK**|**O(1) expected**|**0**|**O(1)**|**O(R^2)**; **O(R log(R))**: using heap |
28
27
29
28
Replication of keys
30
29
- Hash ring: replicate by walking clockwise to the next R distinct nodes. Virtual nodes help spread replicas more evenly. Replicas are not independently distributed.
0 commit comments