redis-benchmarks-specification 0.1.73__py3-none-any.whl → 0.1.75__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/__cli__/args.py +2 -0
- redis_benchmarks_specification/__cli__/cli.py +9 -7
- redis_benchmarks_specification/__compare__/args.py +6 -10
- {redis_benchmarks_specification-0.1.73.dist-info → redis_benchmarks_specification-0.1.75.dist-info}/METADATA +2 -1
- {redis_benchmarks_specification-0.1.73.dist-info → redis_benchmarks_specification-0.1.75.dist-info}/RECORD +8 -9
- {redis_benchmarks_specification-0.1.73.dist-info → redis_benchmarks_specification-0.1.75.dist-info}/WHEEL +1 -1
- redis_benchmarks_specification/test-suites/my-new-test.yml +0 -16
- {redis_benchmarks_specification-0.1.73.dist-info → redis_benchmarks_specification-0.1.75.dist-info}/LICENSE +0 -0
- {redis_benchmarks_specification-0.1.73.dist-info → redis_benchmarks_specification-0.1.75.dist-info}/entry_points.txt +0 -0
|
@@ -93,6 +93,8 @@ def spec_cli_args(parser):
|
|
|
93
93
|
default=START_TIME_NOW_UTC,
|
|
94
94
|
)
|
|
95
95
|
parser.add_argument("--redis_repo", type=str, default=None)
|
|
96
|
+
parser.add_argument("--gh_org", type=str, default="redis")
|
|
97
|
+
parser.add_argument("--gh_repo", type=str, default="redis")
|
|
96
98
|
parser.add_argument("--trigger-unstable-commits", type=bool, default=True)
|
|
97
99
|
parser.add_argument(
|
|
98
100
|
"--use-tags",
|
|
@@ -142,14 +142,11 @@ def get_repo(args):
|
|
|
142
142
|
if redisDirPath is None:
|
|
143
143
|
cleanUp = True
|
|
144
144
|
redisDirPath = tempfile.mkdtemp()
|
|
145
|
+
remote_url = f"https://github.com/{args.gh_org}/{args.gh_repo}"
|
|
145
146
|
logging.info(
|
|
146
|
-
"Retrieving redis repo from remote into {}. Using branch {}."
|
|
147
|
-
redisDirPath, args.branch
|
|
148
|
-
)
|
|
149
|
-
)
|
|
150
|
-
cmd = "git clone https://github.com/redis/redis {} --branch {}\n".format(
|
|
151
|
-
redisDirPath, args.branch
|
|
147
|
+
f"Retrieving redis repo from remote {remote_url} into {redisDirPath}. Using branch {args.branch}."
|
|
152
148
|
)
|
|
149
|
+
cmd = f"git clone {remote_url} {redisDirPath} --branch {args.branch}\n"
|
|
153
150
|
process = subprocess.Popen(
|
|
154
151
|
"/bin/bash", stdin=subprocess.PIPE, stdout=subprocess.PIPE
|
|
155
152
|
)
|
|
@@ -250,7 +247,12 @@ def trigger_tests_cli_command_logic(args, project_name, project_version):
|
|
|
250
247
|
binary_key,
|
|
251
248
|
binary_value,
|
|
252
249
|
) = get_commit_dict_from_sha(
|
|
253
|
-
cdict["git_hash"],
|
|
250
|
+
cdict["git_hash"],
|
|
251
|
+
args.gh_org,
|
|
252
|
+
args.gh_repo,
|
|
253
|
+
cdict,
|
|
254
|
+
True,
|
|
255
|
+
args.gh_token,
|
|
254
256
|
)
|
|
255
257
|
if args.platform:
|
|
256
258
|
commit_dict["platform"] = args.platform
|
|
@@ -52,7 +52,9 @@ def create_compare_arguments(parser):
|
|
|
52
52
|
parser.add_argument("--baseline_deployment_name", type=str, default="")
|
|
53
53
|
parser.add_argument("--comparison_deployment_name", type=str, default="")
|
|
54
54
|
parser.add_argument("--metric_name", type=str, default="ALL_STATS.Totals.Ops/sec")
|
|
55
|
-
parser.add_argument(
|
|
55
|
+
parser.add_argument(
|
|
56
|
+
"--running_platform", type=str, default="intel64-ubuntu22.04-redis-icx1"
|
|
57
|
+
)
|
|
56
58
|
parser.add_argument("--extra-filter", type=str, default=None)
|
|
57
59
|
parser.add_argument(
|
|
58
60
|
"--last_n",
|
|
@@ -108,15 +110,9 @@ def create_compare_arguments(parser):
|
|
|
108
110
|
parser.add_argument(
|
|
109
111
|
"--redistimeseries_host", type=str, default="benchmarks.redislabs.com"
|
|
110
112
|
)
|
|
111
|
-
parser.add_argument(
|
|
112
|
-
|
|
113
|
-
)
|
|
114
|
-
parser.add_argument(
|
|
115
|
-
"--redistimeseries_pass", type=str, default=None
|
|
116
|
-
)
|
|
117
|
-
parser.add_argument(
|
|
118
|
-
"--redistimeseries_user", type=str, default=None
|
|
119
|
-
)
|
|
113
|
+
parser.add_argument("--redistimeseries_port", type=int, default=12011)
|
|
114
|
+
parser.add_argument("--redistimeseries_pass", type=str, default=None)
|
|
115
|
+
parser.add_argument("--redistimeseries_user", type=str, default=None)
|
|
120
116
|
parser.add_argument(
|
|
121
117
|
"--from_timestamp",
|
|
122
118
|
default=None,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: redis-benchmarks-specification
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.75
|
|
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
|
|
@@ -9,6 +9,7 @@ Classifier: Programming Language :: Python :: 3
|
|
|
9
9
|
Classifier: Programming Language :: Python :: 3.9
|
|
10
10
|
Classifier: Programming Language :: Python :: 3.10
|
|
11
11
|
Classifier: Programming Language :: Python :: 3.11
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
12
13
|
Requires-Dist: Flask (>=2.0.3,<3.0.0)
|
|
13
14
|
Requires-Dist: Flask-HTTPAuth (>=4.4.0,<5.0.0)
|
|
14
15
|
Requires-Dist: GitPython (>=3.1.20,<4.0.0)
|
|
@@ -7,8 +7,8 @@ redis_benchmarks_specification/__builder__/__init__.py,sha256=l-G1z-t6twUgi8QLue
|
|
|
7
7
|
redis_benchmarks_specification/__builder__/builder.py,sha256=2hPQ6Gd2fWZemT_OmgkcHysb4wB6KwrSjExVMOAFL8o,17023
|
|
8
8
|
redis_benchmarks_specification/__builder__/schema.py,sha256=1wcmyVJBcWrBvK58pghN9NCoWLCO3BzPsmdKWYfkVog,584
|
|
9
9
|
redis_benchmarks_specification/__cli__/__init__.py,sha256=l-G1z-t6twUgi8QLueqoTQLvJmv3hJoEYskGm6H7L6M,83
|
|
10
|
-
redis_benchmarks_specification/__cli__/args.py,sha256=
|
|
11
|
-
redis_benchmarks_specification/__cli__/cli.py,sha256=
|
|
10
|
+
redis_benchmarks_specification/__cli__/args.py,sha256=Y4qcEzfetS-F7H7XexGOQ1ZcKFY6FcNIw7_a8pvB80U,4626
|
|
11
|
+
redis_benchmarks_specification/__cli__/cli.py,sha256=yY3IcLovEKXPBUaZdgcTYFW2y4S1URp4LpN4RgbqVy0,9818
|
|
12
12
|
redis_benchmarks_specification/__cli__/stats.py,sha256=wahzZRbpfokv8dQU8O4BH5JFrOZk-l6k8LWdKfue9_0,20204
|
|
13
13
|
redis_benchmarks_specification/__common__/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
14
|
redis_benchmarks_specification/__common__/builder_schema.py,sha256=LW00BSz_LXa83wbgRFylOCyRMMH4-3YpWgYh2hevOFM,5693
|
|
@@ -17,7 +17,7 @@ redis_benchmarks_specification/__common__/package.py,sha256=4uVt1BAZ999LV2rZkq--
|
|
|
17
17
|
redis_benchmarks_specification/__common__/runner.py,sha256=6x1L8UAo-gmxLMcsUU4FGQ5OLV08fqygDnoVZ1rVUVQ,6642
|
|
18
18
|
redis_benchmarks_specification/__common__/spec.py,sha256=3hvfAb7RuAsqB_PNEo_-iuOtgz1ZCWe3ouMwS5Mw54A,1002
|
|
19
19
|
redis_benchmarks_specification/__compare__/__init__.py,sha256=DtBXRp0Q01XgCFmY-1OIePMyyYihVNAjZ1Y8zwqSDN0,101
|
|
20
|
-
redis_benchmarks_specification/__compare__/args.py,sha256=
|
|
20
|
+
redis_benchmarks_specification/__compare__/args.py,sha256=71-pYjlbTQNAXQMbAiet898yhWRIplBBNU5USQqFar4,5341
|
|
21
21
|
redis_benchmarks_specification/__compare__/compare.py,sha256=TUgeeopSUUHtmfCo9vKgsafyNKbIUkimjThhORWOqHI,40142
|
|
22
22
|
redis_benchmarks_specification/__init__.py,sha256=YQIEx2sLPPA0JR9OuCuMNMNtm-f_gqDKgzvNJnkGNKY,491
|
|
23
23
|
redis_benchmarks_specification/__runner__/__init__.py,sha256=l-G1z-t6twUgi8QLueqoTQLvJmv3hJoEYskGm6H7L6M,83
|
|
@@ -149,7 +149,6 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-set-10-100-el
|
|
|
149
149
|
redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-set-10-100-elements-sunion.yml,sha256=szWvlcOHgWeLUH_fRvUbmAVx9GwNygQTtEDalISANh4,2359
|
|
150
150
|
redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-stream-5-entries-xread-all-entries-pipeline-10.yml,sha256=RSkNgV5SsjdkXhM0mifi2GlwIxtiHR8N3u-ieI23BoQ,1126
|
|
151
151
|
redis_benchmarks_specification/test-suites/memtier_benchmark-2keys-stream-5-entries-xread-all-entries.yml,sha256=w7-dOIU-eATHXCvJbSeih6Vt54oygtkXKskQdzCll3o,1100
|
|
152
|
-
redis_benchmarks_specification/test-suites/my-new-test.yml,sha256=qrci_94QV9bPUJe0cL8lsUaQmX5Woz-jT-pDF0629AE,423
|
|
153
152
|
redis_benchmarks_specification/test-suites/string/memtier_benchmark-100Kkeys-load-string200c-with-20KiB-values-pipeline-10.yml,sha256=Rcv7Z3HOgbMG_V5p-FCDLlaOME6XSJO_kiNeIHwZ8lo,548
|
|
154
153
|
redis_benchmarks_specification/test-suites/string/memtier_benchmark-100Kkeys-load-string200c-with-20KiB-values.yml,sha256=bgW7wz1s8a3Qw_XS9gQDarY4lyNXncHBP4IsAV-crw4,522
|
|
155
154
|
redis_benchmarks_specification/test-suites/string/memtier_benchmark-100Kkeys-load-string50c-with-20KiB-values-pipeline-10.yml,sha256=hf1zgvfOXIgxOzwmNtJcPIR-qPO4hYl4G7OCL6UrHJQ,547
|
|
@@ -176,8 +175,8 @@ redis_benchmarks_specification/test-suites/string/memtier_benchmark-1Mkeys-strin
|
|
|
176
175
|
redis_benchmarks_specification/test-suites/string/memtier_benchmark-1Mkeys-string-setget50c-1KiB-pipeline-10.yml,sha256=Fy0-wIpVOPHJAHYmrdz_iWDBJ-e9jg_zSB8qrmjHb5U,744
|
|
177
176
|
redis_benchmarks_specification/test-suites/string/memtier_benchmark-1Mkeys-string-setget50c-1KiB.yml,sha256=aBVBEQ7yE1ZuC4-0PJOzlvnKVvt9fowXI0U1iaT0Dxo,719
|
|
178
177
|
redis_benchmarks_specification/test-suites/template.txt,sha256=qrci_94QV9bPUJe0cL8lsUaQmX5Woz-jT-pDF0629AE,423
|
|
179
|
-
redis_benchmarks_specification-0.1.
|
|
180
|
-
redis_benchmarks_specification-0.1.
|
|
181
|
-
redis_benchmarks_specification-0.1.
|
|
182
|
-
redis_benchmarks_specification-0.1.
|
|
183
|
-
redis_benchmarks_specification-0.1.
|
|
178
|
+
redis_benchmarks_specification-0.1.75.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
179
|
+
redis_benchmarks_specification-0.1.75.dist-info/METADATA,sha256=bkwujnJ3YWGfD4Mv_b_FJacuhJY78BebwJhMc0NZY4U,22533
|
|
180
|
+
redis_benchmarks_specification-0.1.75.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
181
|
+
redis_benchmarks_specification-0.1.75.dist-info/entry_points.txt,sha256=x5WBXCZsnDRTZxV7SBGmC65L2k-ygdDOxV8vuKN00Nk,715
|
|
182
|
+
redis_benchmarks_specification-0.1.75.dist-info/RECORD,,
|
|
@@ -1,16 +0,0 @@
|
|
|
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
|
-
|
|
File without changes
|
|
File without changes
|