Windows プラットフォームで構築された Cassandra クラスターで 4 つのノードを実行しています。私が走るとき
nodetool -h localhost リング
シードノードでコマンドを実行すると、各ノードがアップステータス、通常の状態、および所有している50.00%であることがわかりますが、これは25.00%であると予想されます。各ノードが 50.00% を所有しているのは正常ですか?
各ノードの構成は次のとおりです。
1.ノード
rpc_address: 0.0.0.0
initial_token: -9223372036854775808
listen_address: [IP Addres of the machine]
seeds: "[IP Addres of the seed machine (1. Node)]"
2.ノード
rpc_address: 0.0.0.0
initial_token: -4611686018427387904
listen_address: [IP Addres of the machine]
seeds: "[IP Addres of the seed machine (1. Node)]"
3.ノード
rpc_address: 0.0.0.0
initial_token: 0
listen_address: [IP Addres of the machine]
seeds: "[IP Addres of the seed machine (1. Node)]"
4. ノード
rpc_address: 0.0.0.0
initial_token: 4611686018427387904
listen_address: [IP Addres of the machine]
seeds: "[IP Addres of the seed machine (1. Node)]"
この式を使用して計算された初期トークン。(2^64 / 4) * [ノードインデックス] - 2^63
Cassandra 1.2.1 が各ノードにインストールされています。各ノードの 50.00% の値について何か考えはありますか?