Skip to content

Latest commit

 

History

History
65 lines (50 loc) · 1.97 KB

step3.md

File metadata and controls

65 lines (50 loc) · 1.97 KB
Nodetool ℹ️ For technical support, please contact us via email.
⬅️ Back Step 3 of 3 Next ➡️
Explore the table using *nodetool*

In this step you will explore the killrvideo keyspace

✅ Run nodetool to get information on the keyspace:

./nodetool tablestats killrvideo

Take your time to read through all the information pieces. Note that the value for the SSTable count metric is 0 for each table since our data currently only resides in the Commitlog and Memtables.

✅ Run nodetool with the flush command to flush in-memory Memtables to on-disk SSTables:

./nodetool flush

✅ Run nodetool with tablestats again to get information on the keyspace:

./nodetool tablestats killrvideo

The SSTable count should now be 1.

✅ You may wish to explore some other nodetool commands on your own like:

./nodetool help tpstats

./nodetool help netstats

./nodetool help repair

./nodetool tpstats

./nodetool netstats

⬅️ Back Next ➡️