Hi Dillon, 
CMIIW I suspect that you use vnodes and you want to "move one of the 256 tokens 
to another node". If yes, that's not possible."nodetool move" is not allowed 
with vnodes: 
https://github.com/apache/cassandra/blob/cassandra-2.1.11/src/java/org/apache/cassandra/service/StorageService.java#L3488
*But* if you try "nodetool move" with a token that is already owned by a node, 
the check is done *before* the vnodes check: 
https://github.com/apache/cassandra/blob/cassandra-2.1.11/src/java/org/apache/cassandra/service/StorageService.java#L3479
If you use single token, it seems you try to replace a node by another 
one...Maybe you could explain what is the problem that leads you to do a 
nodetool move? (along with the nodetool ring output as Alain suggested)
Best,Romain

Reply via email to