Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图了解读取延迟统计数据是否通过
,将分别计算二级索引查询中的每次读取。
我想答案可能取决于二级索引查询是由节俭客户处理还是由 Cassandra 在内部处理。我也不知道。
[1] Cassandra - cfstats 和读/写延迟的含义
Cassandra 读取延迟是通过计算每个读取查询所花费的平均时间来计算的。
因为单个 get 查询或 multiget 查询被视为单个读取并计算平均值。[StorageProxy.read()是 Cassandra 收集每个查询所用时间的函数]
StorageProxy.read()