redis-benchmarks-specification 0.1.254__py3-none-any.whl → 0.1.255__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 +4 -3
- redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zrank-100K-elements-pipeline-1.yml +34 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zrank-10M-elements-pipeline-1.yml +34 -0
- redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zrank-1M-elements-pipeline-1.yml +1 -1
- {redis_benchmarks_specification-0.1.254.dist-info → redis_benchmarks_specification-0.1.255.dist-info}/METADATA +1 -1
- {redis_benchmarks_specification-0.1.254.dist-info → redis_benchmarks_specification-0.1.255.dist-info}/RECORD +9 -7
- {redis_benchmarks_specification-0.1.254.dist-info → redis_benchmarks_specification-0.1.255.dist-info}/LICENSE +0 -0
- {redis_benchmarks_specification-0.1.254.dist-info → redis_benchmarks_specification-0.1.255.dist-info}/WHEEL +0 -0
- {redis_benchmarks_specification-0.1.254.dist-info → redis_benchmarks_specification-0.1.255.dist-info}/entry_points.txt +0 -0
|
@@ -804,21 +804,22 @@ def compute_regression_table(
|
|
|
804
804
|
len_baseline_only_list = len(baseline_only_list)
|
|
805
805
|
if len_baseline_only_list > 0:
|
|
806
806
|
table_output += f"\n WARNING: There were {len_baseline_only_list} benchmarks with datapoints only on baseline.\n\n"
|
|
807
|
-
baseline_only_test_names_str = "|".join([l
|
|
807
|
+
baseline_only_test_names_str = "|".join([l for l in baseline_only_list])
|
|
808
808
|
table_output += (
|
|
809
809
|
f" Baseline only test regexp names: {baseline_only_test_names_str}\n\n"
|
|
810
810
|
)
|
|
811
811
|
len_comparison_only_list = len(comparison_only_list)
|
|
812
812
|
if len_comparison_only_list > 0:
|
|
813
813
|
table_output += f"\n WARNING: There were {len_comparison_only_list} benchmarks with datapoints only on comparison.\n\n"
|
|
814
|
-
comparison_only_test_names_str = "|".join([l
|
|
814
|
+
comparison_only_test_names_str = "|".join([l for l in comparison_only_list])
|
|
815
815
|
table_output += (
|
|
816
816
|
f" Comparison only test regexp names: {comparison_only_test_names_str}\n\n"
|
|
817
817
|
)
|
|
818
818
|
len_no_datapoints = len(no_datapoints_list)
|
|
819
819
|
if len_no_datapoints > 0:
|
|
820
820
|
table_output += f"\n WARNING: There were {len_no_datapoints} benchmarks with NO datapoints for both baseline and comparison.\n\n"
|
|
821
|
-
no_datapoints_test_names_str = "|".join([l
|
|
821
|
+
no_datapoints_test_names_str = "|".join([l for l in no_datapoints_list])
|
|
822
|
+
|
|
822
823
|
table_output += (
|
|
823
824
|
f" NO DATAPOINTS test regexp names: {no_datapoints_test_names_str}\n\n"
|
|
824
825
|
)
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zrank-100K-elements-pipeline-1.yml
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-1key-zrank-100K-elements-pipeline-1
|
|
3
|
+
description: Runs memtier_benchmark, for a keyspace length of 1 SORTED SET key. The SORTED SET contains 100K elements and we query it using ZRANK.
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
check:
|
|
8
|
+
keyspacelen: 1
|
|
9
|
+
preload_tool:
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
arguments: --pipeline 50 --command="ZADD key1 __key__ __key__" --command-key-pattern=P --key-maximum 100000 --key-prefix "" -n allkeys --hide-histogram -t 1 -c 1
|
|
13
|
+
resources:
|
|
14
|
+
requests:
|
|
15
|
+
memory: 1g
|
|
16
|
+
tested-groups:
|
|
17
|
+
- sorted-set
|
|
18
|
+
tested-commands:
|
|
19
|
+
- zrank
|
|
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="ZRANK key1 __key__" --key-maximum 100000 --command-key-pattern=R --key-prefix "" --hide-histogram --test-time 180 --pipeline 1 -c 1 -t 1
|
|
29
|
+
resources:
|
|
30
|
+
requests:
|
|
31
|
+
cpus: '4'
|
|
32
|
+
memory: 2g
|
|
33
|
+
|
|
34
|
+
priority: 72
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zrank-10M-elements-pipeline-1.yml
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
version: 0.4
|
|
2
|
+
name: memtier_benchmark-1key-zrank-10M-elements-pipeline-1
|
|
3
|
+
description: Runs memtier_benchmark, for a keyspace length of 1 SORTED SET key. The SORTED SET contains 10M elements and we query it using ZRANK.
|
|
4
|
+
dbconfig:
|
|
5
|
+
configuration-parameters:
|
|
6
|
+
save: '""'
|
|
7
|
+
check:
|
|
8
|
+
keyspacelen: 1
|
|
9
|
+
preload_tool:
|
|
10
|
+
run_image: redislabs/memtier_benchmark:edge
|
|
11
|
+
tool: memtier_benchmark
|
|
12
|
+
arguments: --pipeline 50 --command="ZADD key1 __key__ __key__" --command-key-pattern=P --key-maximum 10000000 --key-prefix "" -n 1000000 --hide-histogram -t 10 -c 1
|
|
13
|
+
resources:
|
|
14
|
+
requests:
|
|
15
|
+
memory: 1g
|
|
16
|
+
tested-groups:
|
|
17
|
+
- sorted-set
|
|
18
|
+
tested-commands:
|
|
19
|
+
- zrank
|
|
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="ZRANK key1 __key__" --key-maximum 10000000 --command-key-pattern=R --key-prefix "" --hide-histogram --test-time 180 --pipeline 1 -c 1 -t 1
|
|
29
|
+
resources:
|
|
30
|
+
requests:
|
|
31
|
+
cpus: '4'
|
|
32
|
+
memory: 2g
|
|
33
|
+
|
|
34
|
+
priority: 72
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zrank-1M-elements-pipeline-1.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: --command="ZADD key1 __key__ __key__" --command-key-pattern=P --key-maximum 1000000 --key-prefix "" -n
|
|
12
|
+
arguments: --pipeline 50 --command="ZADD key1 __key__ __key__" --command-key-pattern=P --key-maximum 1000000 --key-prefix "" -n 100000 --hide-histogram -t 10 -c 1
|
|
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.255
|
|
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=-vQco6WG73DJtUFA7s-5bNk05vwHjOc94puVKZMZUYE,6513
|
|
23
|
-
redis_benchmarks_specification/__compare__/compare.py,sha256=
|
|
23
|
+
redis_benchmarks_specification/__compare__/compare.py,sha256=9O5tiQR5rGpuHawPmVJbpb6_mjN_LpNMHr9jtqzIRxA,53480
|
|
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
|
|
@@ -307,7 +307,9 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-1M-element
|
|
|
307
307
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-200K-elements-sadd-constant.yml,sha256=spiUdTx0kSZ0xcilXjOzN5UtmFm08dekzR2YQ0QPJUE,1060
|
|
308
308
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-set-2M-elements-sadd-increasing.yml,sha256=cmAyCOBnDSbtoxj1AJKAfAUwGk4zmqv2whlDB7z0QJw,766
|
|
309
309
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zincrby-1M-elements-pipeline-1.yml,sha256=_gp943gEk2E-hYtwbHLhgJ0G4v4-nRkHJyKgNLXVPJM,1098
|
|
310
|
-
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zrank-
|
|
310
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zrank-100K-elements-pipeline-1.yml,sha256=xliBq3txUCQmNzz1PJ19z7kC4jlO42jedMBXKjUN2rk,1081
|
|
311
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zrank-10M-elements-pipeline-1.yml,sha256=fK-WdIiqmlQ4O_Tia8WEJVw5nbzsX6riuUKvuGv8Z2E,1084
|
|
312
|
+
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zrank-1M-elements-pipeline-1.yml,sha256=8s2T1vs_LeAHcLIlsuPGq0-2R0g_nm5678nECChftfw,1079
|
|
311
313
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zrem-5M-elements-pipeline-1.yml,sha256=b6TcOO7qzeO-KT6V1Y3RdwviXrjYXIGrmwF6_S_rdt4,1676
|
|
312
314
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zrevrangebyscore-256K-elements-pipeline-1.yml,sha256=A4yYBcvwEKT18caQmtWcgHZS5Vmg3Rv2jLU4Dtaq0D0,1095
|
|
313
315
|
redis_benchmarks_specification/test-suites/memtier_benchmark-1key-zrevrangebyscore-256K-elements-pipeline-10.yml,sha256=2-5zlreVwBgh9YCbGDV9MaG1Hqwyrlc01pJWn20zZmQ,1097
|
|
@@ -343,8 +345,8 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-3Mkeys-string-mixed
|
|
|
343
345
|
redis_benchmarks_specification/test-suites/memtier_benchmark-connection-hello-pipeline-10.yml,sha256=y8c0KsJ-SYmEfvW8m5rQg0hd9boh-FWkzAZTma4OYaI,734
|
|
344
346
|
redis_benchmarks_specification/test-suites/memtier_benchmark-connection-hello.yml,sha256=VIFNaaAqRQMeDvtXmKGDpJTnu658Lv5i_oAju5uSi_c,708
|
|
345
347
|
redis_benchmarks_specification/test-suites/template.txt,sha256=d_edIE7Sxa5X7I2yG-Io0bPdbDIHR0oWFoCA3XUt_EU,435
|
|
346
|
-
redis_benchmarks_specification-0.1.
|
|
347
|
-
redis_benchmarks_specification-0.1.
|
|
348
|
-
redis_benchmarks_specification-0.1.
|
|
349
|
-
redis_benchmarks_specification-0.1.
|
|
350
|
-
redis_benchmarks_specification-0.1.
|
|
348
|
+
redis_benchmarks_specification-0.1.255.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
349
|
+
redis_benchmarks_specification-0.1.255.dist-info/METADATA,sha256=nnzKwIx7YWKr3fK1rKOUuay62wuvC72aJo6tk7j4IeQ,22726
|
|
350
|
+
redis_benchmarks_specification-0.1.255.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
351
|
+
redis_benchmarks_specification-0.1.255.dist-info/entry_points.txt,sha256=x5WBXCZsnDRTZxV7SBGmC65L2k-ygdDOxV8vuKN00Nk,715
|
|
352
|
+
redis_benchmarks_specification-0.1.255.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|