Created
August 7, 2021 16:09
-
-
Save danielealbano/0f994405ea6ba7a271172731c6cc5554 to your computer and use it in GitHub Desktop.
run-memtier-benchmark-tests
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
memtier_benchmark \ | |
-s cachegrand-server-01 \ | |
-p "6379" \ | |
-c "100" \ | |
-t "48" \ | |
--print-percentiles=50,90,95,99,99.5,99.9,100 \ | |
--command="PING" \ | |
-x 5 \ | |
-x 5 > output-benchmark-ping.txt | |
memtier_benchmark \ | |
-s cachegrand-server-01 \ | |
-p "6379" \ | |
-c "100" \ | |
-t "12" \ | |
--print-percentiles=50,90,95,99,99.5,99.9,100 \ | |
--random-data \ | |
--randomize \ | |
--distinct-client-seed \ | |
--data-size-range=100-500 \ | |
--data-size-pattern=S \ | |
--key-minimum=200 \ | |
--key-maximum=800 \ | |
--key-pattern=G:G \ | |
--key-stddev=20 \ | |
--key-median=400 \ | |
-x 5 > output-benchmark-get-set-small.txt | |
memtier_benchmark \ | |
-s cachegrand-server-01 \ | |
-p "6379" \ | |
-c "100" \ | |
-t "12" \ | |
--print-percentiles=50,90,95,99,99.5,99.9,100 \ | |
--random-data \ | |
--randomize \ | |
--distinct-client-seed \ | |
--data-size-range=5000-5000 \ | |
--data-size-pattern=S \ | |
--key-minimum=200 \ | |
--key-maximum=800 \ | |
--key-pattern=G:G \ | |
--key-stddev=20 \ | |
--key-median=400 \ | |
-x 5 > output-benchmark-get-set-large.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment