redis-benchmarks-specification 0.1.274__py3-none-any.whl → 0.1.276__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/__common__/timeseries.py +28 -6
- redis_benchmarks_specification/__runner__/args.py +43 -1
- redis_benchmarks_specification/__runner__/remote_profiling.py +329 -0
- redis_benchmarks_specification/__runner__/runner.py +603 -67
- redis_benchmarks_specification/test-suites/defaults.yml +3 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-10Mkeys-string-get-10B-pipeline-100-nokeyprefix.yml +4 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-100B-expire-use-case.yml +2 -2
- redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-10B-expire-use-case.yml +2 -2
- redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-10B-psetex-expire-use-case.yml +2 -2
- redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-10B-setex-expire-use-case.yml +2 -2
- redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-1KiB-expire-use-case.yml +2 -2
- redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-4KiB-expire-use-case.yml +2 -2
- redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-10B-pipeline-100-nokeyprefix.yml +4 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-with-expiration-240B-400_conns.yml +4 -2
- redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-set-with-ex-100B-pipeline-10.yml +1 -1
- redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-1K-elements-sscan-cursor-count-100.yml +1 -1
- redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-1K-elements-sscan.yml +1 -1
- redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-1K-elements-zscan.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 +0 -2
- {redis_benchmarks_specification-0.1.274.dist-info → redis_benchmarks_specification-0.1.276.dist-info}/METADATA +1 -1
- {redis_benchmarks_specification-0.1.274.dist-info → redis_benchmarks_specification-0.1.276.dist-info}/RECORD +24 -31
- redis_benchmarks_specification/test-suites/memtier_benchmark-10Mkeys-string-set-update-del-ex-36000-pipeline-10.yml +0 -32
- redis_benchmarks_specification/test-suites/memtier_benchmark-150Mkeys-string-set-ex-20-pipeline-10.yml +0 -30
- redis_benchmarks_specification/test-suites/memtier_benchmark-50Mkeys-string-set-ex-10-with-precondition-pipeline-10.yml +0 -34
- redis_benchmarks_specification/test-suites/memtier_benchmark-50Mkeys-string-set-ex-10years-pipeline-10.yml +0 -30
- redis_benchmarks_specification/test-suites/memtier_benchmark-50Mkeys-string-set-ex-3-pipeline-10.yml +0 -30
- redis_benchmarks_specification/test-suites/memtier_benchmark-50Mkeys-string-set-ex-random-range-pipeline-10.yml +0 -30
- redis_benchmarks_specification/test-suites/memtier_benchmark-50Mkeys-string-set-update-del-ex-120-pipeline-10.yml +0 -32
- redis_benchmarks_specification/test-suites/memtier_benchmark-80Mkeys-string-set-ex-20-precodition-multiclient-pipeline-10.yml +0 -34
- {redis_benchmarks_specification-0.1.274.dist-info → redis_benchmarks_specification-0.1.276.dist-info}/LICENSE +0 -0
- {redis_benchmarks_specification-0.1.274.dist-info → redis_benchmarks_specification-0.1.276.dist-info}/WHEEL +0 -0
- {redis_benchmarks_specification-0.1.274.dist-info → redis_benchmarks_specification-0.1.276.dist-info}/entry_points.txt +0 -0
|
@@ -6,6 +6,10 @@ dbconfig:
|
|
|
6
6
|
save: '""'
|
|
7
7
|
check:
|
|
8
8
|
keyspacelen: 10000000
|
|
9
|
+
preload_tool:
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
arguments: '"--data-size" "10" "--ratio" "1:0" "--key-pattern" "P:P" "-c" "50" "-t" "4" "--hide-histogram" "--key-minimum" "1" "--key-maximum" "10000000" "-n" "allkeys"'
|
|
9
13
|
resources:
|
|
10
14
|
requests:
|
|
11
15
|
memory: 10g
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-100B-expire-use-case.yml
CHANGED
|
@@ -9,7 +9,7 @@ dbconfig:
|
|
|
9
9
|
preload_tool:
|
|
10
10
|
run_image: redislabs/memtier_benchmark:edge
|
|
11
11
|
tool: memtier_benchmark
|
|
12
|
-
arguments: '"--data-size" "100" "--command" "SET __key__ __data__" "--command-key-pattern" "P" "-c" "50" "-t" "2" "--hide-histogram" "--key-minimum" "1"'
|
|
12
|
+
arguments: '"--data-size" "100" "--command" "SET __key__ __data__" "--command-key-pattern" "P" "-c" "50" "-t" "2" "--hide-histogram" "--key-minimum" "1" "--key-maximum" "1000000"'
|
|
13
13
|
resources:
|
|
14
14
|
requests:
|
|
15
15
|
memory: 1g
|
|
@@ -30,7 +30,7 @@ build-variants:
|
|
|
30
30
|
clientconfig:
|
|
31
31
|
run_image: redislabs/memtier_benchmark:edge
|
|
32
32
|
tool: memtier_benchmark
|
|
33
|
-
arguments: '"--data-size" "100" --command "SETEX __key__ 10 __data__" --command-key-pattern="R" --command "SET __key__ __data__" --command-key-pattern="R" --command "GET __key__" --command-key-pattern="R" --command "DEL __key__" --command-key-pattern="R" -c 50 -t 2 --hide-histogram --test-time
|
|
33
|
+
arguments: '"--data-size" "100" --command "SETEX __key__ 10 __data__" --command-key-pattern="R" --command "SET __key__ __data__" --command-key-pattern="R" --command "GET __key__" --command-key-pattern="R" --command "DEL __key__" --command-key-pattern="R" -c 50 -t 2 --hide-histogram --test-time 120 "--key-minimum" "1" "--key-maximum" "1000000"'
|
|
34
34
|
resources:
|
|
35
35
|
requests:
|
|
36
36
|
cpus: '3'
|
|
@@ -9,7 +9,7 @@ dbconfig:
|
|
|
9
9
|
preload_tool:
|
|
10
10
|
run_image: redislabs/memtier_benchmark:edge
|
|
11
11
|
tool: memtier_benchmark
|
|
12
|
-
arguments: '"--data-size" "10" "--command" "SET __key__ __data__" "--command-key-pattern" "P" "-c" "50" "-t" "2" "--hide-histogram" "--key-minimum" "1"'
|
|
12
|
+
arguments: '"--data-size" "10" "--command" "SET __key__ __data__" "--command-key-pattern" "P" "-c" "50" "-t" "2" "--hide-histogram" "--key-minimum" "1" "--key-maximum" "1000000"'
|
|
13
13
|
resources:
|
|
14
14
|
requests:
|
|
15
15
|
memory: 1g
|
|
@@ -30,7 +30,7 @@ build-variants:
|
|
|
30
30
|
clientconfig:
|
|
31
31
|
run_image: redislabs/memtier_benchmark:edge
|
|
32
32
|
tool: memtier_benchmark
|
|
33
|
-
arguments: '"--data-size" "10" --command "SETEX __key__ 10 __data__" --command-key-pattern="R" --command "SET __key__ __data__" --command-key-pattern="R" --command "GET __key__" --command-key-pattern="R" --command "DEL __key__" --command-key-pattern="R" -c 50 -t 2 --hide-histogram --test-time
|
|
33
|
+
arguments: '"--data-size" "10" --command "SETEX __key__ 10 __data__" --command-key-pattern="R" --command "SET __key__ __data__" --command-key-pattern="R" --command "GET __key__" --command-key-pattern="R" --command "DEL __key__" --command-key-pattern="R" -c 50 -t 2 --hide-histogram --test-time 120 "--key-minimum" "1" "--key-maximum" "1000000"'
|
|
34
34
|
resources:
|
|
35
35
|
requests:
|
|
36
36
|
cpus: '3'
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-10B-psetex-expire-use-case.yml
CHANGED
|
@@ -9,7 +9,7 @@ dbconfig:
|
|
|
9
9
|
preload_tool:
|
|
10
10
|
run_image: redislabs/memtier_benchmark:edge
|
|
11
11
|
tool: memtier_benchmark
|
|
12
|
-
arguments: '"--data-size" "10" "--command" "SET __key__ __data__" "--command-key-pattern" "P" "-c" "50" "-t" "2" "--hide-histogram" "--key-minimum" "1"'
|
|
12
|
+
arguments: '"--data-size" "10" "--command" "SET __key__ __data__" "--command-key-pattern" "P" "-c" "50" "-t" "2" "--hide-histogram" "--key-minimum" "1" "--key-maximum" "1000000"'
|
|
13
13
|
resources:
|
|
14
14
|
requests:
|
|
15
15
|
memory: 1g
|
|
@@ -25,7 +25,7 @@ build-variants:
|
|
|
25
25
|
clientconfig:
|
|
26
26
|
run_image: redislabs/memtier_benchmark:edge
|
|
27
27
|
tool: memtier_benchmark
|
|
28
|
-
arguments: '"--data-size" "10" --command "PSETEX __key__ 10 __data__" --command-key-pattern="R" -c 50 -t 2 --hide-histogram --test-time 120'
|
|
28
|
+
arguments: '"--data-size" "10" --command "PSETEX __key__ 10 __data__" --command-key-pattern="R" -c 50 -t 2 --hide-histogram --test-time 120 "--key-minimum" "1" "--key-maximum" "1000000"'
|
|
29
29
|
resources:
|
|
30
30
|
requests:
|
|
31
31
|
cpus: '3'
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-10B-setex-expire-use-case.yml
CHANGED
|
@@ -9,7 +9,7 @@ dbconfig:
|
|
|
9
9
|
preload_tool:
|
|
10
10
|
run_image: redislabs/memtier_benchmark:edge
|
|
11
11
|
tool: memtier_benchmark
|
|
12
|
-
arguments: '"--data-size" "10" "--command" "SET __key__ __data__" "--command-key-pattern" "P" "-c" "50" "-t" "2" "--hide-histogram" "--key-minimum" "1"'
|
|
12
|
+
arguments: '"--data-size" "10" "--command" "SET __key__ __data__" "--command-key-pattern" "P" "-c" "50" "-t" "2" "--hide-histogram" "--key-minimum" "1" "--key-maximum" "1000000"'
|
|
13
13
|
resources:
|
|
14
14
|
requests:
|
|
15
15
|
memory: 1g
|
|
@@ -25,7 +25,7 @@ build-variants:
|
|
|
25
25
|
clientconfig:
|
|
26
26
|
run_image: redislabs/memtier_benchmark:edge
|
|
27
27
|
tool: memtier_benchmark
|
|
28
|
-
arguments: '"--data-size" "10" --command "SETEX __key__ 10 __data__" --command-key-pattern="R" -c 50 -t 2 --hide-histogram --test-time 120'
|
|
28
|
+
arguments: '"--data-size" "10" --command "SETEX __key__ 10 __data__" --command-key-pattern="R" -c 50 -t 2 --hide-histogram --test-time 120 "--key-minimum" "1" "--key-maximum" "1000000"'
|
|
29
29
|
resources:
|
|
30
30
|
requests:
|
|
31
31
|
cpus: '3'
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-1KiB-expire-use-case.yml
CHANGED
|
@@ -9,7 +9,7 @@ dbconfig:
|
|
|
9
9
|
preload_tool:
|
|
10
10
|
run_image: redislabs/memtier_benchmark:edge
|
|
11
11
|
tool: memtier_benchmark
|
|
12
|
-
arguments: '"--data-size" "1000" "--command" "SET __key__ __data__" "--command-key-pattern" "P" "-c" "50" "-t" "2" "--hide-histogram" "--key-minimum" "1"'
|
|
12
|
+
arguments: '"--data-size" "1000" "--command" "SET __key__ __data__" "--command-key-pattern" "P" "-c" "50" "-t" "2" "--hide-histogram" "--key-minimum" "1" "--key-maximum" "1000000"'
|
|
13
13
|
resources:
|
|
14
14
|
requests:
|
|
15
15
|
memory: 2g
|
|
@@ -30,7 +30,7 @@ build-variants:
|
|
|
30
30
|
clientconfig:
|
|
31
31
|
run_image: redislabs/memtier_benchmark:edge
|
|
32
32
|
tool: memtier_benchmark
|
|
33
|
-
arguments: '"--data-size" "1000" --command "SETEX __key__ 10 __data__" --command-key-pattern="R" --command "SET __key__ __data__" --command-key-pattern="R" --command "GET __key__" --command-key-pattern="R" --command "DEL __key__" --command-key-pattern="R" -c 50 -t 2 --hide-histogram --test-time
|
|
33
|
+
arguments: '"--key-minimum" "1" "--key-maximum" "1000000" "--data-size" "1000" --command "SETEX __key__ 10 __data__" --command-key-pattern="R" --command "SET __key__ __data__" --command-key-pattern="R" --command "GET __key__" --command-key-pattern="R" --command "DEL __key__" --command-key-pattern="R" -c 50 -t 2 --hide-histogram --test-time 180'
|
|
34
34
|
resources:
|
|
35
35
|
requests:
|
|
36
36
|
cpus: '3'
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-4KiB-expire-use-case.yml
CHANGED
|
@@ -9,7 +9,7 @@ dbconfig:
|
|
|
9
9
|
preload_tool:
|
|
10
10
|
run_image: redislabs/memtier_benchmark:edge
|
|
11
11
|
tool: memtier_benchmark
|
|
12
|
-
arguments: '"--data-size" "1000" "--command" "SET __key__ __data__" "--command-key-pattern" "P" "-c" "50" "-t" "2" "--hide-histogram" "--key-minimum" "1"'
|
|
12
|
+
arguments: '"--data-size" "1000" "--command" "SET __key__ __data__" "--command-key-pattern" "P" "-c" "50" "-t" "2" "--hide-histogram" "--key-minimum" "1" "--key-maximum" "1000000"'
|
|
13
13
|
resources:
|
|
14
14
|
requests:
|
|
15
15
|
memory: 3g
|
|
@@ -30,7 +30,7 @@ build-variants:
|
|
|
30
30
|
clientconfig:
|
|
31
31
|
run_image: redislabs/memtier_benchmark:edge
|
|
32
32
|
tool: memtier_benchmark
|
|
33
|
-
arguments: '"--data-size" "4000" --command "SETEX __key__ 10 __data__" --command-key-pattern="R" --command "SET __key__ __data__" --command-key-pattern="R" --command "GET __key__" --command-key-pattern="R" --command "DEL __key__" --command-key-pattern="R" -c 50 -t 2 --hide-histogram --test-time
|
|
33
|
+
arguments: '"--key-minimum" "1" "--key-maximum" "1000000" "--data-size" "4000" --command "SETEX __key__ 10 __data__" --command-key-pattern="R" --command "SET __key__ __data__" --command-key-pattern="R" --command "GET __key__" --command-key-pattern="R" --command "DEL __key__" --command-key-pattern="R" -c 50 -t 2 --hide-histogram --test-time 120'
|
|
34
34
|
resources:
|
|
35
35
|
requests:
|
|
36
36
|
cpus: '3'
|
|
@@ -6,6 +6,10 @@ dbconfig:
|
|
|
6
6
|
save: '""'
|
|
7
7
|
check:
|
|
8
8
|
keyspacelen: 1000000
|
|
9
|
+
preload_tool:
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
arguments: '"--data-size" "10" "--ratio" "1:0" "--key-pattern" "P:P" "-c" "50" "-t" "2" "--hide-histogram" "--key-minimum" "1" "--key-maximum" "1000000" "-n" "allkeys"'
|
|
9
13
|
resources:
|
|
10
14
|
requests:
|
|
11
15
|
memory: 1g
|
|
@@ -4,10 +4,12 @@ description: Runs memtier_benchmark, for a keyspace of 1M keys with 400 clients
|
|
|
4
4
|
dbconfig:
|
|
5
5
|
configuration-parameters:
|
|
6
6
|
save: '""'
|
|
7
|
+
check:
|
|
8
|
+
keyspacelen: 1000000
|
|
7
9
|
preload_tool:
|
|
8
10
|
run_image: redislabs/memtier_benchmark:edge
|
|
9
11
|
tool: memtier_benchmark
|
|
10
|
-
arguments: '--pipeline 100 --data-size 240 --command "SET __key__ __data__ EX 5" --command-key-pattern P -c 50 -t 2 --hide-histogram --key-minimum 1'
|
|
12
|
+
arguments: '--pipeline 100 --data-size 240 --command "SET __key__ __data__ EX 5" --command-key-pattern P -c 50 -t 2 --hide-histogram --key-minimum 1 --key-maximum 1000000'
|
|
11
13
|
resources:
|
|
12
14
|
requests:
|
|
13
15
|
memory: 1g
|
|
@@ -27,7 +29,7 @@ build-variants:
|
|
|
27
29
|
clientconfig:
|
|
28
30
|
run_image: redislabs/memtier_benchmark:edge
|
|
29
31
|
tool: memtier_benchmark
|
|
30
|
-
arguments: --data-size 240 --command "SET __key__ __data__ EX 5" --command "GET __key__" -c 50 -t 8 --hide-histogram --test-time 120
|
|
32
|
+
arguments: --data-size 240 --command "SET __key__ __data__ EX 5" --command "GET __key__" -c 50 -t 8 --hide-histogram --test-time 120 --key-maximum 1000000 --key-minimum 1
|
|
31
33
|
resources:
|
|
32
34
|
requests:
|
|
33
35
|
cpus: '8'
|
|
@@ -9,7 +9,7 @@ dbconfig:
|
|
|
9
9
|
preload_tool:
|
|
10
10
|
run_image: redislabs/memtier_benchmark:edge
|
|
11
11
|
tool: memtier_benchmark
|
|
12
|
-
arguments: '"--data-size" "100" "--ratio" "1:0" "--key-pattern" "P:P" "-c" "50" "-t" "2" "--hide-histogram" "--key-minimum" "1"'
|
|
12
|
+
arguments: '"--data-size" "100" "--ratio" "1:0" "--key-pattern" "P:P" "-c" "50" "-t" "2" "--hide-histogram" "--key-minimum" "1" "--key-maximum" "1000000"'
|
|
13
13
|
resources:
|
|
14
14
|
requests:
|
|
15
15
|
memory: 1g
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: redis-benchmarks-specification
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.276
|
|
4
4
|
Summary: The Redis benchmarks specification describes the cross-language/tools requirements and expectations to foster performance and observability standards around redis related technologies. Members from both industry and academia, including organizations and individuals are encouraged to contribute.
|
|
5
5
|
Author: filipecosta90
|
|
6
6
|
Author-email: filipecosta.90@gmail.com
|
|
@@ -17,14 +17,15 @@ redis_benchmarks_specification/__common__/github.py,sha256=9TZtnISsSgXTSAN_VQejo
|
|
|
17
17
|
redis_benchmarks_specification/__common__/package.py,sha256=4uVt1BAZ999LV2rZkq--Tk6otAVIf9YR3g3KGeUpiW4,834
|
|
18
18
|
redis_benchmarks_specification/__common__/runner.py,sha256=2IpMl0IEHi2IZvfLc4_h0e-E3ZfnlB8EkCA_SE8VDCY,7033
|
|
19
19
|
redis_benchmarks_specification/__common__/spec.py,sha256=D_SN48wg6NMthW_-OS1H5bydSDiuZpfd4WPPj7Vfwmc,5760
|
|
20
|
-
redis_benchmarks_specification/__common__/timeseries.py,sha256=
|
|
20
|
+
redis_benchmarks_specification/__common__/timeseries.py,sha256=Jd8kGrLiuIs_1508F0MfiM4qlN_6gZWazG8arHxz9xA,52643
|
|
21
21
|
redis_benchmarks_specification/__compare__/__init__.py,sha256=DtBXRp0Q01XgCFmY-1OIePMyyYihVNAjZ1Y8zwqSDN0,101
|
|
22
22
|
redis_benchmarks_specification/__compare__/args.py,sha256=FlKD1wutBoKxeahpXw1gY2H_1FOPH5y-o5QsIPfFsT0,6802
|
|
23
23
|
redis_benchmarks_specification/__compare__/compare.py,sha256=O6ZuB6Ln5xkTX5jRaizpj1PTPhmoETcf-_PY-A_CGr8,57179
|
|
24
24
|
redis_benchmarks_specification/__init__.py,sha256=YQIEx2sLPPA0JR9OuCuMNMNtm-f_gqDKgzvNJnkGNKY,491
|
|
25
25
|
redis_benchmarks_specification/__runner__/__init__.py,sha256=l-G1z-t6twUgi8QLueqoTQLvJmv3hJoEYskGm6H7L6M,83
|
|
26
|
-
redis_benchmarks_specification/__runner__/args.py,sha256=
|
|
27
|
-
redis_benchmarks_specification/__runner__/
|
|
26
|
+
redis_benchmarks_specification/__runner__/args.py,sha256=7XNxIsVfn7woNwRkYJhrENj-n9lvks3BJ56BOj-hJeU,9255
|
|
27
|
+
redis_benchmarks_specification/__runner__/remote_profiling.py,sha256=338UHq6gDH4dy6q8nj2ewipaHVj5fPmsNiHbFfaELfk,11378
|
|
28
|
+
redis_benchmarks_specification/__runner__/runner.py,sha256=9vBMoP8eeC82Nt77xTrp0fXo_nX3RZ-3lqXq0baQNKA,98020
|
|
28
29
|
redis_benchmarks_specification/__self_contained_coordinator__/__init__.py,sha256=l-G1z-t6twUgi8QLueqoTQLvJmv3hJoEYskGm6H7L6M,83
|
|
29
30
|
redis_benchmarks_specification/__self_contained_coordinator__/args.py,sha256=uxBjdQ78klvsVi6lOfGYQVaWIxc8OI-DwYKY16SgvCY,5952
|
|
30
31
|
redis_benchmarks_specification/__self_contained_coordinator__/artifacts.py,sha256=OVHqJzDgeSSRfUSiKp1ZTAVv14PvSbk-5yJsAAoUfpw,936
|
|
@@ -50,7 +51,7 @@ redis_benchmarks_specification/setups/builders/gcc:8.5.0-amd64-debian-buster-def
|
|
|
50
51
|
redis_benchmarks_specification/setups/builders/gcc:8.5.0-arm64-debian-buster-default.yml,sha256=I6qEO7MZKduVx6xbBrRniE1i6NK9R8-uQXdQJT9o5G4,511
|
|
51
52
|
redis_benchmarks_specification/setups/platforms/aws-ec2-1node-c5.4xlarge.yml,sha256=l7HsjccpebwZXeutnt3SHSETw4iiRwQ9dCDXLOySSRQ,622
|
|
52
53
|
redis_benchmarks_specification/setups/topologies/topologies.yml,sha256=N2UOKA8tG_pLpaSFtn7WdUmDNYwxRyTv9Ln_PCOPTco,3261
|
|
53
|
-
redis_benchmarks_specification/test-suites/defaults.yml,sha256=
|
|
54
|
+
redis_benchmarks_specification/test-suites/defaults.yml,sha256=EJHv9INdjoNVMOgHY8qo4IVCHfvXVz5sv7Vxtr3DAIE,1392
|
|
54
55
|
redis_benchmarks_specification/test-suites/generate.py,sha256=1QJBuWiouJ5OLil_r4OMG_UtZkmA8TLcyPlQAUuxCUw,4175
|
|
55
56
|
redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-hash-hgetall-50-fields-100B-values.yml,sha256=BR5hCMZtC_rrbWtGuGs96yZXIxeJobB59MY1hqR0m0E,2009
|
|
56
57
|
redis_benchmarks_specification/test-suites/memtier_benchmark-100Kkeys-load-hash-20-fields-with-1B-values-pipeline-30.yml,sha256=46e6GJWv9pDzd4YZXM62HWuhAX0kWtq5WH4F7d2Iqb0,1758
|
|
@@ -63,15 +64,13 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-10Mkeys-load-hash-5
|
|
|
63
64
|
redis_benchmarks_specification/test-suites/memtier_benchmark-10Mkeys-load-hash-5-fields-with-100B-values.yml,sha256=MPo4livD4Rl9ExUzTghtSEg6pUQoL55jkAhfNF6BH7o,914
|
|
64
65
|
redis_benchmarks_specification/test-suites/memtier_benchmark-10Mkeys-load-hash-5-fields-with-10B-values-pipeline-10.yml,sha256=woHfOPYnDjh8nn5bCAALzh2-b5VpljhvioY6vE7KzD4,941
|
|
65
66
|
redis_benchmarks_specification/test-suites/memtier_benchmark-10Mkeys-load-hash-5-fields-with-10B-values.yml,sha256=qHoiZqldaLl2Es7r-1_cZFSIr9J0LpSxeqcF11iSC_Y,911
|
|
66
|
-
redis_benchmarks_specification/test-suites/memtier_benchmark-10Mkeys-string-get-10B-pipeline-100-nokeyprefix.yml,sha256=
|
|
67
|
-
redis_benchmarks_specification/test-suites/memtier_benchmark-
|
|
68
|
-
redis_benchmarks_specification/test-suites/memtier_benchmark-
|
|
69
|
-
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-
|
|
70
|
-
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-10B-expire-use-case.yml,sha256=
|
|
71
|
-
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-
|
|
72
|
-
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-
|
|
73
|
-
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-1KiB-expire-use-case.yml,sha256=y_wWm7-a-IVXOidNTb5uePNteOuesXxu8Rm6iOJQTqc,1277
|
|
74
|
-
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-4KiB-expire-use-case.yml,sha256=sQZjWlvVBxhI8I7chWaW6XdUrm7hi-1aLeVDSmngDjQ,1277
|
|
67
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-10Mkeys-string-get-10B-pipeline-100-nokeyprefix.yml,sha256=tkDcGg7x9DgQt8Ioo-8KRZapsHY4Uki3g3mtLIWVTAg,1009
|
|
68
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-100B-expire-use-case.yml,sha256=Ld2L2KiD7dftX1WqiRNYlZFGUaLbV4KdakbUxdhhSoU,1348
|
|
69
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-10B-expire-use-case.yml,sha256=VhQChium4zF37q-gxQWlw2rM2cuIHsTcCzK15Dk_wGk,1344
|
|
70
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-10B-psetex-expire-use-case.yml,sha256=19Nj36NS411vrmEeVrYWOLqJNv9FLbZ1DYX4vdY4c-M,1158
|
|
71
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-10B-setex-expire-use-case.yml,sha256=VUFBw751FKGHtZVgy-ykOPh23CS8JQLSgpvwPyKNhA0,1155
|
|
72
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-1KiB-expire-use-case.yml,sha256=DSGmwyqBmISDth6gEnXfmQIg4II77IOZ4NrwZjIReDA,1351
|
|
73
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-4KiB-expire-use-case.yml,sha256=-xLPgrxDW13s1KpyDd0J_zI2MLIKgkEgOdQO7QURFds,1351
|
|
75
74
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-bitmap-getbit-pipeline-10.yml,sha256=Atmkt00xvX5ywC6Q3WNGlhnlLRrvAlxrN4gPGYwrLKc,1117
|
|
76
75
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-exists-pipeline-10.yml,sha256=fWg_I4yP7YsETV5h6_RWX5m3wx_BOzvl0cfpv1DBXHw,1112
|
|
77
76
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-generic-expire-pipeline-10.yml,sha256=8C6TQYVudSy_ZNo8LqGlwJFQa_9cAfUCSSrPiLVgAkE,1023
|
|
@@ -131,7 +130,7 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-decr.
|
|
|
131
130
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-100B-pipeline-10.yml,sha256=gWswFs6SZOi50BsIjbXkwGmza2-iWAbaf7hW64eH8OU,970
|
|
132
131
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-100B.yml,sha256=_fRtXmRvktAiXBHiL5pp50LzN1RDN6seLKfoDXwWFBU,944
|
|
133
132
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-10B-pipeline-10.yml,sha256=l4KPinBCdBTqmI3iwiIDmDFSa-wAPu6m6LoVTSMo8sM,1041
|
|
134
|
-
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-10B-pipeline-100-nokeyprefix.yml,sha256
|
|
133
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-10B-pipeline-100-nokeyprefix.yml,sha256=AP-4DrW0CV12CSDyi2s7FWsk0OnU2c771tqhAzcy4Ss,1004
|
|
135
134
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-10B-pipeline-100.yml,sha256=tJZBF0fxhkd6hUiySqFG62dxscJqRqZo4cfhj09SRVw,1043
|
|
136
135
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-10B-pipeline-50.yml,sha256=2fVFN3RtVgsDA6vssrrdbzMCj1Pw1Sa48nz0gvvUFD0,1041
|
|
137
136
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-10B-pipeline-500.yml,sha256=_-nT2YzJSJuKkNCMsTPZp1xgqJsTAUACLnvszDarn9U,1043
|
|
@@ -157,8 +156,8 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed
|
|
|
157
156
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-32B.yml,sha256=cwc8qWJbWVqMvEbnSVUjLBLSjD_I60pt1fPqVrnfZII,1083
|
|
158
157
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-512B-pipeline-10.yml,sha256=H2AdyIOT1nQrf0hqawO8rvjc9kks1zJjeT8-rkxFs0k,1129
|
|
159
158
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-512B.yml,sha256=RWQaZ5HKFEPzX6wFkpmpwWDXlwoqkcEsx_oQH5SoiDI,1087
|
|
160
|
-
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-with-expiration-240B-400_conns.yml,sha256=
|
|
161
|
-
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-set-with-ex-100B-pipeline-10.yml,sha256=
|
|
159
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mixed-50-50-set-get-with-expiration-240B-400_conns.yml,sha256=Cx-DY0kPre6By2v_AgIUxTq_K4dETRzkul6Yz24iQv8,1301
|
|
160
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-set-with-ex-100B-pipeline-10.yml,sha256=LgpkvctvQrs7k62hO9d9-cwS4ECiGJtu9S8g_-7WYgQ,1062
|
|
162
161
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setex-100B-pipeline-10.yml,sha256=W_h2zXnSXLBfgXwyY2m0RowiWJUffHNRHMbmpnp7kAo,1030
|
|
163
162
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setrange-100B-pipeline-10.yml,sha256=cIALr7upg9-usUR1jLLYl6Ym-2LQwWWh4Ie-ilAEfxc,1059
|
|
164
163
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setrange-100B.yml,sha256=ivi_raHaME5UUVEqV8SkvwJ5SK7d-RgcfalWCnYRpV8,1033
|
|
@@ -213,8 +212,8 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-100-elemen
|
|
|
213
212
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-10M-elements-sismember-50pct-chance.yml,sha256=2dn2klO6QnFfttaZi2OXlv_lHggL7_bxYBL3PZJFQw4,1083
|
|
214
213
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-10M-elements-srem-50pct-chance.yml,sha256=zm3_P4kpdI16A_XuKVBf3ywtvG8XWy03hUILRu7sx-g,1061
|
|
215
214
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-1K-elements-smembers.yml,sha256=obobyni8avSLoTOTEEWfT_YFuVgpTma9fGszc_JX2lI,13792
|
|
216
|
-
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-1K-elements-sscan-cursor-count-100.yml,sha256=
|
|
217
|
-
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-1K-elements-sscan.yml,sha256=
|
|
215
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-1K-elements-sscan-cursor-count-100.yml,sha256=JW8brbnJDGY2zSETjmMSy79KkwPBf7YiKmTUYop6jDk,13888
|
|
216
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-1K-elements-sscan.yml,sha256=MmmcjPyp40aDKlw-5weUCeJBGkkCqKIeLbDf4dH9Ua4,13782
|
|
218
217
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-1M-elements-sismember-50pct-chance.yml,sha256=o47aHfpCJ78VX2SOg8TKYkEHTyRGmQj-MRgtkiX4I0I,1076
|
|
219
218
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-200K-elements-sadd-constant.yml,sha256=GVqjU9N9mnUxR8IdnFbh6KxtbWxlSocbFgIxQ8h8Qk0,1075
|
|
220
219
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-2M-elements-sadd-increasing.yml,sha256=cmAyCOBnDSbtoxj1AJKAfAUwGk4zmqv2whlDB7z0QJw,766
|
|
@@ -233,7 +232,7 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-100-eleme
|
|
|
233
232
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-100-elements-zrangebyscore-all-elements.yml,sha256=7DowBNg3kcSrzoaH17sZuJc6jfhyO0ZGsvVl5ZD86_w,3265
|
|
234
233
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-100-elements-zscan.yml,sha256=E5g5jQgFkQmQO0XwrGLf7pXd2DCsbtDdiIPZcJfwyg4,3217
|
|
235
234
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-1K-elements-zrange-all-elements.yml,sha256=xxCruOKlAT0EST1s5aNDpD9SiQoHbOqD96Ebi6-JB-8,24854
|
|
236
|
-
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-1K-elements-zscan.yml,sha256=
|
|
235
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-1K-elements-zscan.yml,sha256=yQinL1G9sjaLvE_sLnQ_XFNc2iUKAqh8OlSu_8xVhRk,24829
|
|
237
236
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-1M-elements-zcard-pipeline-10.yml,sha256=K4GdJcVwSRBnwLcdpp7vM-1fvmmjmyp00DEDtN-oxh4,986
|
|
238
237
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-1M-elements-zremrangebyscore-pipeline-10.yml,sha256=n2V9VwxteZzgfPTph_8f2qdg60KOU0xDOQNjyxHK5o8,1144
|
|
239
238
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-1M-elements-zrevrange-5-elements.yml,sha256=PC0XF3qArdCouNREp7gur90CMVNRbzs64r3LVDtA7OA,1097
|
|
@@ -262,13 +261,7 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-mixed
|
|
|
262
261
|
redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-mixed-20-80-with-512B-values-pipeline-10-2000_conns.yml,sha256=oMfr3s9FCFTmzmYfNhOYiOehGi8299p2M4JXlDDQmwM,1281
|
|
263
262
|
redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-mixed-20-80-with-512B-values-pipeline-10-400_conns.yml,sha256=Au5Ym-fUVy542V9Hd-IZdhdUMa7KRWEVedH4n0dKuWI,1279
|
|
264
263
|
redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-mixed-20-80-with-512B-values-pipeline-10-5200_conns.yml,sha256=j3oiHVtmdJXurGqvw-kjJbQDY-9Kc2Bg2CNu7yBnHH8,1281
|
|
265
|
-
redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-mixed-50-50-with-512B-values-with-expiration-pipeline-10-400_conns.yml,sha256=
|
|
266
|
-
redis_benchmarks_specification/test-suites/memtier_benchmark-50Mkeys-string-set-ex-10-with-precondition-pipeline-10.yml,sha256=6evJPbkjPBiV7KiDJZtU_c3XX9Hc-x6NSSfSKwsk7fo,1147
|
|
267
|
-
redis_benchmarks_specification/test-suites/memtier_benchmark-50Mkeys-string-set-ex-10years-pipeline-10.yml,sha256=WuWg8RjB5haVwPkYRTD0Vja4Pa_28hredFclNOFEnd4,826
|
|
268
|
-
redis_benchmarks_specification/test-suites/memtier_benchmark-50Mkeys-string-set-ex-3-pipeline-10.yml,sha256=r0LCXPfjwIBMyiCCaKMmIZuBzXHI2i7RhNWGJsDPyYY,815
|
|
269
|
-
redis_benchmarks_specification/test-suites/memtier_benchmark-50Mkeys-string-set-ex-random-range-pipeline-10.yml,sha256=p111a5pYbHP1bR7Z0_9sdcHDpCa-ZTp0mLcZSZbh2nI,968
|
|
270
|
-
redis_benchmarks_specification/test-suites/memtier_benchmark-50Mkeys-string-set-update-del-ex-120-pipeline-10.yml,sha256=_r-1Mg3HPb4SHe6gBMhXo-ZazdZHdtFN7jAP5ww8EWo,933
|
|
271
|
-
redis_benchmarks_specification/test-suites/memtier_benchmark-80Mkeys-string-set-ex-20-precodition-multiclient-pipeline-10.yml,sha256=7zFmWhVRaj_-xKHuZs8MZpAuUBYNVln9RHClZT8q4gk,1140
|
|
264
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-mixed-50-50-with-512B-values-with-expiration-pipeline-10-400_conns.yml,sha256=jjCnKmReC5_TF8QVEO6uJPQsHkCutSYt0yK-45mt5Kg,1294
|
|
272
265
|
redis_benchmarks_specification/test-suites/memtier_benchmark-connection-hello-pipeline-10.yml,sha256=y8c0KsJ-SYmEfvW8m5rQg0hd9boh-FWkzAZTma4OYaI,734
|
|
273
266
|
redis_benchmarks_specification/test-suites/memtier_benchmark-connection-hello.yml,sha256=VIFNaaAqRQMeDvtXmKGDpJTnu658Lv5i_oAju5uSi_c,708
|
|
274
267
|
redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-connection-ping-pipeline-10.yml,sha256=UM801JomvpZk2k6mySc_ByxMF9oAsUVJ_s_9HlL3Sn8,680
|
|
@@ -280,8 +273,8 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-pubsub-publi
|
|
|
280
273
|
redis_benchmarks_specification/test-suites/memtier_benchmark-nokeys-server-time-pipeline-10.yml,sha256=rJuWWXubUeRKQ2GSfHlbPMLeOyM9Eu_MzvN2vgKcAhA,672
|
|
281
274
|
redis_benchmarks_specification/test-suites/template.txt,sha256=d_edIE7Sxa5X7I2yG-Io0bPdbDIHR0oWFoCA3XUt_EU,435
|
|
282
275
|
redis_benchmarks_specification/vector-search-test-suites/vector_db_benchmark_test.yml,sha256=uhaSP6YUVmPvZU-qMtPPGdvNEUgUBqOfveUbeJ9WsbI,972
|
|
283
|
-
redis_benchmarks_specification-0.1.
|
|
284
|
-
redis_benchmarks_specification-0.1.
|
|
285
|
-
redis_benchmarks_specification-0.1.
|
|
286
|
-
redis_benchmarks_specification-0.1.
|
|
287
|
-
redis_benchmarks_specification-0.1.
|
|
276
|
+
redis_benchmarks_specification-0.1.276.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
277
|
+
redis_benchmarks_specification-0.1.276.dist-info/METADATA,sha256=TsbxAWvoffmwCpFBv2vgbmG8kkf4aAlsYKH9kVCOMeY,22726
|
|
278
|
+
redis_benchmarks_specification-0.1.276.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
279
|
+
redis_benchmarks_specification-0.1.276.dist-info/entry_points.txt,sha256=x5WBXCZsnDRTZxV7SBGmC65L2k-ygdDOxV8vuKN00Nk,715
|
|
280
|
+
redis_benchmarks_specification-0.1.276.dist-info/RECORD,,
|
|
@@ -1,32 +0,0 @@
|
|
|
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
|
|
@@ -1,30 +0,0 @@
|
|
|
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
|
|
@@ -1,34 +0,0 @@
|
|
|
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
|
|
@@ -1,30 +0,0 @@
|
|
|
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
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
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
|
|
@@ -1,30 +0,0 @@
|
|
|
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
|
|
@@ -1,32 +0,0 @@
|
|
|
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
|
|
@@ -1,34 +0,0 @@
|
|
|
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
|
|
File without changes
|
|
File without changes
|