Skip to content

Latest commit

 

History

History
71 lines (56 loc) · 2.1 KB

step2.md

File metadata and controls

71 lines (56 loc) · 2.1 KB
VNodes ℹ️ For technical support, please contact us via email.
⬅️ Back Step 2 of 2 Next ➡️
Start the nodes in the cluster and examine the token distribution

✅ Start node1:

/workspace/ds201-lab08/node1/bin/cassandra

Wait for it to start

✅ Start node2:

/workspace/ds201-lab08/node2/bin/cassandra

Note: You may be able to catch the log message describing the generated tokens as the nodes start up:


Use nodetool to verify that both nodes are running. (You may need to run this command multiple times.)

✅ Run nodetool status:

nodetool status

You should see that the Tokens column shows 128 tokens for each node.

✅ Run nodetool ring:

nodetool ring

Notice that each node is responsible for smaller, but much more numerous sections of the token ring.

⬅️ Back Next ➡️