You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the following output, reported rate is close to 4k rows/s but the actual rate is half that.
scylla-bench executes requests concurrently according to the configured concurrency and emits a partial result from each concurrent fiber if more than a second has elapsed. Those partial results are then summed up together and assumed to have been produced over a period of a second. When latency is high, the period is actually larger than a second, and actual rate lower.
Fix following things:
1. Get rid of 2 histograms per thread to reduce memory usage
2. Make latency printing non-blocking
3. Reorganize code
4. Get rid of histogram merging
fixesscylladb#80, scylladb#49, scylladb#73, scylladb#69
In the following output, reported rate is close to 4k rows/s but the actual rate is half that.
scylla-bench executes requests concurrently according to the configured concurrency and emits a partial result from each concurrent fiber if more than a second has elapsed. Those partial results are then summed up together and assumed to have been produced over a period of a second. When latency is high, the period is actually larger than a second, and actual rate lower.
The text was updated successfully, but these errors were encountered: