Skip to content

Instantly share code, notes, and snippets.

@danielealbano
Created August 7, 2021 16:09
Show Gist options
  • Save danielealbano/0f994405ea6ba7a271172731c6cc5554 to your computer and use it in GitHub Desktop.
Save danielealbano/0f994405ea6ba7a271172731c6cc5554 to your computer and use it in GitHub Desktop.
run-memtier-benchmark-tests
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