How to read the cassandra nodetool histograms percentile and other columns?

前端 未结 1 1582
余生分开走
余生分开走 2021-01-18 23:35

How to read the cassandra nodetool histograms percentile and other coulmns?

Percentile  SSTables     Write Latency      Read Latency    Partition Size                


        
相关标签:
1条回答
  • 2021-01-19 00:03

    They show the distribution of the metrics. For example, in your data the write latency for 95% of the requests were 24.60 microseconds or less. 95% of the partitions are 642 bytes or less with 2 cells. The SStables column is how many sstables are touched on a read, so 95% or read requests are looking at 35 sstables (this is fairly high).

    0 讨论(0)
提交回复
热议问题