-
I followed the instructions on the CacheLib docs and run the Cachebench with the following command:
It seems the benchmark works all right and I get the following results.
However, I am confused with the
and |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 10 replies
-
The only thing I have changed about |
Beta Was this translation helpful? Give feedback.
-
You need to remove: opDelayNs as this statment limits overall workload performance. |
Beta Was this translation helpful? Give feedback.
-
When I look into the
However, it's wield that the hit ratio is not sensitive to the |
Beta Was this translation helpful? Give feedback.
When I look into the
sizes.json
, I found many value sizes are about 0.5 MB. Maybe it's because the value size is too large in the above cachebench.When I run another benchmark with the following command
./opt/cachelib/bin/cachebench -json_test_config ./cachelib/cachebench/test_configs/throughput/uniform_values_get_throughput_test.json
, the throughput seems relatively normal .However, it's wield that the hit ratio is not sensitive to the
cacheSizeMB
.I set
"numOps" : 4000000,
and"valSizeRange" : [1, 1000],
. When I changed from"cacheSizeMB" : 1024,
to"c…