redis-benchmarks-specification 0.1.70__py3-none-any.whl → 0.1.73__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/__builder__/builder.py +2 -0
- redis_benchmarks_specification/__cli__/args.py +6 -0
- redis_benchmarks_specification/__cli__/cli.py +5 -1
- redis_benchmarks_specification/__compare__/__init__.py +5 -0
- redis_benchmarks_specification/__compare__/args.py +139 -0
- redis_benchmarks_specification/__compare__/compare.py +1153 -0
- redis_benchmarks_specification/__runner__/runner.py +120 -59
- redis_benchmarks_specification/__self_contained_coordinator__/args.py +3 -0
- redis_benchmarks_specification/__self_contained_coordinator__/build_info.py +7 -0
- redis_benchmarks_specification/__self_contained_coordinator__/runners.py +1 -0
- redis_benchmarks_specification/__self_contained_coordinator__/self_contained_coordinator.py +472 -418
- redis_benchmarks_specification/test-suites/create-re-string.py +286 -0
- redis_benchmarks_specification/test-suites/generate.py +108 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-hash-hexists.yml +1 -1
- redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-hash-hincrby.yml +2 -2
- redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-200KiB-values.yml +37 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-20KiB-values.yml +37 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-2MB-values.yml +37 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-decr.yml +33 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-200KiB.yml +33 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-20KiB.yml +33 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-2MB.yml +33 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zset-100-elements-zrangebyscore-all-elements-long-scores.yml +2 -2
- redis_benchmarks_specification/test-suites/my-new-test.yml +16 -0
- redis_benchmarks_specification/test-suites/string/memtier_benchmark-100Kkeys-load-string200c-with-20KiB-values-pipeline-10.yml +20 -0
- redis_benchmarks_specification/test-suites/string/memtier_benchmark-100Kkeys-load-string200c-with-20KiB-values.yml +20 -0
- redis_benchmarks_specification/test-suites/string/memtier_benchmark-100Kkeys-load-string50c-with-20KiB-values-pipeline-10.yml +20 -0
- redis_benchmarks_specification/test-suites/string/memtier_benchmark-100Kkeys-load-string50c-with-20KiB-values.yml +20 -0
- redis_benchmarks_specification/test-suites/string/memtier_benchmark-100Kkeys-string-setget200c-20KiB-pipeline-10.yml +26 -0
- redis_benchmarks_specification/test-suites/string/memtier_benchmark-100Kkeys-string-setget200c-20KiB.yml +26 -0
- redis_benchmarks_specification/test-suites/string/memtier_benchmark-100Kkeys-string-setget50c-20KiB-pipeline-10.yml +26 -0
- redis_benchmarks_specification/test-suites/string/memtier_benchmark-100Kkeys-string-setget50c-20KiB.yml +26 -0
- redis_benchmarks_specification/test-suites/string/memtier_benchmark-1Mkeys-load-string200c-with-100B-values-pipeline-10.yml +20 -0
- redis_benchmarks_specification/test-suites/string/memtier_benchmark-1Mkeys-load-string200c-with-100B-values.yml +20 -0
- redis_benchmarks_specification/test-suites/string/memtier_benchmark-1Mkeys-load-string200c-with-1KiB-values-pipeline-10.yml +20 -0
- redis_benchmarks_specification/test-suites/string/memtier_benchmark-1Mkeys-load-string200c-with-1KiB-values.yml +20 -0
- redis_benchmarks_specification/test-suites/string/memtier_benchmark-1Mkeys-load-string50c-with-100B-values-pipeline-10.yml +20 -0
- redis_benchmarks_specification/test-suites/string/memtier_benchmark-1Mkeys-load-string50c-with-100B-values.yml +20 -0
- redis_benchmarks_specification/test-suites/string/memtier_benchmark-1Mkeys-load-string50c-with-1KiB-values-pipeline-10.yml +20 -0
- redis_benchmarks_specification/test-suites/string/memtier_benchmark-1Mkeys-load-string50c-with-1KiB-values.yml +20 -0
- redis_benchmarks_specification/test-suites/string/memtier_benchmark-1Mkeys-string-mget-1KiB.yml +27 -0
- redis_benchmarks_specification/test-suites/string/memtier_benchmark-1Mkeys-string-setget200c-100B-pipeline-10.yml +26 -0
- redis_benchmarks_specification/test-suites/string/memtier_benchmark-1Mkeys-string-setget200c-100B.yml +26 -0
- redis_benchmarks_specification/test-suites/string/memtier_benchmark-1Mkeys-string-setget200c-1KiB-pipeline-10.yml +26 -0
- redis_benchmarks_specification/test-suites/string/memtier_benchmark-1Mkeys-string-setget200c-1KiB.yml +26 -0
- redis_benchmarks_specification/test-suites/string/memtier_benchmark-1Mkeys-string-setget50c-100B-pipeline-10.yml +26 -0
- redis_benchmarks_specification/test-suites/string/memtier_benchmark-1Mkeys-string-setget50c-100B.yml +26 -0
- redis_benchmarks_specification/test-suites/string/memtier_benchmark-1Mkeys-string-setget50c-1KiB-pipeline-10.yml +26 -0
- redis_benchmarks_specification/test-suites/string/memtier_benchmark-1Mkeys-string-setget50c-1KiB.yml +26 -0
- redis_benchmarks_specification/test-suites/template.txt +16 -0
- {redis_benchmarks_specification-0.1.70.dist-info → redis_benchmarks_specification-0.1.73.dist-info}/METADATA +3 -4
- {redis_benchmarks_specification-0.1.70.dist-info → redis_benchmarks_specification-0.1.73.dist-info}/RECORD +55 -16
- {redis_benchmarks_specification-0.1.70.dist-info → redis_benchmarks_specification-0.1.73.dist-info}/WHEEL +1 -1
- {redis_benchmarks_specification-0.1.70.dist-info → redis_benchmarks_specification-0.1.73.dist-info}/entry_points.txt +1 -0
- {redis_benchmarks_specification-0.1.70.dist-info → redis_benchmarks_specification-0.1.73.dist-info}/LICENSE +0 -0
|
@@ -10,7 +10,7 @@ dbconfig:
|
|
|
10
10
|
requests:
|
|
11
11
|
memory: 1g
|
|
12
12
|
init_commands:
|
|
13
|
-
- '"ZADD" "zset:
|
|
13
|
+
- '"ZADD" "zset:100:long_score" "10000000" "vyoomgwuzv" "10000001" "xamjodnbpf" "10000002" "ewomnmugfa" "10000003" "ljcgdooafo" "10000004" "pcxdhdjwnf" "10000005" "djetcyfxuc" "10000006" "licotqplim" "10000007" "alqlzsvuuz" "10000008" "ijsmoyesvd" "10000009" "whmotknaff" "10000010" "rkaznetutk" "10000011" "ksqpdywgdd" "10000012" "gorgpnnqwr" "10000013" "gekntrykfh" "10000014" "rjkknoigmu" "10000015" "luemuetmia" "10000016" "gxephxbdru" "10000017" "ncjfckgkcl" "10000018" "hhjclfbbka" "10000019" "cgoeihlnei" "10000020" "zwnitejtpg" "10000021" "upodnpqenn" "10000022" "mibvtmqxcy" "10000023" "htvbwmfyic" "10000024" "rqvryfvlie" "10000025" "nxcdcaqgit" "10000026" "gfdqdrondm" "10000027" "lysbgqqfqw" "10000028" "nxzsnkmxvi" "10000029" "nsxaigrnje" "10000030" "cwaveajmcz" "10000031" "xsepfhdizi" "10000032" "owtkxlzaci" "10000033" "agsdggdghc" "10000034" "tcjvjofxtd" "10000035" "kgqrovsxce" "10000036" "ouuybhtvyb" "10000037" "ueyrvldzwl" "10000038" "vpbkvwgxsf" "10000039" "pytrnqdhvs" "10000040" "qbiwbqiubb" "10000041" "ssjqrsluod" "10000042" "urvgxwbiiz" "10000043" "ujrxcmpvsq" "10000044" "mtccjerdon" "10000045" "xczfmrxrja" "10000046" "imyizmhzjk" "10000047" "oguwnmniig" "10000048" "mxwgdcutnb" "10000049" "pqyurbvifk" "10000050" "ccagtnjilc" "10000051" "mbxohpancs" "10000052" "lgrkndhekf" "10000053" "eqlgkwosie" "10000054" "jxoxtnzujs" "10000055" "lbtpbknelm" "10000056" "ichqzmiyot" "10000057" "mbgehjiauu" "10000058" "aovfsvbwjg" "10000059" "nmgxcctxpn" "10000060" "vyqqkuszzh" "10000061" "rojeolnopp" "10000062" "ibhohmfxzt" "10000063" "qbyhorvill" "10000064" "nhfnbxqgol" "10000065" "wkbasfyzqz" "10000066" "mjjuylgssm" "10000067" "imdqxmkzdj" "10000068" "oapbvnisyq" "10000069" "bqntlsaqjb" "10000070" "ocrcszcznp" "10000071" "hhniikmtsx" "10000072" "hlpdstpvzw" "10000073" "wqiwdbncmt" "10000074" "vymjzlzqcn" "10000075" "hhjchwjlmc" "10000076" "ypfeltycpy" "10000077" "qjyeqcfhjj" "10000078" "uapsgmizgh" "10000079" "owbbdezgxn" "10000080" "qrosceblyo" "10000081" "sahqeskveq" "10000082" "dapacykoah" "10000083" "wvcnqbvlnf" "10000084" "perfwnpvkl" "10000085" "ulbrotlhze" "10000086" "fhuvzpxjbc" "10000087" "holjcdpijr" "10000088" "onzjrteqmu" "10000089" "pquewclxuy" "10000090" "vpmpffdoqz" "10000091" "eouliovvra" "10000092" "vxcbagyymm" "10000093" "jekkafodvk" "10000094" "ypekeuutef" "10000095" "dlbqcynhrn" "10000096" "erxulvebrj" "10000097" "qwxrsgafzy" "10000098" "dlsjwmqzhx" "10000099" "exvhmqxvvp"'
|
|
14
14
|
tested-groups:
|
|
15
15
|
- sorted-set
|
|
16
16
|
tested-commands:
|
|
@@ -22,7 +22,7 @@ build-variants:
|
|
|
22
22
|
clientconfig:
|
|
23
23
|
run_image: redislabs/memtier_benchmark:edge
|
|
24
24
|
tool: memtier_benchmark
|
|
25
|
-
arguments: --command="ZRANGEBYSCORE zset:100:long_score 0
|
|
25
|
+
arguments: --command="ZRANGEBYSCORE zset:100:long_score 0 1000000000 WITHSCORES" --hide-histogram --test-time 180
|
|
26
26
|
resources:
|
|
27
27
|
requests:
|
|
28
28
|
cpus: '4'
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: change_me
|
|
3
|
+
description: describe me.
|
|
4
|
+
redis-topologies:
|
|
5
|
+
- oss-standalone
|
|
6
|
+
build-variants:
|
|
7
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
8
|
+
clientconfig:
|
|
9
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
10
|
+
tool: memtier_benchmark
|
|
11
|
+
arguments: --pipeline 10 -c 2 -t 2 --command="HSET __key__ field __data__" -R --data-size=30 --hide-histogram --test-time 180
|
|
12
|
+
resources:
|
|
13
|
+
requests:
|
|
14
|
+
cpus: '4'
|
|
15
|
+
memory: 2g
|
|
16
|
+
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
build-variants:
|
|
2
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
3
|
+
clientconfig:
|
|
4
|
+
arguments: --pipeline 10 --data-size 20000 --ratio 1:0 --key-pattern P:P --key-minimum=1
|
|
5
|
+
--key-maximum=100000 --test-time 180 -c 50 -t 4 --hide-histogram
|
|
6
|
+
resources:
|
|
7
|
+
requests:
|
|
8
|
+
cpus: '4'
|
|
9
|
+
memory: 2g
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
name: memtier_benchmark-100Kkeys-load-string200c-with-20KiB-values-pipeline-10
|
|
13
|
+
priority: 1
|
|
14
|
+
redis-topologies:
|
|
15
|
+
- oss-standalone
|
|
16
|
+
tested-commands:
|
|
17
|
+
- get
|
|
18
|
+
tested-groups:
|
|
19
|
+
- string
|
|
20
|
+
version: 0.4
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
build-variants:
|
|
2
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
3
|
+
clientconfig:
|
|
4
|
+
arguments: --data-size 20000 --ratio 1:0 --key-pattern P:P --key-minimum=1 --key-maximum=100000
|
|
5
|
+
--test-time 180 -c 50 -t 4 --hide-histogram
|
|
6
|
+
resources:
|
|
7
|
+
requests:
|
|
8
|
+
cpus: '4'
|
|
9
|
+
memory: 2g
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
name: memtier_benchmark-100Kkeys-load-string200c-with-20KiB-values
|
|
13
|
+
priority: 1
|
|
14
|
+
redis-topologies:
|
|
15
|
+
- oss-standalone
|
|
16
|
+
tested-commands:
|
|
17
|
+
- get
|
|
18
|
+
tested-groups:
|
|
19
|
+
- string
|
|
20
|
+
version: 0.4
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
build-variants:
|
|
2
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
3
|
+
clientconfig:
|
|
4
|
+
arguments: --pipeline 10 --data-size 20000 --ratio 1:0 --key-pattern P:P --key-minimum=1
|
|
5
|
+
--key-maximum=100000 --test-time 180 -c 25 -t 2 --hide-histogram
|
|
6
|
+
resources:
|
|
7
|
+
requests:
|
|
8
|
+
cpus: '4'
|
|
9
|
+
memory: 2g
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
name: memtier_benchmark-100Kkeys-load-string50c-with-20KiB-values-pipeline-10
|
|
13
|
+
priority: 1
|
|
14
|
+
redis-topologies:
|
|
15
|
+
- oss-standalone
|
|
16
|
+
tested-commands:
|
|
17
|
+
- get
|
|
18
|
+
tested-groups:
|
|
19
|
+
- string
|
|
20
|
+
version: 0.4
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
build-variants:
|
|
2
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
3
|
+
clientconfig:
|
|
4
|
+
arguments: --data-size 20000 --ratio 1:0 --key-pattern P:P --key-minimum=1 --key-maximum=100000
|
|
5
|
+
--test-time 180 -c 25 -t 2 --hide-histogram
|
|
6
|
+
resources:
|
|
7
|
+
requests:
|
|
8
|
+
cpus: '4'
|
|
9
|
+
memory: 2g
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
name: memtier_benchmark-100Kkeys-load-string50c-with-20KiB-values
|
|
13
|
+
priority: 1
|
|
14
|
+
redis-topologies:
|
|
15
|
+
- oss-standalone
|
|
16
|
+
tested-commands:
|
|
17
|
+
- get
|
|
18
|
+
tested-groups:
|
|
19
|
+
- string
|
|
20
|
+
version: 0.4
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
build-variants:
|
|
2
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
3
|
+
clientconfig:
|
|
4
|
+
arguments: --pipeline 10 --data-size 20000 --ratio 1:10 --key-pattern R:R -c 50
|
|
5
|
+
-t 4 --key-minimum=1 --key-maximum=100000 --hide-histogram --test-time 180
|
|
6
|
+
resources:
|
|
7
|
+
requests:
|
|
8
|
+
cpus: '4'
|
|
9
|
+
memory: 2g
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
dbconfig:
|
|
13
|
+
preload_tool:
|
|
14
|
+
arguments: --data-size 20000 --ratio 1:0 --key-pattern P:P -c 50 -t 4 --hide-histogram
|
|
15
|
+
--key-minimum=1 --key-maximum=100000 -n allkeys
|
|
16
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
17
|
+
tool: memtier_benchmark
|
|
18
|
+
name: memtier_benchmark-100Kkeys-string-setget200c-20KiB-pipeline-10
|
|
19
|
+
priority: 1
|
|
20
|
+
redis-topologies:
|
|
21
|
+
- oss-standalone
|
|
22
|
+
tested-commands:
|
|
23
|
+
- get
|
|
24
|
+
tested-groups:
|
|
25
|
+
- string
|
|
26
|
+
version: 0.4
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
build-variants:
|
|
2
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
3
|
+
clientconfig:
|
|
4
|
+
arguments: --data-size 20000 --ratio 1:10 --key-pattern R:R -c 50 -t 4 --hide-histogram
|
|
5
|
+
--key-minimum=1 --key-maximum=100000 --test-time 180
|
|
6
|
+
resources:
|
|
7
|
+
requests:
|
|
8
|
+
cpus: '4'
|
|
9
|
+
memory: 2g
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
dbconfig:
|
|
13
|
+
preload_tool:
|
|
14
|
+
arguments: --data-size 20000 --ratio 1:0 --key-pattern P:P -c 50 -t 4 --hide-histogram
|
|
15
|
+
--key-minimum=1 --key-maximum=100000 -n allkeys
|
|
16
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
17
|
+
tool: memtier_benchmark
|
|
18
|
+
name: memtier_benchmark-100Kkeys-string-setget200c-20KiB
|
|
19
|
+
priority: 1
|
|
20
|
+
redis-topologies:
|
|
21
|
+
- oss-standalone
|
|
22
|
+
tested-commands:
|
|
23
|
+
- get
|
|
24
|
+
tested-groups:
|
|
25
|
+
- string
|
|
26
|
+
version: 0.4
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
build-variants:
|
|
2
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
3
|
+
clientconfig:
|
|
4
|
+
arguments: --pipeline 10 --data-size 20000 --ratio 1:10 --key-pattern R:R -c 25
|
|
5
|
+
-t 2 --key-minimum=1 --key-maximum=100000 --hide-histogram --test-time 180
|
|
6
|
+
resources:
|
|
7
|
+
requests:
|
|
8
|
+
cpus: '4'
|
|
9
|
+
memory: 2g
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
dbconfig:
|
|
13
|
+
preload_tool:
|
|
14
|
+
arguments: --data-size 20000 --ratio 1:0 --key-pattern P:P -c 25 -t 2 --hide-histogram
|
|
15
|
+
--key-minimum=1 --key-maximum=100000 -n allkeys
|
|
16
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
17
|
+
tool: memtier_benchmark
|
|
18
|
+
name: memtier_benchmark-100Kkeys-string-setget50c-20KiB-pipeline-10
|
|
19
|
+
priority: 1
|
|
20
|
+
redis-topologies:
|
|
21
|
+
- oss-standalone
|
|
22
|
+
tested-commands:
|
|
23
|
+
- get
|
|
24
|
+
tested-groups:
|
|
25
|
+
- string
|
|
26
|
+
version: 0.4
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
build-variants:
|
|
2
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
3
|
+
clientconfig:
|
|
4
|
+
arguments: --data-size 20000 --ratio 1:10 --key-pattern R:R -c 25 -t 2 --hide-histogram
|
|
5
|
+
--key-minimum=1 --key-maximum=100000 --test-time 180
|
|
6
|
+
resources:
|
|
7
|
+
requests:
|
|
8
|
+
cpus: '4'
|
|
9
|
+
memory: 2g
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
dbconfig:
|
|
13
|
+
preload_tool:
|
|
14
|
+
arguments: --data-size 20000 --ratio 1:0 --key-pattern P:P -c 25 -t 2 --hide-histogram
|
|
15
|
+
--key-minimum=1 --key-maximum=100000 -n allkeys
|
|
16
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
17
|
+
tool: memtier_benchmark
|
|
18
|
+
name: memtier_benchmark-100Kkeys-string-setget50c-20KiB
|
|
19
|
+
priority: 1
|
|
20
|
+
redis-topologies:
|
|
21
|
+
- oss-standalone
|
|
22
|
+
tested-commands:
|
|
23
|
+
- get
|
|
24
|
+
tested-groups:
|
|
25
|
+
- string
|
|
26
|
+
version: 0.4
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
build-variants:
|
|
2
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
3
|
+
clientconfig:
|
|
4
|
+
arguments: --pipeline 10 --data-size 100 --ratio 1:0 --key-pattern P:P --key-minimum=1
|
|
5
|
+
--key-maximum 1000000 --test-time 180 -c 50 -t 4 --hide-histogram
|
|
6
|
+
resources:
|
|
7
|
+
requests:
|
|
8
|
+
cpus: '4'
|
|
9
|
+
memory: 2g
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
name: memtier_benchmark-1Mkeys-load-string200c-with-100B-values-pipeline-10
|
|
13
|
+
priority: 1
|
|
14
|
+
redis-topologies:
|
|
15
|
+
- oss-standalone
|
|
16
|
+
tested-commands:
|
|
17
|
+
- get
|
|
18
|
+
tested-groups:
|
|
19
|
+
- string
|
|
20
|
+
version: 0.4
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
build-variants:
|
|
2
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
3
|
+
clientconfig:
|
|
4
|
+
arguments: --data-size 100 --ratio 1:0 --key-pattern P:P --key-minimum=1 --key-maximum
|
|
5
|
+
1000000 --test-time 180 -c 50 -t 4 --hide-histogram
|
|
6
|
+
resources:
|
|
7
|
+
requests:
|
|
8
|
+
cpus: '4'
|
|
9
|
+
memory: 2g
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
name: memtier_benchmark-1Mkeys-load-string200c-with-100B-values
|
|
13
|
+
priority: 1
|
|
14
|
+
redis-topologies:
|
|
15
|
+
- oss-standalone
|
|
16
|
+
tested-commands:
|
|
17
|
+
- get
|
|
18
|
+
tested-groups:
|
|
19
|
+
- string
|
|
20
|
+
version: 0.4
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
build-variants:
|
|
2
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
3
|
+
clientconfig:
|
|
4
|
+
arguments: --pipeline 10 --data-size 1000 --ratio 1:0 --key-pattern P:P --key-minimum=1
|
|
5
|
+
--key-maximum 1000000 --test-time 180 -c 50 -t 4 --hide-histogram
|
|
6
|
+
resources:
|
|
7
|
+
requests:
|
|
8
|
+
cpus: '4'
|
|
9
|
+
memory: 2g
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
name: memtier_benchmark-1Mkeys-load-string200c-with-1KiB-values-pipeline-10
|
|
13
|
+
priority: 1
|
|
14
|
+
redis-topologies:
|
|
15
|
+
- oss-standalone
|
|
16
|
+
tested-commands:
|
|
17
|
+
- get
|
|
18
|
+
tested-groups:
|
|
19
|
+
- string
|
|
20
|
+
version: 0.4
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
build-variants:
|
|
2
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
3
|
+
clientconfig:
|
|
4
|
+
arguments: --data-size 1000 --ratio 1:0 --key-pattern P:P --key-minimum=1 --key-maximum
|
|
5
|
+
1000000 --test-time 180 -c 50 -t 4 --hide-histogram
|
|
6
|
+
resources:
|
|
7
|
+
requests:
|
|
8
|
+
cpus: '4'
|
|
9
|
+
memory: 2g
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
name: memtier_benchmark-1Mkeys-load-string200c-with-1KiB-values
|
|
13
|
+
priority: 1
|
|
14
|
+
redis-topologies:
|
|
15
|
+
- oss-standalone
|
|
16
|
+
tested-commands:
|
|
17
|
+
- get
|
|
18
|
+
tested-groups:
|
|
19
|
+
- string
|
|
20
|
+
version: 0.4
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
build-variants:
|
|
2
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
3
|
+
clientconfig:
|
|
4
|
+
arguments: --pipeline 10 --data-size 100 --ratio 1:0 --key-pattern P:P --key-minimum=1
|
|
5
|
+
--key-maximum 1000000 --test-time 180 -c 25 -t 2 --hide-histogram
|
|
6
|
+
resources:
|
|
7
|
+
requests:
|
|
8
|
+
cpus: '4'
|
|
9
|
+
memory: 2g
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
name: memtier_benchmark-1Mkeys-load-string50c-with-100B-values-pipeline-10
|
|
13
|
+
priority: 1
|
|
14
|
+
redis-topologies:
|
|
15
|
+
- oss-standalone
|
|
16
|
+
tested-commands:
|
|
17
|
+
- get
|
|
18
|
+
tested-groups:
|
|
19
|
+
- string
|
|
20
|
+
version: 0.4
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
build-variants:
|
|
2
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
3
|
+
clientconfig:
|
|
4
|
+
arguments: --data-size 100 --ratio 1:0 --key-pattern P:P --key-minimum=1 --key-maximum
|
|
5
|
+
1000000 --test-time 180 -c 25 -t 2 --hide-histogram
|
|
6
|
+
resources:
|
|
7
|
+
requests:
|
|
8
|
+
cpus: '4'
|
|
9
|
+
memory: 2g
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
name: memtier_benchmark-1Mkeys-load-string50c-with-100B-values
|
|
13
|
+
priority: 1
|
|
14
|
+
redis-topologies:
|
|
15
|
+
- oss-standalone
|
|
16
|
+
tested-commands:
|
|
17
|
+
- get
|
|
18
|
+
tested-groups:
|
|
19
|
+
- string
|
|
20
|
+
version: 0.4
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
build-variants:
|
|
2
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
3
|
+
clientconfig:
|
|
4
|
+
arguments: --pipeline 10 --data-size 1000 --ratio 1:0 --key-pattern P:P --key-minimum=1
|
|
5
|
+
--key-maximum 1000000 --test-time 180 -c 25 -t 2 --hide-histogram
|
|
6
|
+
resources:
|
|
7
|
+
requests:
|
|
8
|
+
cpus: '4'
|
|
9
|
+
memory: 2g
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
name: memtier_benchmark-1Mkeys-load-string50c-with-1KiB-values-pipeline-10
|
|
13
|
+
priority: 1
|
|
14
|
+
redis-topologies:
|
|
15
|
+
- oss-standalone
|
|
16
|
+
tested-commands:
|
|
17
|
+
- get
|
|
18
|
+
tested-groups:
|
|
19
|
+
- string
|
|
20
|
+
version: 0.4
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
build-variants:
|
|
2
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
3
|
+
clientconfig:
|
|
4
|
+
arguments: --data-size 1000 --ratio 1:0 --key-pattern P:P --key-minimum=1 --key-maximum
|
|
5
|
+
1000000 --test-time 180 -c 25 -t 2 --hide-histogram
|
|
6
|
+
resources:
|
|
7
|
+
requests:
|
|
8
|
+
cpus: '4'
|
|
9
|
+
memory: 2g
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
name: memtier_benchmark-1Mkeys-load-string50c-with-1KiB-values
|
|
13
|
+
priority: 1
|
|
14
|
+
redis-topologies:
|
|
15
|
+
- oss-standalone
|
|
16
|
+
tested-commands:
|
|
17
|
+
- get
|
|
18
|
+
tested-groups:
|
|
19
|
+
- string
|
|
20
|
+
version: 0.4
|
redis_benchmarks_specification/test-suites/string/memtier_benchmark-1Mkeys-string-mget-1KiB.yml
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
build-variants:
|
|
2
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
3
|
+
clientconfig:
|
|
4
|
+
arguments: ' --command="MGET __key__ memtier-1 memtier-2 memtier-3 memtier-4 memtier-5
|
|
5
|
+
memtier-6 memtier-7 memtier-8 memtier-9" --command-key-pattern=R -c 50 -t 2 --hide-histogram
|
|
6
|
+
--test-time 180'
|
|
7
|
+
resources:
|
|
8
|
+
requests:
|
|
9
|
+
cpus: '4'
|
|
10
|
+
memory: 2g
|
|
11
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
12
|
+
tool: memtier_benchmark
|
|
13
|
+
dbconfig:
|
|
14
|
+
preload_tool:
|
|
15
|
+
arguments: --data-size 1000 --key-minimum=1 --key-maximum 1000000 -n allkeys --ratio=1:0 --key-pattern
|
|
16
|
+
P:P --hide-histogram -t 2 -c 100
|
|
17
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
18
|
+
tool: memtier_benchmark
|
|
19
|
+
name: memtier_benchmark-1Mkeys-string-mget-1KiB
|
|
20
|
+
priority: 1
|
|
21
|
+
redis-topologies:
|
|
22
|
+
- oss-standalone
|
|
23
|
+
tested-commands:
|
|
24
|
+
- get
|
|
25
|
+
tested-groups:
|
|
26
|
+
- string
|
|
27
|
+
version: 0.4
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
build-variants:
|
|
2
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
3
|
+
clientconfig:
|
|
4
|
+
arguments: --pipeline 10 --data-size 100 --ratio 1:10 --key-pattern R:R -c 50 -t
|
|
5
|
+
4 --hide-histogram --test-time 180
|
|
6
|
+
resources:
|
|
7
|
+
requests:
|
|
8
|
+
cpus: '4'
|
|
9
|
+
memory: 2g
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
dbconfig:
|
|
13
|
+
preload_tool:
|
|
14
|
+
arguments: --data-size 100 --ratio 1:0 --key-pattern P:P -c 50 -t 4 --hide-histogram
|
|
15
|
+
--key-minimum=1 --key-maximum=1000000 -n allkeys
|
|
16
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
17
|
+
tool: memtier_benchmark
|
|
18
|
+
name: memtier_benchmark-1Mkeys-string-setget200c-100B-pipeline-10
|
|
19
|
+
priority: 1
|
|
20
|
+
redis-topologies:
|
|
21
|
+
- oss-standalone
|
|
22
|
+
tested-commands:
|
|
23
|
+
- get
|
|
24
|
+
tested-groups:
|
|
25
|
+
- string
|
|
26
|
+
version: 0.4
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
build-variants:
|
|
2
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
3
|
+
clientconfig:
|
|
4
|
+
arguments: --data-size 100 --ratio 1:10 --key-pattern R:R -c 50 -t 4 --hide-histogram
|
|
5
|
+
--test-time 180
|
|
6
|
+
resources:
|
|
7
|
+
requests:
|
|
8
|
+
cpus: '4'
|
|
9
|
+
memory: 2g
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
dbconfig:
|
|
13
|
+
preload_tool:
|
|
14
|
+
arguments: --data-size 100 --ratio 1:0 --key-pattern P:P -c 50 -t 4 --hide-histogram
|
|
15
|
+
--key-minimum=1 --key-maximum=1000000 -n allkeys
|
|
16
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
17
|
+
tool: memtier_benchmark
|
|
18
|
+
name: memtier_benchmark-1Mkeys-string-setget200c-100B
|
|
19
|
+
priority: 1
|
|
20
|
+
redis-topologies:
|
|
21
|
+
- oss-standalone
|
|
22
|
+
tested-commands:
|
|
23
|
+
- get
|
|
24
|
+
tested-groups:
|
|
25
|
+
- string
|
|
26
|
+
version: 0.4
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
build-variants:
|
|
2
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
3
|
+
clientconfig:
|
|
4
|
+
arguments: --pipeline 10 --data-size 1000 --ratio 1:10 --key-pattern R:R -c 50 -t
|
|
5
|
+
4 --hide-histogram --test-time 180
|
|
6
|
+
resources:
|
|
7
|
+
requests:
|
|
8
|
+
cpus: '4'
|
|
9
|
+
memory: 2g
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
dbconfig:
|
|
13
|
+
preload_tool:
|
|
14
|
+
arguments: --data-size 1000 --ratio 1:0 --key-pattern P:P -c 50 -t 4 --hide-histogram
|
|
15
|
+
--key-minimum=1 --key-maximum=1000000 -n allkeys
|
|
16
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
17
|
+
tool: memtier_benchmark
|
|
18
|
+
name: memtier_benchmark-1Mkeys-string-setget200c-1KiB-pipeline-10
|
|
19
|
+
priority: 1
|
|
20
|
+
redis-topologies:
|
|
21
|
+
- oss-standalone
|
|
22
|
+
tested-commands:
|
|
23
|
+
- get
|
|
24
|
+
tested-groups:
|
|
25
|
+
- string
|
|
26
|
+
version: 0.4
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
build-variants:
|
|
2
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
3
|
+
clientconfig:
|
|
4
|
+
arguments: --data-size 1000 --ratio 1:10 --key-pattern R:R -c 50 -t 4 --hide-histogram
|
|
5
|
+
--test-time 180
|
|
6
|
+
resources:
|
|
7
|
+
requests:
|
|
8
|
+
cpus: '4'
|
|
9
|
+
memory: 2g
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
dbconfig:
|
|
13
|
+
preload_tool:
|
|
14
|
+
arguments: --data-size 1000 --ratio 1:0 --key-pattern P:P -c 50 -t 4 --hide-histogram
|
|
15
|
+
--key-minimum=1 --key-maximum=1000000 -n allkeys
|
|
16
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
17
|
+
tool: memtier_benchmark
|
|
18
|
+
name: memtier_benchmark-1Mkeys-string-setget200c-1KiB
|
|
19
|
+
priority: 1
|
|
20
|
+
redis-topologies:
|
|
21
|
+
- oss-standalone
|
|
22
|
+
tested-commands:
|
|
23
|
+
- get
|
|
24
|
+
tested-groups:
|
|
25
|
+
- string
|
|
26
|
+
version: 0.4
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
build-variants:
|
|
2
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
3
|
+
clientconfig:
|
|
4
|
+
arguments: --pipeline 10 --data-size 100 --ratio 1:10 --key-pattern R:R -c 25 -t
|
|
5
|
+
2 --hide-histogram --test-time 180
|
|
6
|
+
resources:
|
|
7
|
+
requests:
|
|
8
|
+
cpus: '4'
|
|
9
|
+
memory: 2g
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
dbconfig:
|
|
13
|
+
preload_tool:
|
|
14
|
+
arguments: --data-size 100 --ratio 1:0 --key-pattern P:P -c 25 -t 2 --hide-histogram
|
|
15
|
+
--key-minimum=1 --key-maximum=1000000 -n allkeys
|
|
16
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
17
|
+
tool: memtier_benchmark
|
|
18
|
+
name: memtier_benchmark-1Mkeys-string-setget50c-100B-pipeline-10
|
|
19
|
+
priority: 1
|
|
20
|
+
redis-topologies:
|
|
21
|
+
- oss-standalone
|
|
22
|
+
tested-commands:
|
|
23
|
+
- get
|
|
24
|
+
tested-groups:
|
|
25
|
+
- string
|
|
26
|
+
version: 0.4
|
redis_benchmarks_specification/test-suites/string/memtier_benchmark-1Mkeys-string-setget50c-100B.yml
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
build-variants:
|
|
2
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
3
|
+
clientconfig:
|
|
4
|
+
arguments: --data-size 100 --ratio 1:10 --key-pattern R:R -c 25 -t 2 --hide-histogram
|
|
5
|
+
--test-time 180
|
|
6
|
+
resources:
|
|
7
|
+
requests:
|
|
8
|
+
cpus: '4'
|
|
9
|
+
memory: 2g
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
dbconfig:
|
|
13
|
+
preload_tool:
|
|
14
|
+
arguments: --data-size 100 --ratio 1:0 --key-pattern P:P -c 25 -t 2 --hide-histogram
|
|
15
|
+
--key-minimum=1 --key-maximum=1000000 -n allkeys
|
|
16
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
17
|
+
tool: memtier_benchmark
|
|
18
|
+
name: memtier_benchmark-1Mkeys-string-setget50c-100B
|
|
19
|
+
priority: 1
|
|
20
|
+
redis-topologies:
|
|
21
|
+
- oss-standalone
|
|
22
|
+
tested-commands:
|
|
23
|
+
- get
|
|
24
|
+
tested-groups:
|
|
25
|
+
- string
|
|
26
|
+
version: 0.4
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
build-variants:
|
|
2
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
3
|
+
clientconfig:
|
|
4
|
+
arguments: --pipeline 10 --data-size 1000 --ratio 1:10 --key-pattern R:R -c 25 -t
|
|
5
|
+
2 --hide-histogram --test-time 180
|
|
6
|
+
resources:
|
|
7
|
+
requests:
|
|
8
|
+
cpus: '4'
|
|
9
|
+
memory: 2g
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
dbconfig:
|
|
13
|
+
preload_tool:
|
|
14
|
+
arguments: --data-size 1000 --ratio 1:0 --key-pattern P:P -c 25 -t 2 --hide-histogram
|
|
15
|
+
--key-minimum=1 --key-maximum=1000000 -n allkeys
|
|
16
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
17
|
+
tool: memtier_benchmark
|
|
18
|
+
name: memtier_benchmark-1Mkeys-string-setget50c-1KiB-pipeline-10
|
|
19
|
+
priority: 1
|
|
20
|
+
redis-topologies:
|
|
21
|
+
- oss-standalone
|
|
22
|
+
tested-commands:
|
|
23
|
+
- get
|
|
24
|
+
tested-groups:
|
|
25
|
+
- string
|
|
26
|
+
version: 0.4
|
redis_benchmarks_specification/test-suites/string/memtier_benchmark-1Mkeys-string-setget50c-1KiB.yml
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
build-variants:
|
|
2
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
3
|
+
clientconfig:
|
|
4
|
+
arguments: --data-size 1000 --ratio 1:10 --key-pattern R:R -c 25 -t 2 --hide-histogram
|
|
5
|
+
--test-time 180
|
|
6
|
+
resources:
|
|
7
|
+
requests:
|
|
8
|
+
cpus: '4'
|
|
9
|
+
memory: 2g
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
dbconfig:
|
|
13
|
+
preload_tool:
|
|
14
|
+
arguments: --data-size 1000 --ratio 1:0 --key-pattern P:P -c 25 -t 2 --hide-histogram
|
|
15
|
+
--key-minimum=1 --key-maximum=1000000 -n allkeys
|
|
16
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
17
|
+
tool: memtier_benchmark
|
|
18
|
+
name: memtier_benchmark-1Mkeys-string-setget50c-1KiB
|
|
19
|
+
priority: 1
|
|
20
|
+
redis-topologies:
|
|
21
|
+
- oss-standalone
|
|
22
|
+
tested-commands:
|
|
23
|
+
- get
|
|
24
|
+
tested-groups:
|
|
25
|
+
- string
|
|
26
|
+
version: 0.4
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: change_me
|
|
3
|
+
description: describe me.
|
|
4
|
+
redis-topologies:
|
|
5
|
+
- oss-standalone
|
|
6
|
+
build-variants:
|
|
7
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
8
|
+
clientconfig:
|
|
9
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
10
|
+
tool: memtier_benchmark
|
|
11
|
+
arguments: --pipeline 10 -c 2 -t 2 --command="HSET __key__ field __data__" -R --data-size=30 --hide-histogram --test-time 180
|
|
12
|
+
resources:
|
|
13
|
+
requests:
|
|
14
|
+
cpus: '4'
|
|
15
|
+
memory: 2g
|
|
16
|
+
|