mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
Merge pull request #17755 from ivanvc/rw-individual-benchmark
tools/rw-heatmaps: allow overriding running parameters
This commit is contained in:
commit
d3abeeca47
6
tools/rw-heatmaps/.gitignore
vendored
Normal file
6
tools/rw-heatmaps/.gitignore
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
results-*.csv
|
||||
rw-heatmaps
|
||||
*.jpg
|
||||
*.jpeg
|
||||
*.png
|
||||
*.tiff
|
@ -2,17 +2,17 @@
|
||||
|
||||
#set -x
|
||||
|
||||
RATIO_LIST="1/128 1/8 1/4 1/2 2/1 4/1 8/1 128/1"
|
||||
VALUE_SIZE_POWER_RANGE="8 14"
|
||||
CONN_CLI_COUNT_POWER_RANGE="5 11"
|
||||
REPEAT_COUNT=5
|
||||
RUN_COUNT=200000
|
||||
RATIO_LIST="${RATIO_LIST:-1/128 1/8 1/4 1/2 2/1 4/1 8/1 128/1}"
|
||||
VALUE_SIZE_POWER_RANGE="${VALUE_SIZE_POWER_RANGE:-8 14}"
|
||||
CONN_CLI_COUNT_POWER_RANGE="${CONN_CLI_COUNT_POWER_RANGE:-5 11}"
|
||||
REPEAT_COUNT="${REPEAT_COUNT:-5}"
|
||||
RUN_COUNT="${RUN_COUNT:-200000}"
|
||||
|
||||
KEY_SIZE=256
|
||||
KEY_SPACE_SIZE=$((1024 * 64))
|
||||
BACKEND_SIZE="$((20 * 1024 * 1024 * 1024))"
|
||||
RANGE_RESULT_LIMIT=100
|
||||
CLIENT_PORT="23790"
|
||||
KEY_SIZE="${KEY_SIZE:-256}"
|
||||
KEY_SPACE_SIZE="${KEY_SPACE_SIZE:-$((1024 * 64))}"
|
||||
BACKEND_SIZE="${BACKEND_SIZE:-$((20 * 1024 * 1024 * 1024))}"
|
||||
RANGE_RESULT_LIMIT="${RANGE_RESULT_LIMIT:-100}"
|
||||
CLIENT_PORT="${CLIENT_PORT:-23790}"
|
||||
|
||||
COMMIT=
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user