Hello Which strategy should i use to and new node to fully balanced cluster (nodes tokens are generated by python script:
def tokens(nodes):
for x in xrange(nodes):
print 2 ** 127 / nodes * x
tokens(3);
)
How to get balanced cluster after adding ne node without big stress for
current cluster?
