How to move a token to another node on 1.2.x? I have tried move command, [cassy@dsat103.e1a ~]$ nodetool move 168755834953206242653616795390304335559 Exception in thread "main" java.io.IOException: target token 168755834953206242653616795390304335559 is already owned by another node. at org.apache.cassandra.service.StorageService.move(StorageService.java:2908) at org.apache.cassandra.service.StorageService.move(StorageService.java:2892) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
change the token number a bit [cassy@dsat103.e1a ~]$ nodetool -h localhost move 168755834953206242653616795390304335560 This node has more than one token and cannot be moved thusly We don't want to use cassandra-shuffle, because it put too much load on the server. we just want to move some tokens. Thanks, Daning