redis-benchmarks-specification 0.1.221__py3-none-any.whl → 0.1.222__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.

@@ -256,12 +256,8 @@ def compare_command_logic(args, project_name, project_version):
256
256
  comparison_target_branch = args.comparison_target_branch
257
257
  baseline_github_repo = args.baseline_github_repo
258
258
  comparison_github_repo = args.comparison_github_repo
259
- baseline_github_org = args.github_org
260
- if args.baseline_github_org != "":
261
- baseline_github_org = args.baseline_github_org
262
- comparison_github_org = args.github_org
263
- if args.comparison_github_org != "":
264
- comparison_github_org = args.comparison_github_org
259
+ baseline_github_org = args.baseline_github_org
260
+ comparison_github_org = args.comparison_github_org
265
261
  baseline_hash = args.baseline_hash
266
262
  comparison_hash = args.comparison_hash
267
263
 
@@ -954,9 +950,10 @@ def from_rts_to_regression_table(
954
950
  "{}={}".format(test_filter, test_name),
955
951
  "deployment_name={}".format(baseline_deployment_name),
956
952
  "github_repo={}".format(baseline_github_repo),
957
- "github_org={}".format(baseline_github_org),
958
953
  "triggering_env={}".format(tf_triggering_env),
959
954
  ]
955
+ if baseline_github_org != "":
956
+ filters_baseline.append(f"github_org={baseline_github_org}")
960
957
  if running_platform is not None:
961
958
  filters_baseline.append("running_platform={}".format(running_platform))
962
959
  filters_comparison = [
@@ -965,9 +962,10 @@ def from_rts_to_regression_table(
965
962
  "{}={}".format(test_filter, test_name),
966
963
  "deployment_name={}".format(comparison_deployment_name),
967
964
  "github_repo={}".format(comparison_github_repo),
968
- "github_org={}".format(comparison_github_org),
969
965
  "triggering_env={}".format(tf_triggering_env),
970
966
  ]
967
+ if comparison_github_org != "":
968
+ filters_baseline.append(f"github_org={comparison_github_org}")
971
969
  if "hash" not in by_str_baseline:
972
970
  filters_baseline.append("hash==")
973
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
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 --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
@@ -0,0 +1,28 @@
1
+ version: 0.4
2
+ name: memtier_benchmark-1Mkeys-string-incrby
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 --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
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 --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
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 --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.221
3
+ Version: 0.1.222
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=LOSlPao896I5DmuPE3BkXyTnhI0Y1SDI_8lRZa2KEo8,45965
23
+ redis_benchmarks_specification/__compare__/compare.py,sha256=SPKYTGlzR5so4LSPi51RyTNqBo9ZeV5AByk3NvtyBUg,45901
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.yml,sha256=N5mrDUO9d3FH2LQjASwhVYqLP8-pKZJfSuNRloHir28,1102
100
101
  redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-decr.yml,sha256=jRmqwgafIDKCwn1o7Xwx6Rywcq-Z3JeS-KTL254K9qs,1049
101
102
  redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-100B-pipeline-10.yml,sha256=fvuKzY2WjIY4cl96x4DBSFMlaXl1g-Hmsw_J4VAGIuo,978
102
103
  redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-100B.yml,sha256=_fRtXmRvktAiXBHiL5pp50LzN1RDN6seLKfoDXwWFBU,944
@@ -107,7 +108,10 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-1
107
108
  redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-200KiB.yml,sha256=lt7N1e5KK3xkqeiCOJ7eD8N_XfgOKOlZph84J-eVs-Y,954
108
109
  redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-20KiB.yml,sha256=nZ_c5DV8lKWMmgW9Scgh4WGNA9tD0nkCYssp0syHJfs,950
109
110
  redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-get-2MB.yml,sha256=JslW9y5ItM3I5yoZY2yNiDSD0XQrW9m1hKLDtC8ImVQ,1011
111
+ redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-incrby.yml,sha256=jU9FuUVTYNruLmBwS1GDA6oUzi8iBi5lgVOLJABTsew,707
112
+ redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-incrbyfloat.yml,sha256=4UnmF-vx8At2ah1YjFUMHgvXFpfi4EVVXsAWjN42M78,728
110
113
  redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-mget-1KiB.yml,sha256=s1PLNH__vexG6bE-GL_xPAqVelupxY73AWWE5siYIYE,999
114
+ redis_benchmarks_specification/test-suites/memtier_benchmark-1Mkeys-string-setrange-100B.yml,sha256=ivi_raHaME5UUVEqV8SkvwJ5SK7d-RgcfalWCnYRpV8,1033
111
115
  redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-2-elements-geopos.yml,sha256=Mni3vvF4iSy1OJ_9USsYhh6RPd0x5Sss37E1UcL2J3Q,931
112
116
  redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-2-elements-geosearch-fromlonlat-withcoord.yml,sha256=qo26OHdRFwmtH9ZGzj-bsasjzYoa4DGL2ODuDbOdgAE,1097
113
117
  redis_benchmarks_specification/test-suites/memtier_benchmark-1key-geo-60M-elements-geodist-pipeline-10.yml,sha256=fnLeuvhBxNit7iO2D7P4Ybxahw0e_U6wXy0IudNhQVM,890
@@ -159,8 +163,8 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-stream-5-entr
159
163
  redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-load-string-with-512B-values.yml,sha256=XAIFlbR6VJnmQRwedLGBGenbIsMC_I3uA35Mz_bkTTc,1028
160
164
  redis_benchmarks_specification/test-suites/memtier_benchmark-connection-hello.yml,sha256=VIFNaaAqRQMeDvtXmKGDpJTnu658Lv5i_oAju5uSi_c,708
161
165
  redis_benchmarks_specification/test-suites/template.txt,sha256=d_edIE7Sxa5X7I2yG-Io0bPdbDIHR0oWFoCA3XUt_EU,435
162
- redis_benchmarks_specification-0.1.221.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
163
- redis_benchmarks_specification-0.1.221.dist-info/METADATA,sha256=6X-M9bqkTBHDW_KKx6N_SjKo541I7OnKYdb7XRnXVb0,22726
164
- redis_benchmarks_specification-0.1.221.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
165
- redis_benchmarks_specification-0.1.221.dist-info/entry_points.txt,sha256=x5WBXCZsnDRTZxV7SBGmC65L2k-ygdDOxV8vuKN00Nk,715
166
- redis_benchmarks_specification-0.1.221.dist-info/RECORD,,
166
+ redis_benchmarks_specification-0.1.222.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
167
+ redis_benchmarks_specification-0.1.222.dist-info/METADATA,sha256=NoejDO4M6_pos3Z0PnlGAkgYVvWRr-3AhXUBoEAer90,22726
168
+ redis_benchmarks_specification-0.1.222.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
169
+ redis_benchmarks_specification-0.1.222.dist-info/entry_points.txt,sha256=x5WBXCZsnDRTZxV7SBGmC65L2k-ygdDOxV8vuKN00Nk,715
170
+ redis_benchmarks_specification-0.1.222.dist-info/RECORD,,