redis-benchmarks-specification 0.1.272__py3-none-any.whl → 0.1.273__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of redis-benchmarks-specification might be problematic. Click here for more details.
- redis_benchmarks_specification/__cli__/stats.py +37 -6
- redis_benchmarks_specification/__common__/spec.py +64 -3
- redis_benchmarks_specification/__runner__/args.py +6 -0
- redis_benchmarks_specification/__runner__/runner.py +700 -94
- redis_benchmarks_specification/test-suites/defaults.yml +1 -0
- redis_benchmarks_specification/test-suites/generate.py +7 -1
- redis_benchmarks_specification/test-suites/memtier_benchmark-10Mkeys-string-set-update-del-ex-36000-pipeline-10.yml +32 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-150Mkeys-string-set-ex-20-pipeline-10.yml +30 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-set-intset-with-100-elements-19-digits-pipeline-10.yml +30 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-set-intset-with-100-elements-19-digits.yml +30 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-get-with-1KiB-values-400_conns.yml +38 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-get-with-1KiB-values-40_conns.yml +38 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-get-with-1KiB-values-pipeline-10-2000_conns.yml +1 -1
- redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-get-with-1KiB-values-pipeline-10-400_conns.yml +1 -1
- redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-get-with-1KiB-values-pipeline-10-40_conns.yml +1 -1
- redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-mixed-20-80-with-512B-values-400_conns.yml +38 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-mixed-20-80-with-512B-values-pipeline-10-2000_conns.yml +1 -1
- redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-mixed-20-80-with-512B-values-pipeline-10-400_conns.yml +1 -1
- redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-mixed-20-80-with-512B-values-pipeline-10-5200_conns.yml +1 -1
- redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-mixed-50-50-with-512B-values-with-expiration-pipeline-10-400_conns.yml +1 -1
- redis_benchmarks_specification/test-suites/memtier_benchmark-50Mkeys-string-set-ex-10-with-precondition-pipeline-10.yml +34 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-50Mkeys-string-set-ex-10years-pipeline-10.yml +30 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-50Mkeys-string-set-ex-3-pipeline-10.yml +30 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-50Mkeys-string-set-ex-random-range-pipeline-10.yml +30 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-50Mkeys-string-set-update-del-ex-120-pipeline-10.yml +32 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-80Mkeys-string-set-ex-20-precodition-multiclient-pipeline-10.yml +34 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-pubsub-mixed-100-channels-128B-100-publishers-100-subscribers.yml +35 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-pubsub-mixed-100-channels-128B-100-publishers-1000-subscribers.yml +35 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-pubsub-mixed-100-channels-128B-100-publishers-5000-subscribers.yml +35 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-pubsub-mixed-100-channels-128B-100-publishers-50K-subscribers-5k-conns.yml +35 -0
- {redis_benchmarks_specification-0.1.272.dist-info → redis_benchmarks_specification-0.1.273.dist-info}/METADATA +1 -1
- {redis_benchmarks_specification-0.1.272.dist-info → redis_benchmarks_specification-0.1.273.dist-info}/RECORD +35 -19
- redis_benchmarks_specification/setups/builders/gcc:10.5.0-amd64-debian-bullseye-redisearch.yml +0 -24
- {redis_benchmarks_specification-0.1.272.dist-info → redis_benchmarks_specification-0.1.273.dist-info}/LICENSE +0 -0
- {redis_benchmarks_specification-0.1.272.dist-info → redis_benchmarks_specification-0.1.273.dist-info}/WHEEL +0 -0
- {redis_benchmarks_specification-0.1.272.dist-info → redis_benchmarks_specification-0.1.273.dist-info}/entry_points.txt +0 -0
|
@@ -75,7 +75,13 @@ for yml_filename in files:
|
|
|
75
75
|
keyspace_value = dbconfig["check"]["keyspacelen"]
|
|
76
76
|
if "preload_tool" in dbconfig:
|
|
77
77
|
precommand = dbconfig["preload_tool"]["arguments"]
|
|
78
|
-
|
|
78
|
+
# Handle both clientconfig and clientconfigs formats
|
|
79
|
+
if "clientconfigs" in benchmark_config:
|
|
80
|
+
# For multiple configs, use the first one for generation
|
|
81
|
+
command = benchmark_config["clientconfigs"][0]["arguments"]
|
|
82
|
+
else:
|
|
83
|
+
# Legacy single clientconfig format
|
|
84
|
+
command = benchmark_config["clientconfig"]["arguments"]
|
|
79
85
|
check_dict = {"keyspacelen": keyspace_value}
|
|
80
86
|
|
|
81
87
|
test_definition = {
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-10Mkeys-string-set-update-del-ex-36000-pipeline-10
|
|
3
|
+
description: Multi-step test - SET EX 36000 (10 hours), then update same keys with SET EX 36000, then DEL. Tests command throughput with long TTL without active expiration.
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
check:
|
|
8
|
+
keyspacelen: 0
|
|
9
|
+
resources:
|
|
10
|
+
requests:
|
|
11
|
+
memory: 5g
|
|
12
|
+
tested-commands:
|
|
13
|
+
- set
|
|
14
|
+
- del
|
|
15
|
+
tested-groups:
|
|
16
|
+
- string
|
|
17
|
+
- generic
|
|
18
|
+
redis-topologies:
|
|
19
|
+
- oss-standalone
|
|
20
|
+
build-variants:
|
|
21
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
22
|
+
- dockerhub
|
|
23
|
+
clientconfig:
|
|
24
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
25
|
+
tool: memtier_benchmark
|
|
26
|
+
arguments: '--command "SET __key__ BBB EX 36000" --command "SET __key__ BBB EX 36000" --command "DEL __key__" -c 50 -t 4 --command-key-pattern=P --pipeline 10 --hide-histogram --key-maximum 10000000 -n allkeys'
|
|
27
|
+
resources:
|
|
28
|
+
requests:
|
|
29
|
+
cpus: '4'
|
|
30
|
+
memory: 2g
|
|
31
|
+
|
|
32
|
+
priority: 1
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-150Mkeys-string-set-ex-20-pipeline-10
|
|
3
|
+
description: Runs memtier_benchmark, for a keyspace of 150M keys with SET EX 20 commands and pipeline 10. Tests medium TTL expiration performance.
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
check:
|
|
8
|
+
keyspacelen: 0
|
|
9
|
+
resources:
|
|
10
|
+
requests:
|
|
11
|
+
memory: 20g
|
|
12
|
+
tested-commands:
|
|
13
|
+
- set
|
|
14
|
+
tested-groups:
|
|
15
|
+
- string
|
|
16
|
+
redis-topologies:
|
|
17
|
+
- oss-standalone
|
|
18
|
+
build-variants:
|
|
19
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
20
|
+
- dockerhub
|
|
21
|
+
clientconfig:
|
|
22
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
23
|
+
tool: memtier_benchmark
|
|
24
|
+
arguments: '--command "SET __key__ BBB EX 20" -c 50 -t 4 --command-key-pattern=P --pipeline 10 --hide-histogram --key-maximum 150000000 -n allkeys'
|
|
25
|
+
resources:
|
|
26
|
+
requests:
|
|
27
|
+
cpus: '4'
|
|
28
|
+
memory: 2g
|
|
29
|
+
|
|
30
|
+
priority: 1
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-1Mkeys-load-set-intset-with-100-elements-19-digits-pipeline-10
|
|
3
|
+
description: Runs memtier_benchmark, for a keyspace length of 1M keys loading SETs with 100 integer elements with 19 digits each.
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
check:
|
|
8
|
+
keyspacelen: 0
|
|
9
|
+
resources:
|
|
10
|
+
requests:
|
|
11
|
+
memory: 1g
|
|
12
|
+
tested-commands:
|
|
13
|
+
- sadd
|
|
14
|
+
redis-topologies:
|
|
15
|
+
- oss-standalone
|
|
16
|
+
build-variants:
|
|
17
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
18
|
+
- dockerhub
|
|
19
|
+
clientconfig:
|
|
20
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
21
|
+
tool: memtier_benchmark
|
|
22
|
+
arguments: --pipeline 10 --test-time 180 -c 50 -t 4 --command "SADD __key__ 1234567890123456789 9876543210987654321 5647382910564738291 8192736450819273645 3456789012345678901 7890123456789012345 2468135792468135792 1357924680135792468 9753186420975318642 6420975318642097531 8642097531864209753 1975308642197530864 5308641975308641975 0864197530864197530 4197530864197530864 7530864197530864197 3086419753086419753 0641975308641975308 9753086419753086419 5308641975308641975 1975308641975308641 8641975308641975308 4197530864197530864 0864197530864197530 7530864197530864197 3086419753086419753 6419753086419753086 9753086419753086419 5308641975308641975 1975308641975308641 8641975308641975308 4197530864197530864 0864197530864197530 7530864197530864197 3086419753086419753 6419753086419753086 2975318642097531864 8642097531864209753 1864209753186420975 5186420975318642097 9753186420975318642 3186420975318642097 7531864209753186420 0975318642097531864 4209753186420975318 8642097531864209753 1864209753186420975 5186420975318642097 9753186420975318642 3186420975318642097 7531864209753186420 0975318642097531864 4209753186420975318 8642097531864209753 1864209753186420975 5186420975318642097 9753186420975318642 3186420975318642097 7531864209753186420 0975318642097531864 4209753186420975318 8642097531864209753 1864209753186420975 5186420975318642097 9753186420975318642 3186420975318642097 7531864209753186420 0975318642097531864 4209753186420975318 8642097531864209753 1864209753186420975 5186420975318642097 9753186420975318642 3186420975318642097 7531864209753186420 0975318642097531864 4209753186420975318 8642097531864209753 1864209753186420975 5186420975318642097 9753186420975318642 3186420975318642097 7531864209753186420 0975318642097531864 4209753186420975318 8642097531864209753 1864209753186420975 5186420975318642097 9753186420975318642 3186420975318642097 7531864209753186420 0975318642097531864 4209753186420975318 8642097531864209753 1864209753186420975 5186420975318642097 9753186420975318642 3186420975318642097 7531864209753186420 0975318642097531864 4209753186420975318 8642097531864209753 1864209753186420975" --command-key-pattern="P" --key-minimum=1 --key-maximum 1000000 --hide-histogram
|
|
23
|
+
resources:
|
|
24
|
+
requests:
|
|
25
|
+
cpus: '4'
|
|
26
|
+
memory: 4g
|
|
27
|
+
|
|
28
|
+
tested-groups:
|
|
29
|
+
- set
|
|
30
|
+
priority: 12
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-1Mkeys-load-set-intset-with-100-elements-19-digits
|
|
3
|
+
description: Runs memtier_benchmark, for a keyspace length of 1M keys loading SETs with 100 integer elements with 19 digits each.
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
check:
|
|
8
|
+
keyspacelen: 0
|
|
9
|
+
resources:
|
|
10
|
+
requests:
|
|
11
|
+
memory: 1g
|
|
12
|
+
tested-commands:
|
|
13
|
+
- sadd
|
|
14
|
+
redis-topologies:
|
|
15
|
+
- oss-standalone
|
|
16
|
+
build-variants:
|
|
17
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
18
|
+
- dockerhub
|
|
19
|
+
clientconfig:
|
|
20
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
21
|
+
tool: memtier_benchmark
|
|
22
|
+
arguments: --test-time 180 -c 50 -t 4 --command "SADD __key__ 1234567890123456789 9876543210987654321 5647382910564738291 8192736450819273645 3456789012345678901 7890123456789012345 2468135792468135792 1357924680135792468 9753186420975318642 6420975318642097531 8642097531864209753 1975308642197530864 5308641975308641975 0864197530864197530 4197530864197530864 7530864197530864197 3086419753086419753 0641975308641975308 9753086419753086419 5308641975308641975 1975308641975308641 8641975308641975308 4197530864197530864 0864197530864197530 7530864197530864197 3086419753086419753 6419753086419753086 9753086419753086419 5308641975308641975 1975308641975308641 8641975308641975308 4197530864197530864 0864197530864197530 7530864197530864197 3086419753086419753 6419753086419753086 2975318642097531864 8642097531864209753 1864209753186420975 5186420975318642097 9753186420975318642 3186420975318642097 7531864209753186420 0975318642097531864 4209753186420975318 8642097531864209753 1864209753186420975 5186420975318642097 9753186420975318642 3186420975318642097 7531864209753186420 0975318642097531864 4209753186420975318 8642097531864209753 1864209753186420975 5186420975318642097 9753186420975318642 3186420975318642097 7531864209753186420 0975318642097531864 4209753186420975318 8642097531864209753 1864209753186420975 5186420975318642097 9753186420975318642 3186420975318642097 7531864209753186420 0975318642097531864 4209753186420975318 8642097531864209753 1864209753186420975 5186420975318642097 9753186420975318642 3186420975318642097 7531864209753186420 0975318642097531864 4209753186420975318 8642097531864209753 1864209753186420975 5186420975318642097 9753186420975318642 3186420975318642097 7531864209753186420 0975318642097531864 4209753186420975318 8642097531864209753 1864209753186420975 5186420975318642097 9753186420975318642 3186420975318642097 7531864209753186420 0975318642097531864 4209753186420975318 8642097531864209753 1864209753186420975 5186420975318642097 9753186420975318642 3186420975318642097 7531864209753186420 0975318642097531864 4209753186420975318 8642097531864209753 1864209753186420975" --command-key-pattern="P" --key-minimum=1 --key-maximum 1000000 --hide-histogram
|
|
23
|
+
resources:
|
|
24
|
+
requests:
|
|
25
|
+
cpus: '4'
|
|
26
|
+
memory: 4g
|
|
27
|
+
|
|
28
|
+
tested-groups:
|
|
29
|
+
- set
|
|
30
|
+
priority: 12
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-3Mkeys-string-get-with-1KiB-values-400_conns
|
|
3
|
+
description: Runs memtier_benchmark, for a keyspace length of 3M keys loading STRINGs in which the value has a data size of 1000 Bytes, with 400 clients running random GET commands.
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
check:
|
|
8
|
+
keyspacelen: 3000000
|
|
9
|
+
preload_tool:
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
arguments: --data-size 1000 --ratio 1:0 -n allkeys --pipeline 10 --key-maximum 3000000 --key-pattern P:P --key-minimum 1 --hide-histogram -t 4 -c 10
|
|
13
|
+
resources:
|
|
14
|
+
requests:
|
|
15
|
+
memory: 3g
|
|
16
|
+
tested-commands:
|
|
17
|
+
- set
|
|
18
|
+
redis-topologies:
|
|
19
|
+
- oss-standalone
|
|
20
|
+
- oss-standalone-02-io-threads
|
|
21
|
+
- oss-standalone-04-io-threads
|
|
22
|
+
- oss-standalone-08-io-threads
|
|
23
|
+
- oss-standalone-16-io-threads
|
|
24
|
+
build-variants:
|
|
25
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
26
|
+
- dockerhub
|
|
27
|
+
clientconfig:
|
|
28
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
29
|
+
tool: memtier_benchmark
|
|
30
|
+
arguments: '"--data-size" "1000" --distinct-client-seed --ratio 0:1 --key-pattern R:R --key-minimum=1 --key-maximum 3000000 --test-time 180 -c 40 -t 10 --hide-histogram'
|
|
31
|
+
resources:
|
|
32
|
+
requests:
|
|
33
|
+
cpus: "10"
|
|
34
|
+
memory: 3g
|
|
35
|
+
|
|
36
|
+
tested-groups:
|
|
37
|
+
- string
|
|
38
|
+
priority: 17
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-3Mkeys-string-get-with-1KiB-values-40_conns
|
|
3
|
+
description: Runs memtier_benchmark, for a keyspace length of 3M keys loading STRINGs in which the value has a data size of 1000 Bytes, with 40 clients running random GET commands.
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
check:
|
|
8
|
+
keyspacelen: 3000000
|
|
9
|
+
preload_tool:
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
arguments: --data-size 1000 --ratio 1:0 -n allkeys --pipeline 10 --key-maximum 3000000 --key-pattern P:P --key-minimum 1 --hide-histogram -t 4 -c 10
|
|
13
|
+
resources:
|
|
14
|
+
requests:
|
|
15
|
+
memory: 3g
|
|
16
|
+
tested-commands:
|
|
17
|
+
- set
|
|
18
|
+
redis-topologies:
|
|
19
|
+
- oss-standalone
|
|
20
|
+
- oss-standalone-02-io-threads
|
|
21
|
+
- oss-standalone-04-io-threads
|
|
22
|
+
- oss-standalone-08-io-threads
|
|
23
|
+
- oss-standalone-16-io-threads
|
|
24
|
+
build-variants:
|
|
25
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
26
|
+
- dockerhub
|
|
27
|
+
clientconfig:
|
|
28
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
29
|
+
tool: memtier_benchmark
|
|
30
|
+
arguments: '"--data-size" "1000" --distinct-client-seed --ratio 0:1 --key-pattern R:R --key-minimum=1 --key-maximum 3000000 --test-time 180 -c 4 -t 10 --hide-histogram'
|
|
31
|
+
resources:
|
|
32
|
+
requests:
|
|
33
|
+
cpus: "10"
|
|
34
|
+
memory: 3g
|
|
35
|
+
|
|
36
|
+
tested-groups:
|
|
37
|
+
- string
|
|
38
|
+
priority: 17
|
|
@@ -27,7 +27,7 @@ build-variants:
|
|
|
27
27
|
clientconfig:
|
|
28
28
|
run_image: redislabs/memtier_benchmark:edge
|
|
29
29
|
tool: memtier_benchmark
|
|
30
|
-
arguments: '"--data-size" "1000" --distinct-client-seed --ratio 0:1 --key-pattern R:R --key-minimum=1 --key-maximum 3000000 --test-time 180 -c 200 -t 10 --hide-histogram'
|
|
30
|
+
arguments: '"--data-size" "1000" --pipeline 10 --distinct-client-seed --ratio 0:1 --key-pattern R:R --key-minimum=1 --key-maximum 3000000 --test-time 180 -c 200 -t 10 --hide-histogram'
|
|
31
31
|
resources:
|
|
32
32
|
requests:
|
|
33
33
|
cpus: '10'
|
|
@@ -27,7 +27,7 @@ build-variants:
|
|
|
27
27
|
clientconfig:
|
|
28
28
|
run_image: redislabs/memtier_benchmark:edge
|
|
29
29
|
tool: memtier_benchmark
|
|
30
|
-
arguments: '"--data-size" "1000" --distinct-client-seed --ratio 0:1 --key-pattern R:R --key-minimum=1 --key-maximum 3000000 --test-time 180 -c 40 -t 10 --hide-histogram'
|
|
30
|
+
arguments: '"--data-size" "1000" --pipeline 10 --distinct-client-seed --ratio 0:1 --key-pattern R:R --key-minimum=1 --key-maximum 3000000 --test-time 180 -c 40 -t 10 --hide-histogram'
|
|
31
31
|
resources:
|
|
32
32
|
requests:
|
|
33
33
|
cpus: '10'
|
|
@@ -27,7 +27,7 @@ build-variants:
|
|
|
27
27
|
clientconfig:
|
|
28
28
|
run_image: redislabs/memtier_benchmark:edge
|
|
29
29
|
tool: memtier_benchmark
|
|
30
|
-
arguments: '"--data-size" "1000" --distinct-client-seed --ratio 0:1 --key-pattern R:R --key-minimum=1 --key-maximum 3000000 --test-time 180 -c 4 -t 10 --hide-histogram'
|
|
30
|
+
arguments: '"--data-size" "1000" --pipeline 10 --distinct-client-seed --ratio 0:1 --key-pattern R:R --key-minimum=1 --key-maximum 3000000 --test-time 180 -c 4 -t 10 --hide-histogram'
|
|
31
31
|
resources:
|
|
32
32
|
requests:
|
|
33
33
|
cpus: '10'
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-3Mkeys-string-mixed-20-80-with-512B-values-400_conns
|
|
3
|
+
description: Runs memtier_benchmark, for a keyspace length of 3M keys loading STRINGs in which the value has a data size of 1000 Bytes, with 400 clients running random GET commands.
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
check:
|
|
8
|
+
keyspacelen: 3000000
|
|
9
|
+
preload_tool:
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
arguments: --data-size 512 --ratio 1:0 -n allkeys --pipeline 10 --key-maximum 3000000 --key-pattern P:P --key-minimum 1 --hide-histogram -t 4 -c 10
|
|
13
|
+
resources:
|
|
14
|
+
requests:
|
|
15
|
+
memory: 3g
|
|
16
|
+
tested-commands:
|
|
17
|
+
- set
|
|
18
|
+
redis-topologies:
|
|
19
|
+
- oss-standalone
|
|
20
|
+
- oss-standalone-02-io-threads
|
|
21
|
+
- oss-standalone-04-io-threads
|
|
22
|
+
- oss-standalone-08-io-threads
|
|
23
|
+
- oss-standalone-16-io-threads
|
|
24
|
+
build-variants:
|
|
25
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
26
|
+
- dockerhub
|
|
27
|
+
clientconfig:
|
|
28
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
29
|
+
tool: memtier_benchmark
|
|
30
|
+
arguments: '"--data-size" "512" --distinct-client-seed --ratio 1:4 --key-pattern R:R --key-minimum=1 --key-maximum 3000000 --test-time 180 -c 40 -t 10 --hide-histogram'
|
|
31
|
+
resources:
|
|
32
|
+
requests:
|
|
33
|
+
cpus: "10"
|
|
34
|
+
memory: 3g
|
|
35
|
+
|
|
36
|
+
tested-groups:
|
|
37
|
+
- string
|
|
38
|
+
priority: 17
|
|
@@ -27,7 +27,7 @@ build-variants:
|
|
|
27
27
|
clientconfig:
|
|
28
28
|
run_image: redislabs/memtier_benchmark:edge
|
|
29
29
|
tool: memtier_benchmark
|
|
30
|
-
arguments: '"--data-size" "512" --distinct-client-seed --ratio 1:4 --key-pattern R:R --key-minimum=1 --key-maximum 3000000 --test-time 180 -c 200 -t 10 --hide-histogram'
|
|
30
|
+
arguments: '"--data-size" "512" --pipeline 10 --distinct-client-seed --ratio 1:4 --key-pattern R:R --key-minimum=1 --key-maximum 3000000 --test-time 180 -c 200 -t 10 --hide-histogram'
|
|
31
31
|
resources:
|
|
32
32
|
requests:
|
|
33
33
|
cpus: '10'
|
|
@@ -27,7 +27,7 @@ build-variants:
|
|
|
27
27
|
clientconfig:
|
|
28
28
|
run_image: redislabs/memtier_benchmark:edge
|
|
29
29
|
tool: memtier_benchmark
|
|
30
|
-
arguments: '"--data-size" "512" --distinct-client-seed --ratio 1:4 --key-pattern R:R --key-minimum=1 --key-maximum 3000000 --test-time 180 -c 40 -t 10 --hide-histogram'
|
|
30
|
+
arguments: '"--data-size" "512" --pipeline 10 --distinct-client-seed --ratio 1:4 --key-pattern R:R --key-minimum=1 --key-maximum 3000000 --test-time 180 -c 40 -t 10 --hide-histogram'
|
|
31
31
|
resources:
|
|
32
32
|
requests:
|
|
33
33
|
cpus: '10'
|
|
@@ -27,7 +27,7 @@ build-variants:
|
|
|
27
27
|
clientconfig:
|
|
28
28
|
run_image: redislabs/memtier_benchmark:edge
|
|
29
29
|
tool: memtier_benchmark
|
|
30
|
-
arguments: '"--data-size" "512" --distinct-client-seed --ratio 1:4 --key-pattern R:R --key-minimum=1 --key-maximum 3000000 --test-time 180 -c 520 -t 10 --hide-histogram'
|
|
30
|
+
arguments: '"--data-size" "512" --pipeline 10 --distinct-client-seed --ratio 1:4 --key-pattern R:R --key-minimum=1 --key-maximum 3000000 --test-time 180 -c 520 -t 10 --hide-histogram'
|
|
31
31
|
resources:
|
|
32
32
|
requests:
|
|
33
33
|
cpus: '10'
|
|
@@ -28,7 +28,7 @@ build-variants:
|
|
|
28
28
|
clientconfig:
|
|
29
29
|
run_image: redislabs/memtier_benchmark:edge
|
|
30
30
|
tool: memtier_benchmark
|
|
31
|
-
arguments: '"--data-size" "512" --distinct-client-seed --ratio 1:1 --key-pattern R:R --key-minimum=1 --key-maximum 3000000 --test-time 180 -c 40 -t 10 --hide-histogram'
|
|
31
|
+
arguments: '"--data-size" "512" --pipeline 10 --distinct-client-seed --ratio 1:1 --key-pattern R:R --key-minimum=1 --key-maximum 3000000 --test-time 180 -c 40 -t 10 --hide-histogram'
|
|
32
32
|
resources:
|
|
33
33
|
requests:
|
|
34
34
|
cpus: '10'
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-50Mkeys-string-set-ex-10-with-precondition-pipeline-10
|
|
3
|
+
description: Multi-step test - Precondition SET EX 10000 for 50M keys, then SET EX 10 for another 50M keys with different prefix. Tests expiration performance with existing long-TTL keys.
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
check:
|
|
8
|
+
keyspacelen: 50000000
|
|
9
|
+
preload_tool:
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
arguments: '--command "SET __key__ BBB EX 10000" -c 50 -t 4 --command-key-pattern=P --pipeline 10 --hide-histogram --key-maximum 50000000 -n allkeys --key-prefix=1'
|
|
13
|
+
resources:
|
|
14
|
+
requests:
|
|
15
|
+
memory: 10g
|
|
16
|
+
tested-commands:
|
|
17
|
+
- set
|
|
18
|
+
tested-groups:
|
|
19
|
+
- string
|
|
20
|
+
redis-topologies:
|
|
21
|
+
- oss-standalone
|
|
22
|
+
build-variants:
|
|
23
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
24
|
+
- dockerhub
|
|
25
|
+
clientconfig:
|
|
26
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
27
|
+
tool: memtier_benchmark
|
|
28
|
+
arguments: '--command "SET __key__ BBB EX 10" -c 50 -t 4 --command-key-pattern=P --pipeline 10 --hide-histogram --key-maximum 50000000 -n allkeys --key-prefix=2'
|
|
29
|
+
resources:
|
|
30
|
+
requests:
|
|
31
|
+
cpus: '4'
|
|
32
|
+
memory: 2g
|
|
33
|
+
|
|
34
|
+
priority: 1
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-50Mkeys-string-set-ex-10years-pipeline-10
|
|
3
|
+
description: Runs memtier_benchmark, for a keyspace of 50M keys with SET EX 311040000 (10 years) commands and pipeline 10. Tests very long TTL performance.
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
check:
|
|
8
|
+
keyspacelen: 0
|
|
9
|
+
resources:
|
|
10
|
+
requests:
|
|
11
|
+
memory: 10g
|
|
12
|
+
tested-commands:
|
|
13
|
+
- set
|
|
14
|
+
tested-groups:
|
|
15
|
+
- string
|
|
16
|
+
redis-topologies:
|
|
17
|
+
- oss-standalone
|
|
18
|
+
build-variants:
|
|
19
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
20
|
+
- dockerhub
|
|
21
|
+
clientconfig:
|
|
22
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
23
|
+
tool: memtier_benchmark
|
|
24
|
+
arguments: '--command "SET __key__ BBB EX 311040000" -c 50 -t 4 --command-key-pattern=P --pipeline 10 --hide-histogram --key-maximum 50000000 -n allkeys'
|
|
25
|
+
resources:
|
|
26
|
+
requests:
|
|
27
|
+
cpus: '4'
|
|
28
|
+
memory: 2g
|
|
29
|
+
|
|
30
|
+
priority: 1
|
redis_benchmarks_specification/test-suites/memtier_benchmark-50Mkeys-string-set-ex-3-pipeline-10.yml
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-50Mkeys-string-set-ex-3-pipeline-10
|
|
3
|
+
description: Runs memtier_benchmark, for a keyspace of 50M keys with SET EX 3 commands and pipeline 10. Tests short TTL expiration performance.
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
check:
|
|
8
|
+
keyspacelen: 0
|
|
9
|
+
resources:
|
|
10
|
+
requests:
|
|
11
|
+
memory: 10g
|
|
12
|
+
tested-commands:
|
|
13
|
+
- set
|
|
14
|
+
tested-groups:
|
|
15
|
+
- string
|
|
16
|
+
redis-topologies:
|
|
17
|
+
- oss-standalone
|
|
18
|
+
build-variants:
|
|
19
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
20
|
+
- dockerhub
|
|
21
|
+
clientconfig:
|
|
22
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
23
|
+
tool: memtier_benchmark
|
|
24
|
+
arguments: '--command "SET __key__ BBB EX 3" -c 50 -t 4 --command-key-pattern=P --pipeline 10 --hide-histogram --key-maximum 50000000 -n allkeys --key-prefix=1'
|
|
25
|
+
resources:
|
|
26
|
+
requests:
|
|
27
|
+
cpus: '4'
|
|
28
|
+
memory: 2g
|
|
29
|
+
|
|
30
|
+
priority: 1
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-50Mkeys-string-set-ex-random-range-pipeline-10
|
|
3
|
+
description: Runs memtier_benchmark with SET EX using random TTL range from 20 seconds to 30 days. Worst-case test for ebuckets with wide TTL distribution. Note - requires memtier_benchmark modification to support __data__ placeholder for EX values.
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
check:
|
|
8
|
+
keyspacelen: 0
|
|
9
|
+
resources:
|
|
10
|
+
requests:
|
|
11
|
+
memory: 10g
|
|
12
|
+
tested-commands:
|
|
13
|
+
- set
|
|
14
|
+
tested-groups:
|
|
15
|
+
- string
|
|
16
|
+
redis-topologies:
|
|
17
|
+
- oss-standalone
|
|
18
|
+
build-variants:
|
|
19
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
20
|
+
- dockerhub
|
|
21
|
+
clientconfig:
|
|
22
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
23
|
+
tool: memtier_benchmark
|
|
24
|
+
arguments: '--command "SET __key__ BBB EX __data__" -c 50 -t 4 --data-size-range=20-2592000 --command-key-pattern=P --pipeline 10 --hide-histogram --key-maximum 50000000 -n allkeys --key-prefix=1'
|
|
25
|
+
resources:
|
|
26
|
+
requests:
|
|
27
|
+
cpus: '4'
|
|
28
|
+
memory: 2g
|
|
29
|
+
|
|
30
|
+
priority: 1
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-50Mkeys-string-set-update-del-ex-120-pipeline-10
|
|
3
|
+
description: Multi-step test - SET EX 120, then update same keys with SET EX 120, then DEL. Tests command throughput without active expiration (120s TTL prevents expiration during test).
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
check:
|
|
8
|
+
keyspacelen: 0
|
|
9
|
+
resources:
|
|
10
|
+
requests:
|
|
11
|
+
memory: 10g
|
|
12
|
+
tested-commands:
|
|
13
|
+
- set
|
|
14
|
+
- del
|
|
15
|
+
tested-groups:
|
|
16
|
+
- string
|
|
17
|
+
- generic
|
|
18
|
+
redis-topologies:
|
|
19
|
+
- oss-standalone
|
|
20
|
+
build-variants:
|
|
21
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
22
|
+
- dockerhub
|
|
23
|
+
clientconfig:
|
|
24
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
25
|
+
tool: memtier_benchmark
|
|
26
|
+
arguments: '--command "SET __key__ BBB EX 120" --command "SET __key__ BBB EX 120" --command "DEL __key__" -c 50 -t 4 --command-key-pattern=P --pipeline 10 --hide-histogram --key-maximum 50000000 -n allkeys'
|
|
27
|
+
resources:
|
|
28
|
+
requests:
|
|
29
|
+
cpus: '4'
|
|
30
|
+
memory: 2g
|
|
31
|
+
|
|
32
|
+
priority: 1
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-80Mkeys-string-set-ex-20-precodition-multiclient-pipeline-10
|
|
3
|
+
description: Multi-step AWS test - Precondition SET EX 10000 for 20M keys, then SET EX 20 for 80M keys with 4 clients and 2 threads. Tests multi-client expiration performance.
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
check:
|
|
8
|
+
keyspacelen: 20000000
|
|
9
|
+
preload_tool:
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
arguments: '--command "SET __key__ XXX EX 10000" --command-key-pattern=P -c 50 -t 4 --pipeline 10 --hide-histogram --key-maximum 20000000 -n allkeys --key-prefix=1'
|
|
13
|
+
resources:
|
|
14
|
+
requests:
|
|
15
|
+
memory: 15g
|
|
16
|
+
tested-commands:
|
|
17
|
+
- set
|
|
18
|
+
tested-groups:
|
|
19
|
+
- string
|
|
20
|
+
redis-topologies:
|
|
21
|
+
- oss-standalone
|
|
22
|
+
build-variants:
|
|
23
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
24
|
+
- dockerhub
|
|
25
|
+
clientconfig:
|
|
26
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
27
|
+
tool: memtier_benchmark
|
|
28
|
+
arguments: '--command "SET __key__ XXX EX 20" --command-key-pattern=P -c 4 -t 2 --pipeline 10 --hide-histogram --key-maximum 80000000 -n allkeys --key-prefix=2'
|
|
29
|
+
resources:
|
|
30
|
+
requests:
|
|
31
|
+
cpus: '4'
|
|
32
|
+
memory: 4g
|
|
33
|
+
|
|
34
|
+
priority: 1
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-nokeys-pubsub-mixed-100-channels-128B-100-publishers-100-subscribers
|
|
3
|
+
description: Mixed workload with memtier publishing messages and pubsub-sub-bench subscribing to channels simultaneously.
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
resources:
|
|
8
|
+
requests:
|
|
9
|
+
memory: 2g
|
|
10
|
+
tested-groups:
|
|
11
|
+
- pubsub
|
|
12
|
+
tested-commands:
|
|
13
|
+
- publish
|
|
14
|
+
- subscribe
|
|
15
|
+
redis-topologies:
|
|
16
|
+
- oss-standalone
|
|
17
|
+
build-variants:
|
|
18
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
19
|
+
- dockerhub
|
|
20
|
+
clientconfigs:
|
|
21
|
+
- run_image: redislabs/memtier_benchmark:edge
|
|
22
|
+
tool: memtier_benchmark
|
|
23
|
+
arguments: --test-time 120 --key-prefix "channel-" --pipeline 1 -d 128 --key-maximum 100 --command "PUBLISH __key__ __data__" --command-key-pattern="R" -c 50 -t 4 --hide-histogram
|
|
24
|
+
resources:
|
|
25
|
+
requests:
|
|
26
|
+
cpus: '4'
|
|
27
|
+
memory: 1g
|
|
28
|
+
- run_image: filipe958/pubsub-sub-bench:latest
|
|
29
|
+
tool: pubsub-sub-bench
|
|
30
|
+
arguments: -clients 100 -channel-minimum 1 -channel-maximum 100 -subscriber-prefix "channel-" -mode subscribe -test-time 120 -subscribers-per-channel 1
|
|
31
|
+
resources:
|
|
32
|
+
requests:
|
|
33
|
+
cpus: '4'
|
|
34
|
+
memory: 1g
|
|
35
|
+
priority: 23
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-nokeys-pubsub-mixed-100-channels-128B-100-publishers-1000-subscribers
|
|
3
|
+
description: Mixed workload with memtier publishing messages and pubsub-sub-bench subscribing to channels simultaneously.
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
resources:
|
|
8
|
+
requests:
|
|
9
|
+
memory: 2g
|
|
10
|
+
tested-groups:
|
|
11
|
+
- pubsub
|
|
12
|
+
tested-commands:
|
|
13
|
+
- publish
|
|
14
|
+
- subscribe
|
|
15
|
+
redis-topologies:
|
|
16
|
+
- oss-standalone
|
|
17
|
+
build-variants:
|
|
18
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
19
|
+
- dockerhub
|
|
20
|
+
clientconfigs:
|
|
21
|
+
- run_image: redislabs/memtier_benchmark:edge
|
|
22
|
+
tool: memtier_benchmark
|
|
23
|
+
arguments: --test-time 120 --key-prefix "channel-" --pipeline 1 -d 128 --key-maximum 100 --command "PUBLISH __key__ __data__" --command-key-pattern="R" -c 50 -t 4 --hide-histogram
|
|
24
|
+
resources:
|
|
25
|
+
requests:
|
|
26
|
+
cpus: '4'
|
|
27
|
+
memory: 1g
|
|
28
|
+
- run_image: filipe958/pubsub-sub-bench:latest
|
|
29
|
+
tool: pubsub-sub-bench
|
|
30
|
+
arguments: -clients 1000 -channel-minimum 1 -channel-maximum 100 -subscriber-prefix "channel-" -mode subscribe -test-time 120 -subscribers-per-channel 1
|
|
31
|
+
resources:
|
|
32
|
+
requests:
|
|
33
|
+
cpus: '4'
|
|
34
|
+
memory: 1g
|
|
35
|
+
priority: 23
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-nokeys-pubsub-mixed-100-channels-128B-100-publishers-5000-subscribers
|
|
3
|
+
description: Mixed workload with memtier publishing messages and pubsub-sub-bench subscribing to channels simultaneously.
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
resources:
|
|
8
|
+
requests:
|
|
9
|
+
memory: 2g
|
|
10
|
+
tested-groups:
|
|
11
|
+
- pubsub
|
|
12
|
+
tested-commands:
|
|
13
|
+
- publish
|
|
14
|
+
- subscribe
|
|
15
|
+
redis-topologies:
|
|
16
|
+
- oss-standalone
|
|
17
|
+
build-variants:
|
|
18
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
19
|
+
- dockerhub
|
|
20
|
+
clientconfigs:
|
|
21
|
+
- run_image: redislabs/memtier_benchmark:edge
|
|
22
|
+
tool: memtier_benchmark
|
|
23
|
+
arguments: --test-time 120 --key-prefix "channel-" --pipeline 1 -d 128 --key-maximum 100 --command "PUBLISH __key__ __data__" --command-key-pattern="R" -c 50 -t 4 --hide-histogram
|
|
24
|
+
resources:
|
|
25
|
+
requests:
|
|
26
|
+
cpus: '4'
|
|
27
|
+
memory: 1g
|
|
28
|
+
- run_image: filipe958/pubsub-sub-bench:latest
|
|
29
|
+
tool: pubsub-sub-bench
|
|
30
|
+
arguments: -clients 5000 -channel-minimum 1 -channel-maximum 100 -subscriber-prefix "channel-" -mode subscribe -test-time 120 -subscribers-per-channel 1
|
|
31
|
+
resources:
|
|
32
|
+
requests:
|
|
33
|
+
cpus: '4'
|
|
34
|
+
memory: 1g
|
|
35
|
+
priority: 23
|