What is the use of JVM_OPTS = "$ JVM_OPTS -Dcassandra.consistent.rangemovement = false

Can anyone explain what is being used

-JVM_OPTS="$JVM_OPTS -Dcassandra.consistent.rangemovement=false"

What is the default setting and how does it affect the joining of several nodes into a cluster?

All I'm connected with is the Datastax doc for cassandra utility

+4
source share
1 answer

According to NEWS.txt

Bootstrapping now provides persistent movements, which means that the data for the new node is taken from a node that is no longer responsible for this key range. If you need old behavior (possibly due to a lost node), you can set the following property ( -Dcassandra.consistent.rangemovement=false).

node , . , , node .

. , , , JVM -Dcassandra.consistent.rangemovement=false.

+4

Source: https://habr.com/ru/post/1653830/


All Articles