I would like to track and calculate the READ and WRITE performance in Apache Cassandra (Client - cqlsh). I know TRACING ON is available, but I didn't find that much useful.
I expect to track the following examples in Cassandra (Examples),
I have 3 node Cassandra cluster and I have a table with 1 million entry, I would like to calculate the performance of READ / WRITE in the following way,
1) WRITE - 1 INSERT with 1 million entry available in it.
2) WRITE - 1 UPSERT on one of the entry with 1 million entry available in it.
3) READ - 1 READ from 1 million entry
4) READ - ALL THE 1 million entry
which involves single partition and multiple partition too.
Any help for tracking performance is appreciable.