redis-benchmarks-specification 0.1.72__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__/self_contained_coordinator.py +21 -10
- 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-hincrby.yml +1 -1
- 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-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.72.dist-info → redis_benchmarks_specification-0.1.73.dist-info}/METADATA +2 -1
- {redis_benchmarks_specification-0.1.72.dist-info → redis_benchmarks_specification-0.1.73.dist-info}/RECORD +50 -12
- {redis_benchmarks_specification-0.1.72.dist-info → redis_benchmarks_specification-0.1.73.dist-info}/WHEEL +1 -1
- {redis_benchmarks_specification-0.1.72.dist-info → redis_benchmarks_specification-0.1.73.dist-info}/entry_points.txt +1 -0
- {redis_benchmarks_specification-0.1.72.dist-info → redis_benchmarks_specification-0.1.73.dist-info}/LICENSE +0 -0
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
import yaml
|
|
2
|
+
import json
|
|
3
|
+
import pathlib
|
|
4
|
+
|
|
5
|
+
expected_format = {
|
|
6
|
+
"name": "HSet_d_400_c_10_t_10_pipeline_10_key-max=1000000",
|
|
7
|
+
"precommand": "",
|
|
8
|
+
"check": {"keyspacelen": 0},
|
|
9
|
+
"command": '--command="HSET myhash2 __key__ __data__" --command-key-pattern=G --key-minimum=1 --key-maximum 1000000 d 400 -c 10 -t 10 --hide-histogram --pipeline=10 --test-time=100',
|
|
10
|
+
"kpis": {
|
|
11
|
+
"tls": {"ops": 1003694, "latency": 1, "kbs": 89188},
|
|
12
|
+
"default": {"ops": 932625, "latency": 1.1, "kbs": 82873},
|
|
13
|
+
},
|
|
14
|
+
"tested-commands": ["hset"],
|
|
15
|
+
"tested-groups": ["hash"],
|
|
16
|
+
"comparison": {"max_variance_percent": 2.0},
|
|
17
|
+
}
|
|
18
|
+
defaults_filename = "default.yml"
|
|
19
|
+
prefix = "memtier_benchmark-"
|
|
20
|
+
test_glob = "memtier_*.yml"
|
|
21
|
+
files = pathlib.Path().glob(test_glob)
|
|
22
|
+
files = [str(x) for x in files]
|
|
23
|
+
|
|
24
|
+
for file in files:
|
|
25
|
+
if defaults_filename in file:
|
|
26
|
+
files.remove(file)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
print(len(files))
|
|
30
|
+
|
|
31
|
+
rdb_counter = 0
|
|
32
|
+
init_commands_counter = 0
|
|
33
|
+
can_convert_counter = 0
|
|
34
|
+
|
|
35
|
+
group_tests = {}
|
|
36
|
+
counter_groups = {}
|
|
37
|
+
final_enterprise_json = []
|
|
38
|
+
for yml_filename in files:
|
|
39
|
+
with open(yml_filename, "r") as yml_file:
|
|
40
|
+
benchmark_config = yaml.safe_load(yml_file)
|
|
41
|
+
tested_commands = benchmark_config["tested-commands"]
|
|
42
|
+
name = benchmark_config["name"]
|
|
43
|
+
tested_groups = benchmark_config["tested-groups"]
|
|
44
|
+
contains_db_config = False
|
|
45
|
+
contains_init_commands = False
|
|
46
|
+
contains_rdb = False
|
|
47
|
+
dbconfig = {}
|
|
48
|
+
precommand = ""
|
|
49
|
+
if "dbconfig" in benchmark_config:
|
|
50
|
+
dbconfig = benchmark_config["dbconfig"]
|
|
51
|
+
contains_db_config = True
|
|
52
|
+
if "init_commands" in benchmark_config["dbconfig"]:
|
|
53
|
+
contains_init_commands = True
|
|
54
|
+
if "dataset" in benchmark_config["dbconfig"]:
|
|
55
|
+
contains_rdb = True
|
|
56
|
+
|
|
57
|
+
if contains_rdb:
|
|
58
|
+
rdb_counter = rdb_counter + 1
|
|
59
|
+
elif contains_init_commands:
|
|
60
|
+
init_commands_counter = init_commands_counter + 1
|
|
61
|
+
else:
|
|
62
|
+
can_convert_counter = can_convert_counter + 1
|
|
63
|
+
|
|
64
|
+
if (
|
|
65
|
+
contains_db_config
|
|
66
|
+
and contains_rdb is False
|
|
67
|
+
and contains_init_commands is False
|
|
68
|
+
):
|
|
69
|
+
keyspace_check = False
|
|
70
|
+
keyspace_value = 0
|
|
71
|
+
|
|
72
|
+
if "check" in dbconfig:
|
|
73
|
+
if "keyspacelen" in dbconfig["check"]:
|
|
74
|
+
keyspace_check = True
|
|
75
|
+
keyspace_value = dbconfig["check"]["keyspacelen"]
|
|
76
|
+
if "preload_tool" in dbconfig:
|
|
77
|
+
precommand = dbconfig["preload_tool"]["arguments"]
|
|
78
|
+
command = benchmark_config["clientconfig"]["arguments"]
|
|
79
|
+
check_dict = {"keyspacelen": keyspace_value}
|
|
80
|
+
|
|
81
|
+
test_definition = {
|
|
82
|
+
"name": name,
|
|
83
|
+
"precommand": f"{precommand}",
|
|
84
|
+
"check": check_dict,
|
|
85
|
+
"command": f"{command}",
|
|
86
|
+
"kpis": {},
|
|
87
|
+
"tested-commands": tested_commands,
|
|
88
|
+
"tested-groups": tested_groups,
|
|
89
|
+
}
|
|
90
|
+
for tested_group in tested_groups:
|
|
91
|
+
if tested_group not in group_tests:
|
|
92
|
+
group_tests[tested_group] = []
|
|
93
|
+
group_tests[tested_group].append(test_definition)
|
|
94
|
+
if tested_group not in counter_groups:
|
|
95
|
+
counter_groups[tested_group] = 0
|
|
96
|
+
counter_groups[tested_group] = counter_groups[tested_group] + 1
|
|
97
|
+
final_enterprise_json.append(test_definition)
|
|
98
|
+
|
|
99
|
+
print(f"RDB tests {rdb_counter}")
|
|
100
|
+
print(f"INIT command tests {init_commands_counter}")
|
|
101
|
+
print(f"Other tests {can_convert_counter}")
|
|
102
|
+
print(f"Final Enterprise tests {len(final_enterprise_json)}")
|
|
103
|
+
|
|
104
|
+
print(counter_groups)
|
|
105
|
+
|
|
106
|
+
for tested_group, tests in group_tests.items():
|
|
107
|
+
with open(f"jsons/{tested_group}.json", "w") as json_fd:
|
|
108
|
+
json.dump(tests, json_fd)
|
|
@@ -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 "HSET __key__ field1 __data__ field2 __data__ field3 __data__ field4 __data__ field5 __data__" --command-key-pattern="P" --key-minimum=1 --key-maximum
|
|
12
|
+
arguments: '"--data-size" "1000" --command "HSET __key__ field1 __data__ field2 __data__ field3 __data__ field4 __data__ field5 __data__" --command-key-pattern="P" --key-minimum=1 --key-maximum 1000000 -n 5000 -c 50 -t 4 --hide-histogram'
|
|
13
13
|
resources:
|
|
14
14
|
requests:
|
|
15
15
|
memory: 6g
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-1Mkeys-load-string-with-200KiB-values
|
|
3
|
+
description: Runs memtier_benchmark, for a keyspace length of 1M keys loading STRINGs in which the value has a data size of 200K Bytes.
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
check:
|
|
8
|
+
keyspacelen: 0
|
|
9
|
+
resources:
|
|
10
|
+
requests:
|
|
11
|
+
memory: 12g
|
|
12
|
+
tested-commands:
|
|
13
|
+
- set
|
|
14
|
+
redis-topologies:
|
|
15
|
+
- oss-standalone
|
|
16
|
+
- oss-cluster-03-primaries
|
|
17
|
+
- oss-cluster-05-primaries
|
|
18
|
+
- oss-cluster-09-primaries
|
|
19
|
+
- oss-cluster-15-primaries
|
|
20
|
+
- oss-cluster-21-primaries
|
|
21
|
+
build-variants:
|
|
22
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
23
|
+
clientconfig:
|
|
24
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
25
|
+
tool: memtier_benchmark
|
|
26
|
+
arguments: '"--data-size" "200000" --ratio 1:0 --key-pattern P:P --key-minimum=1 --key-maximum 1000000 --test-time 180 -c 50 -t 4 --hide-histogram'
|
|
27
|
+
resources:
|
|
28
|
+
requests:
|
|
29
|
+
cpus: '4'
|
|
30
|
+
memory: 2g
|
|
31
|
+
scalability:
|
|
32
|
+
mode: '1:1'
|
|
33
|
+
max_processes: 21
|
|
34
|
+
|
|
35
|
+
tested-groups:
|
|
36
|
+
- string
|
|
37
|
+
priority: 17
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-1Mkeys-load-string-with-20KiB-values
|
|
3
|
+
description: Runs memtier_benchmark, for a keyspace length of 1M keys loading STRINGs in which the value has a data size of 20K Bytes.
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
check:
|
|
8
|
+
keyspacelen: 0
|
|
9
|
+
resources:
|
|
10
|
+
requests:
|
|
11
|
+
memory: 12g
|
|
12
|
+
tested-commands:
|
|
13
|
+
- set
|
|
14
|
+
redis-topologies:
|
|
15
|
+
- oss-standalone
|
|
16
|
+
- oss-cluster-03-primaries
|
|
17
|
+
- oss-cluster-05-primaries
|
|
18
|
+
- oss-cluster-09-primaries
|
|
19
|
+
- oss-cluster-15-primaries
|
|
20
|
+
- oss-cluster-21-primaries
|
|
21
|
+
build-variants:
|
|
22
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
23
|
+
clientconfig:
|
|
24
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
25
|
+
tool: memtier_benchmark
|
|
26
|
+
arguments: '"--data-size" "20000" --ratio 1:0 --key-pattern P:P --key-minimum=1 --key-maximum 1000000 --test-time 180 -c 50 -t 4 --hide-histogram'
|
|
27
|
+
resources:
|
|
28
|
+
requests:
|
|
29
|
+
cpus: '4'
|
|
30
|
+
memory: 2g
|
|
31
|
+
scalability:
|
|
32
|
+
mode: '1:1'
|
|
33
|
+
max_processes: 21
|
|
34
|
+
|
|
35
|
+
tested-groups:
|
|
36
|
+
- string
|
|
37
|
+
priority: 17
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-2MB-values.yml
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-1Mkeys-load-string-with-2MB-values
|
|
3
|
+
description: Runs memtier_benchmark, for a keyspace length of 1M keys loading STRINGs in which the value has a data size of 2M Bytes.
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
check:
|
|
8
|
+
keyspacelen: 0
|
|
9
|
+
resources:
|
|
10
|
+
requests:
|
|
11
|
+
memory: 12g
|
|
12
|
+
tested-commands:
|
|
13
|
+
- set
|
|
14
|
+
redis-topologies:
|
|
15
|
+
- oss-standalone
|
|
16
|
+
- oss-cluster-03-primaries
|
|
17
|
+
- oss-cluster-05-primaries
|
|
18
|
+
- oss-cluster-09-primaries
|
|
19
|
+
- oss-cluster-15-primaries
|
|
20
|
+
- oss-cluster-21-primaries
|
|
21
|
+
build-variants:
|
|
22
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
23
|
+
clientconfig:
|
|
24
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
25
|
+
tool: memtier_benchmark
|
|
26
|
+
arguments: '"--data-size" "2000000" --ratio 1:0 --key-pattern P:P --key-minimum=1 --key-maximum 1000000 --test-time 180 -c 50 -t 4 --hide-histogram'
|
|
27
|
+
resources:
|
|
28
|
+
requests:
|
|
29
|
+
cpus: '4'
|
|
30
|
+
memory: 2g
|
|
31
|
+
scalability:
|
|
32
|
+
mode: '1:1'
|
|
33
|
+
max_processes: 21
|
|
34
|
+
|
|
35
|
+
tested-groups:
|
|
36
|
+
- string
|
|
37
|
+
priority: 17
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-1Mkeys-string-get-200KiB
|
|
3
|
+
description: Runs memtier_benchmark, for a keyspace length of 1M keys with a data size of 200000 Bytes for each key.
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
check:
|
|
8
|
+
keyspacelen: 1000000
|
|
9
|
+
preload_tool:
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
arguments: '"--data-size" "200000" "--ratio" "1:0" "--key-pattern" "P:P" "-c" "50" "-t" "2" "--hide-histogram" "--key-minimum" "1"'
|
|
13
|
+
resources:
|
|
14
|
+
requests:
|
|
15
|
+
memory: 2g
|
|
16
|
+
tested-commands:
|
|
17
|
+
- get
|
|
18
|
+
redis-topologies:
|
|
19
|
+
- oss-standalone
|
|
20
|
+
build-variants:
|
|
21
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
22
|
+
clientconfig:
|
|
23
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
24
|
+
tool: memtier_benchmark
|
|
25
|
+
arguments: --data-size 200000 --ratio 0:1 --key-pattern R:R -c 25 -t 4 --hide-histogram --test-time 180
|
|
26
|
+
resources:
|
|
27
|
+
requests:
|
|
28
|
+
cpus: '4'
|
|
29
|
+
memory: 2g
|
|
30
|
+
|
|
31
|
+
tested-groups:
|
|
32
|
+
- string
|
|
33
|
+
priority: 1
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-1Mkeys-string-get-20KiB
|
|
3
|
+
description: Runs memtier_benchmark, for a keyspace length of 1M keys with a data size of 20000 Bytes for each key.
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
check:
|
|
8
|
+
keyspacelen: 1000000
|
|
9
|
+
preload_tool:
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
arguments: '"--data-size" "20000" "--ratio" "1:0" "--key-pattern" "P:P" "-c" "50" "-t" "2" "--hide-histogram" "--key-minimum" "1"'
|
|
13
|
+
resources:
|
|
14
|
+
requests:
|
|
15
|
+
memory: 2g
|
|
16
|
+
tested-commands:
|
|
17
|
+
- get
|
|
18
|
+
redis-topologies:
|
|
19
|
+
- oss-standalone
|
|
20
|
+
build-variants:
|
|
21
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
22
|
+
clientconfig:
|
|
23
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
24
|
+
tool: memtier_benchmark
|
|
25
|
+
arguments: --data-size 20000 --ratio 0:1 --key-pattern R:R -c 25 -t 4 --hide-histogram --test-time 180
|
|
26
|
+
resources:
|
|
27
|
+
requests:
|
|
28
|
+
cpus: '4'
|
|
29
|
+
memory: 2g
|
|
30
|
+
|
|
31
|
+
tested-groups:
|
|
32
|
+
- string
|
|
33
|
+
priority: 1
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-1Mkeys-string-get-2MB
|
|
3
|
+
description: Runs memtier_benchmark, for a keyspace length of 1M keys with a data size of 2000000 Bytes for each key.
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
check:
|
|
8
|
+
keyspacelen: 1000000
|
|
9
|
+
preload_tool:
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
arguments: '"--data-size" "2000000" "--ratio" "1:0" "--key-pattern" "P:P" "-c" "50" "-t" "2" "--hide-histogram" "--key-minimum" "1"'
|
|
13
|
+
resources:
|
|
14
|
+
requests:
|
|
15
|
+
memory: 2g
|
|
16
|
+
tested-commands:
|
|
17
|
+
- get
|
|
18
|
+
redis-topologies:
|
|
19
|
+
- oss-standalone
|
|
20
|
+
build-variants:
|
|
21
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
22
|
+
clientconfig:
|
|
23
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
24
|
+
tool: memtier_benchmark
|
|
25
|
+
arguments: --data-size 2000000 --ratio 0:1 --key-pattern R:R -c 25 -t 4 --hide-histogram --test-time 180
|
|
26
|
+
resources:
|
|
27
|
+
requests:
|
|
28
|
+
cpus: '4'
|
|
29
|
+
memory: 2g
|
|
30
|
+
|
|
31
|
+
tested-groups:
|
|
32
|
+
- string
|
|
33
|
+
priority: 1
|
|
@@ -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
|