redis-benchmarks-specification 0.1.222__py3-none-any.whl → 0.1.223__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/__compare__/compare.py +2 -2
- redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-append-1-100B-pipeline-10.yml +34 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-incrby-pipeline-10.yml +28 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-incrbyfloat-pipeline-10.yml +28 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setrange-100B-pipeline-10.yml +34 -0
- {redis_benchmarks_specification-0.1.222.dist-info → redis_benchmarks_specification-0.1.223.dist-info}/METADATA +1 -1
- {redis_benchmarks_specification-0.1.222.dist-info → redis_benchmarks_specification-0.1.223.dist-info}/RECORD +10 -6
- {redis_benchmarks_specification-0.1.222.dist-info → redis_benchmarks_specification-0.1.223.dist-info}/LICENSE +0 -0
- {redis_benchmarks_specification-0.1.222.dist-info → redis_benchmarks_specification-0.1.223.dist-info}/WHEEL +0 -0
- {redis_benchmarks_specification-0.1.222.dist-info → redis_benchmarks_specification-0.1.223.dist-info}/entry_points.txt +0 -0
|
@@ -937,7 +937,7 @@ def from_rts_to_regression_table(
|
|
|
937
937
|
regressions_list = []
|
|
938
938
|
improvements_list = []
|
|
939
939
|
for test_name in test_names:
|
|
940
|
-
compare_version = "
|
|
940
|
+
compare_version = "main"
|
|
941
941
|
github_link = "https://github.com/redis/redis-benchmarks-specification/blob"
|
|
942
942
|
test_path = f"redis_benchmarks_specification/test-suites/{test_name}.yml"
|
|
943
943
|
test_link = f"[{test_name}]({github_link}/{compare_version}/{test_path})"
|
|
@@ -965,7 +965,7 @@ def from_rts_to_regression_table(
|
|
|
965
965
|
"triggering_env={}".format(tf_triggering_env),
|
|
966
966
|
]
|
|
967
967
|
if comparison_github_org != "":
|
|
968
|
-
|
|
968
|
+
filters_comparison.append(f"github_org={comparison_github_org}")
|
|
969
969
|
if "hash" not in by_str_baseline:
|
|
970
970
|
filters_baseline.append("hash==")
|
|
971
971
|
if "hash" not in by_str_comparison:
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-1Mkeys-string-append-1-100B-pipeline-10
|
|
3
|
+
description: Runs memtier_benchmark, for a keyspace length of 1M keys with a data size of 1 Bytes for each key initially. Then we append to the same keys with values ranging from 1 to 100B.
|
|
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" "1" "--ratio" "1:0" "--key-pattern" "P:P" "-c" "50" "-t" "2" "--hide-histogram" "--key-minimum" "1"'
|
|
13
|
+
resources:
|
|
14
|
+
requests:
|
|
15
|
+
memory: 1g
|
|
16
|
+
tested-commands:
|
|
17
|
+
- append
|
|
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: --test-time 120 --pipeline 10 --data-size-range=1-100 --command "APPEND __key__ __data__" --command-key-pattern="R" --key-minimum=1 --key-maximum 1000000 -c 50 -t 4 --hide-histogram
|
|
27
|
+
resources:
|
|
28
|
+
requests:
|
|
29
|
+
cpus: '4'
|
|
30
|
+
memory: 2g
|
|
31
|
+
|
|
32
|
+
tested-groups:
|
|
33
|
+
- string
|
|
34
|
+
priority: 1
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-incrby-pipeline-10.yml
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-1Mkeys-string-incrby-pipeline-10
|
|
3
|
+
description: Runs memtier_benchmark, for a keyspace length of 1M keys doing incrby of 1.
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
resources:
|
|
8
|
+
requests:
|
|
9
|
+
memory: 1g
|
|
10
|
+
tested-groups:
|
|
11
|
+
- string
|
|
12
|
+
tested-commands:
|
|
13
|
+
- incrby
|
|
14
|
+
redis-topologies:
|
|
15
|
+
- oss-standalone
|
|
16
|
+
build-variants:
|
|
17
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
18
|
+
- dockerhub
|
|
19
|
+
clientconfig:
|
|
20
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
21
|
+
tool: memtier_benchmark
|
|
22
|
+
arguments: --test-time 120 --pipeline 10 --command "INCRBY __key__ 1" --command-key-pattern="R" --key-minimum=1 --key-maximum 1000000 -c 50 -t 4 --hide-histogram
|
|
23
|
+
resources:
|
|
24
|
+
requests:
|
|
25
|
+
cpus: '4'
|
|
26
|
+
memory: 2g
|
|
27
|
+
|
|
28
|
+
priority: 21
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-1Mkeys-string-incrbyfloat-pipeline-10
|
|
3
|
+
description: Runs memtier_benchmark, for a keyspace length of 1M keys doing incrby of 0.01.
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
resources:
|
|
8
|
+
requests:
|
|
9
|
+
memory: 1g
|
|
10
|
+
tested-groups:
|
|
11
|
+
- string
|
|
12
|
+
tested-commands:
|
|
13
|
+
- incrbyfloat
|
|
14
|
+
redis-topologies:
|
|
15
|
+
- oss-standalone
|
|
16
|
+
build-variants:
|
|
17
|
+
- gcc:8.5.0-amd64-debian-buster-default
|
|
18
|
+
- dockerhub
|
|
19
|
+
clientconfig:
|
|
20
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
21
|
+
tool: memtier_benchmark
|
|
22
|
+
arguments: --test-time 120 --pipeline 10 --command "INCRBYFLOAT __key__ 0.01" --command-key-pattern="R" --key-minimum=1 --key-maximum 1000000 -c 50 -t 4 --hide-histogram
|
|
23
|
+
resources:
|
|
24
|
+
requests:
|
|
25
|
+
cpus: '4'
|
|
26
|
+
memory: 2g
|
|
27
|
+
|
|
28
|
+
priority: 21
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-1Mkeys-string-setrange-100B-pipeline-10
|
|
3
|
+
description: Runs memtier_benchmark, for a keyspace length of 1M keys with a data size of 100 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" "100" "--ratio" "1:0" "--key-pattern" "P:P" "-c" "50" "-t" "2" "--hide-histogram" "--key-minimum" "1"'
|
|
13
|
+
resources:
|
|
14
|
+
requests:
|
|
15
|
+
memory: 1g
|
|
16
|
+
tested-commands:
|
|
17
|
+
- setrange
|
|
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: --test-time 120 --pipeline 10 --data-size-range=1-95 --command "SETRANGE __key__ 5 __data__" --command-key-pattern="R" --key-minimum=1 --key-maximum 1000000 -c 50 -t 4 --hide-histogram
|
|
27
|
+
resources:
|
|
28
|
+
requests:
|
|
29
|
+
cpus: '4'
|
|
30
|
+
memory: 2g
|
|
31
|
+
|
|
32
|
+
tested-groups:
|
|
33
|
+
- string
|
|
34
|
+
priority: 1
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: redis-benchmarks-specification
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.223
|
|
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
|
|
@@ -20,7 +20,7 @@ redis_benchmarks_specification/__common__/spec.py,sha256=eTF5559epBB0FrJPx-jRDQV
|
|
|
20
20
|
redis_benchmarks_specification/__common__/timeseries.py,sha256=_LJFtC5sVP7DTaLZaIzv5g7wRxPTQZRwFIYvWX4p4N8,50533
|
|
21
21
|
redis_benchmarks_specification/__compare__/__init__.py,sha256=DtBXRp0Q01XgCFmY-1OIePMyyYihVNAjZ1Y8zwqSDN0,101
|
|
22
22
|
redis_benchmarks_specification/__compare__/args.py,sha256=L7Ap7A7qRv8ebIehDSleeXhK2UgWHL2YXeVyIFpRW-k,6299
|
|
23
|
-
redis_benchmarks_specification/__compare__/compare.py,sha256=
|
|
23
|
+
redis_benchmarks_specification/__compare__/compare.py,sha256=UiW4nbox4n4xneG8fWIfTkbnpRi9zbpDOiMiEaGgCMU,45899
|
|
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
26
|
redis_benchmarks_specification/__runner__/args.py,sha256=lYvbPd_3ppHZv4f2sRwXcF-fcBrwRSn3H2RMmNVkojY,7221
|
|
@@ -97,6 +97,7 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-
|
|
|
97
97
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-string-with-2MB-values.yml,sha256=nj4-jT-YXudBe2DNY4ZJ21YwZ_RIJIBAEO-7h6CoTJA,847
|
|
98
98
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-zset-with-10-elements-double-score.yml,sha256=AcrRuFBiRBVJ8C5sS_xVoBW33tR6-u8vBfIp4OzMAOY,972
|
|
99
99
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-load-zset-with-10-elements-int-score.yml,sha256=hYJE6X6wHQF-dFA25xJMBgEPXMhO3XJhBQ_NrBwx8Lc,900
|
|
100
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-append-1-100B-pipeline-10.yml,sha256=m7pKCK_0M1K8m3wam91IdnDNfw5-MNJklTre35_U0j0,1128
|
|
100
101
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-append-1-100B.yml,sha256=N5mrDUO9d3FH2LQjASwhVYqLP8-pKZJfSuNRloHir28,1102
|
|
101
102
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-decr.yml,sha256=jRmqwgafIDKCwn1o7Xwx6Rywcq-Z3JeS-KTL254K9qs,1049
|
|
102
103
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-100B-pipeline-10.yml,sha256=fvuKzY2WjIY4cl96x4DBSFMlaXl1g-Hmsw_J4VAGIuo,978
|
|
@@ -108,9 +109,12 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-1
|
|
|
108
109
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-200KiB.yml,sha256=lt7N1e5KK3xkqeiCOJ7eD8N_XfgOKOlZph84J-eVs-Y,954
|
|
109
110
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-20KiB.yml,sha256=nZ_c5DV8lKWMmgW9Scgh4WGNA9tD0nkCYssp0syHJfs,950
|
|
110
111
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-2MB.yml,sha256=JslW9y5ItM3I5yoZY2yNiDSD0XQrW9m1hKLDtC8ImVQ,1011
|
|
112
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-incrby-pipeline-10.yml,sha256=zQuBWbhJqc47y_fNzSL4IoVSV3bab4zZ-Azf6YK1nB0,733
|
|
111
113
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-incrby.yml,sha256=jU9FuUVTYNruLmBwS1GDA6oUzi8iBi5lgVOLJABTsew,707
|
|
114
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-incrbyfloat-pipeline-10.yml,sha256=ocKvmopOhCmhyJm9RiTbVVS3gBA1ug63tMrDa0FApys,754
|
|
112
115
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-incrbyfloat.yml,sha256=4UnmF-vx8At2ah1YjFUMHgvXFpfi4EVVXsAWjN42M78,728
|
|
113
116
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mget-1KiB.yml,sha256=s1PLNH__vexG6bE-GL_xPAqVelupxY73AWWE5siYIYE,999
|
|
117
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setrange-100B-pipeline-10.yml,sha256=cIALr7upg9-usUR1jLLYl6Ym-2LQwWWh4Ie-ilAEfxc,1059
|
|
114
118
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setrange-100B.yml,sha256=ivi_raHaME5UUVEqV8SkvwJ5SK7d-RgcfalWCnYRpV8,1033
|
|
115
119
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-2-elements-geopos.yml,sha256=Mni3vvF4iSy1OJ_9USsYhh6RPd0x5Sss37E1UcL2J3Q,931
|
|
116
120
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-2-elements-geosearch-fromlonlat-withcoord.yml,sha256=qo26OHdRFwmtH9ZGzj-bsasjzYoa4DGL2ODuDbOdgAE,1097
|
|
@@ -163,8 +167,8 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-stream-5-entr
|
|
|
163
167
|
redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-load-string-with-512B-values.yml,sha256=XAIFlbR6VJnmQRwedLGBGenbIsMC_I3uA35Mz_bkTTc,1028
|
|
164
168
|
redis_benchmarks_specification/test-suites/memtier_benchmark-connection-hello.yml,sha256=VIFNaaAqRQMeDvtXmKGDpJTnu658Lv5i_oAju5uSi_c,708
|
|
165
169
|
redis_benchmarks_specification/test-suites/template.txt,sha256=d_edIE7Sxa5X7I2yG-Io0bPdbDIHR0oWFoCA3XUt_EU,435
|
|
166
|
-
redis_benchmarks_specification-0.1.
|
|
167
|
-
redis_benchmarks_specification-0.1.
|
|
168
|
-
redis_benchmarks_specification-0.1.
|
|
169
|
-
redis_benchmarks_specification-0.1.
|
|
170
|
-
redis_benchmarks_specification-0.1.
|
|
170
|
+
redis_benchmarks_specification-0.1.223.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
171
|
+
redis_benchmarks_specification-0.1.223.dist-info/METADATA,sha256=JDcU1I_4nOzAkRjUDeBnuIcmKuGa8V1GchwsCCuNcaQ,22726
|
|
172
|
+
redis_benchmarks_specification-0.1.223.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
173
|
+
redis_benchmarks_specification-0.1.223.dist-info/entry_points.txt,sha256=x5WBXCZsnDRTZxV7SBGmC65L2k-ygdDOxV8vuKN00Nk,715
|
|
174
|
+
redis_benchmarks_specification-0.1.223.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|