Skip to content

Instantly share code, notes, and snippets.

@mdcallag
Created December 17, 2021 20:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mdcallag/17d5eb8b12753e08997e26a24c93b0cd to your computer and use it in GitHub Desktop.
Save mdcallag/17d5eb8b12753e08997e26a24c93b0cd to your computer and use it in GitHub Desktop.
# ops_sec - operations per second
# mb_sec - ops_sec * size-of-operation-in-MB
# db_size - database size
# c_wgb - GB written by compaction
# w_amp - Write-amplification as (bytes written by compaction / bytes written by memtable flush)
# c_mbps - Average write rate for compaction
# c_secs - Wall clock seconds doing compaction
# usec_op - Microseconds per operation
# p50, p99, p99.9, p99.99 - 50th, 99th, 99.9th, 99.99th percentile response time in usecs
# pmax - max response time in usecs
# uptime - RocksDB uptime in seconds
# stall% - Percentage of time writes are stalled
# Nstall - Number of stalls
# u_cpu - #seconds/1000 of user CPU
# s_cpu - #seconds/1000 of system CPU
# test - Name of test
# date - Date/time of test
# version - RocksDB version
# job_id - User-provided job ID
ops_sec mb_sec db_size c_wgb w_amp c_mbps c_secs usec_op p50 p99 p99.9 p99.99 pmax uptime stall% Nstall u_cpu s_cpu test date version job_id
255959 102.5 8GB 0.0 0.00 0.0 3.9 3.4 6 10 21 14341 1780 0.0 0 1.8 0.0 readrandom.t1 2021-12-14T15:32:18 6.0
227632 91.2 8GB 0.0 0.00 0.0 4.4 3.8 6 11 22 14397 1780 0.0 0 1.8 0.0 readrandom.t1 2021-12-14T19:03:02 6.7
219454 87.9 4.6 4.0 6 12 22 14451 1780 0.0 1.8 0.0 readrandom.t1 2021-12-14T22:33:50 6.14
216524 86.7 8GB 0.0 0.00 0.0 4.6 4.2 6 12 22 220814 1780 0.0 0 1.8 0.0 readrandom.t1 2021-12-15T02:04:36 6.22
215501 86.3 8GB 0.0 0.00 0.0 4.6 4.2 6 12 22 14462 1780 0.0 0 1.8 0.0 readrandom.t1 2021-12-15T05:35:32 6.23
214259 85.8 8GB 0.0 0.00 0.0 4.7 4.3 6 13 25 14411 1780 0.0 0 1.8 0.0 readrandom.t1 2021-12-15T09:06:43 6.24
215761 86.4 8GB 0.0 0.00 0.0 4.6 4.2 6 12 25 14375 1780 0.0 0 1.8 0.0 readrandom.t1 2021-12-15T12:37:44 6.25
212414 85.1 8GB 0.0 0.00 0.0 4.7 4.4 6 13 24 14385 1780 0.0 0 1.8 0.0 readrandom.t1 2021-12-15T16:08:40 6.26
211548 84.7 8GB 0.0 0.00 0.0 4.7 4.4 6 14 88 14475 1780 0.0 0 1.8 0.0 readrandom.t1 2021-12-17T11:04:54 6.27
ops_sec mb_sec db_size c_wgb w_amp c_mbps c_secs usec_op p50 p99 p99.9 p99.99 pmax uptime stall% Nstall u_cpu s_cpu test date version job_id
76240 305.4 8GB 0.0 0.00 0.0 13.1 12.5 17 150 241 14430 1781 0.0 0 1.8 0.0 fwdrange.t1 2021-12-14T16:02:20 6.0
81464 326.3 8GB 0.0 0.00 0.0 12.3 12.4 15 142 238 14432 1781 0.0 0 1.8 0.0 fwdrange.t1 2021-12-14T19:33:04 6.7
71209 285.2 14.0 12.6 21 150 240 14451 1781 0.0 1.8 0.0 fwdrange.t1 2021-12-14T23:03:51 6.14
63218 253.2 8GB 0.0 0.00 0.0 15.8 14.4 22 158 242 224006 1781 0.0 0 1.8 0.0 fwdrange.t1 2021-12-15T02:34:37 6.22
67199 269.2 8GB 0.0 0.00 0.0 14.9 13.1 22 154 241 14442 1781 0.0 0 1.8 0.0 fwdrange.t1 2021-12-15T06:05:33 6.23
63245 253.3 8GB 0.0 0.00 0.0 15.8 14.5 22 157 242 14457 1781 0.0 0 1.8 0.0 fwdrange.t1 2021-12-15T09:36:44 6.24
69020 276.5 8GB 0.0 0.00 0.0 14.5 12.8 22 154 241 14490 1781 0.0 0 1.8 0.0 fwdrange.t1 2021-12-15T13:07:45 6.25
62524 250.4 8GB 0.0 0.00 0.0 16.0 15.0 22 160 243 14483 1781 0.0 0 1.8 0.0 fwdrange.t1 2021-12-15T16:38:42 6.26
62641 250.9 8GB 0.0 0.00 0.0 16.0 14.7 22 167 246 14503 1781 0.0 0 1.7 0.0 fwdrange.t1 2021-12-17T11:34:56 6.27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment