【发布时间】:2018-05-27 00:55:35
【问题描述】:
我想跟踪和计算 Apache Cassandra(客户端 - cqlsh)中的 READ 和 WRITE 性能。我知道 TRACING ON 是可用的,但我发现它没有多大用处。
我希望在 Cassandra 中跟踪以下示例(示例),
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.
对跟踪性能的任何帮助都是显而易见的。
【问题讨论】:
标签: cassandra benchmarking cassandra-3.0