redis-benchmarks-specification 0.1.318__py3-none-any.whl → 0.1.320__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 +15 -0
- redis_benchmarks_specification/__cli__/args.py +1 -1
- redis_benchmarks_specification/__cli__/cli.py +3 -0
- redis_benchmarks_specification/__self_contained_coordinator__/self_contained_coordinator.py +4 -2
- redis_benchmarks_specification/setups/builders/gcc:15.2.0-amd64-debian-buster-default.yml +1 -1
- redis_benchmarks_specification/setups/builders/gcc:15.2.0-arm64-debian-buster-default.yml +1 -1
- {redis_benchmarks_specification-0.1.318.dist-info → redis_benchmarks_specification-0.1.320.dist-info}/METADATA +1 -1
- {redis_benchmarks_specification-0.1.318.dist-info → redis_benchmarks_specification-0.1.320.dist-info}/RECORD +11 -11
- {redis_benchmarks_specification-0.1.318.dist-info → redis_benchmarks_specification-0.1.320.dist-info}/LICENSE +0 -0
- {redis_benchmarks_specification-0.1.318.dist-info → redis_benchmarks_specification-0.1.320.dist-info}/WHEEL +0 -0
- {redis_benchmarks_specification-0.1.318.dist-info → redis_benchmarks_specification-0.1.320.dist-info}/entry_points.txt +0 -0
|
@@ -255,6 +255,21 @@ def builder_process_stream(
|
|
|
255
255
|
docker_client = docker.from_env()
|
|
256
256
|
from pathlib import Path
|
|
257
257
|
|
|
258
|
+
build_request_arch = None
|
|
259
|
+
if b"arch" in testDetails:
|
|
260
|
+
build_request_arch = testDetails[b"arch"].decode()
|
|
261
|
+
elif b"build_arch" in testDetails:
|
|
262
|
+
build_request_arch = testDetails[b"build_arch"].decode()
|
|
263
|
+
else:
|
|
264
|
+
logging.info("No arch info found on the stream.")
|
|
265
|
+
if build_request_arch is not None and build_request_arch != arch:
|
|
266
|
+
logging.info(
|
|
267
|
+
"skipping build request given requested build arch {}!={}".format(
|
|
268
|
+
build_request_arch, arch
|
|
269
|
+
)
|
|
270
|
+
)
|
|
271
|
+
return previous_id, new_builds_count, build_stream_fields_arr
|
|
272
|
+
|
|
258
273
|
home = str(Path.home())
|
|
259
274
|
if b"git_hash" in testDetails:
|
|
260
275
|
git_hash = testDetails[b"git_hash"]
|
|
@@ -138,7 +138,7 @@ def spec_cli_args(parser):
|
|
|
138
138
|
parser.add_argument("--gh_repo", type=str, default="redis")
|
|
139
139
|
parser.add_argument("--server_name", type=str, default=None)
|
|
140
140
|
parser.add_argument("--run_image", type=str, default="redis")
|
|
141
|
-
parser.add_argument("--build_arch", type=str, default=
|
|
141
|
+
parser.add_argument("--build_arch", type=str, default=None)
|
|
142
142
|
parser.add_argument("--id", type=str, default="dockerhub")
|
|
143
143
|
parser.add_argument("--mnt_point", type=str, default="")
|
|
144
144
|
parser.add_argument("--trigger-unstable-commits", type=bool, default=True)
|
|
@@ -432,6 +432,9 @@ def trigger_tests_cli_command_logic(args, project_name, project_version):
|
|
|
432
432
|
commit_dict["tests_groups_regexp"] = tests_groups_regexp
|
|
433
433
|
commit_dict["github_org"] = args.gh_org
|
|
434
434
|
commit_dict["github_repo"] = args.gh_repo
|
|
435
|
+
if args.build_arch is not None:
|
|
436
|
+
commit_dict["build_arch"] = args.build_arch
|
|
437
|
+
commit_dict["arch"] = args.build_arch
|
|
435
438
|
if args.server_name is not None and args.server_name != "":
|
|
436
439
|
commit_dict["server_name"] = args.server_name
|
|
437
440
|
if args.build_artifacts != "":
|
|
@@ -115,12 +115,14 @@ def print_directory_logs(directory_path, description=""):
|
|
|
115
115
|
logging.warning(f"Directory {directory_path} does not exist")
|
|
116
116
|
return
|
|
117
117
|
|
|
118
|
-
logging.info(
|
|
118
|
+
logging.info(
|
|
119
|
+
f"Printing all .log files in {description} directory: {directory_path}"
|
|
120
|
+
)
|
|
119
121
|
try:
|
|
120
122
|
for root, dirs, files in os.walk(directory_path):
|
|
121
123
|
for file in files:
|
|
122
124
|
# Only process .log files
|
|
123
|
-
if not file.endswith(
|
|
125
|
+
if not file.endswith(".log"):
|
|
124
126
|
continue
|
|
125
127
|
|
|
126
128
|
file_path = os.path.join(root, file)
|
|
@@ -6,7 +6,7 @@ compiler: "gcc"
|
|
|
6
6
|
cpp_compiler: "g++"
|
|
7
7
|
kind: docker
|
|
8
8
|
build_image: gcc:15.2.0-bookworm
|
|
9
|
-
run_image:
|
|
9
|
+
run_image: gcc:15.2.0-bookworm
|
|
10
10
|
description: "Using GNU Compiler Containers (https://hub.docker.com/_/gcc?tab=description)
|
|
11
11
|
pre-configured environment with all the tools required to build with gcc."
|
|
12
12
|
metadata:
|
|
@@ -6,7 +6,7 @@ compiler: "gcc"
|
|
|
6
6
|
cpp_compiler: "g++"
|
|
7
7
|
kind: docker
|
|
8
8
|
build_image: gcc:15.2.0-bookworm
|
|
9
|
-
run_image:
|
|
9
|
+
run_image: gcc:15.2.0-bookworm
|
|
10
10
|
description: "Using GNU Compiler Containers (https://hub.docker.com/_/gcc?tab=description)
|
|
11
11
|
pre-configured environment with all the tools required to build with gcc."
|
|
12
12
|
metadata:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: redis-benchmarks-specification
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.320
|
|
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
|
|
@@ -4,11 +4,11 @@ redis_benchmarks_specification/__api__/api.py,sha256=k_CMICtMm1z8jY3hByaL0hIr_5v
|
|
|
4
4
|
redis_benchmarks_specification/__api__/app.py,sha256=JzQm84DjIVdfLbDO423BJbrds6gFzMbA0syRkHE_aUU,7063
|
|
5
5
|
redis_benchmarks_specification/__builder__/Readme.md,sha256=O6MV_J3OSgzW-ir2TbukP8Vhkm_LOzQJJndG1Cykqic,111
|
|
6
6
|
redis_benchmarks_specification/__builder__/__init__.py,sha256=l-G1z-t6twUgi8QLueqoTQLvJmv3hJoEYskGm6H7L6M,83
|
|
7
|
-
redis_benchmarks_specification/__builder__/builder.py,sha256=
|
|
7
|
+
redis_benchmarks_specification/__builder__/builder.py,sha256=86DQuqf9LhPl1_bpmQK2rkACBxYBz13Wu8fsAnKkm7g,29730
|
|
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=C0EdJbq5F6Td6kvEkzN5ZWMhWYuizV_tGzVhkPLKEi0,7207
|
|
11
|
+
redis_benchmarks_specification/__cli__/cli.py,sha256=iTjINQ-RV_q2ovq1neSoRCAggpGdeP5mX3_1aFxSScY,22001
|
|
12
12
|
redis_benchmarks_specification/__cli__/stats.py,sha256=8R6fsiR00Uqa-01_Yq0PegriZkiM313KjCpDv5PhEdM,28965
|
|
13
13
|
redis_benchmarks_specification/__common__/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
14
|
redis_benchmarks_specification/__common__/builder_schema.py,sha256=kfDpRIk7NkJrb5qj9jzsBhLVNO7K_W2Clumj4pxrkG8,5938
|
|
@@ -36,7 +36,7 @@ redis_benchmarks_specification/__self_contained_coordinator__/docker.py,sha256=0
|
|
|
36
36
|
redis_benchmarks_specification/__self_contained_coordinator__/post_processing.py,sha256=sVLKNnWdAqYY9DjVdqRC5tDaIrVSaI3Ca7w8-DQ-LRM,776
|
|
37
37
|
redis_benchmarks_specification/__self_contained_coordinator__/prepopulation.py,sha256=1UeFr2T1ZQBcHCSd4W1ZtaWgXyFPfjLyDi_DgDc1eTA,2957
|
|
38
38
|
redis_benchmarks_specification/__self_contained_coordinator__/runners.py,sha256=noRHn9leTfEm2fa1yHBHQd8TUGhFDoU86QQkHABnWSs,30073
|
|
39
|
-
redis_benchmarks_specification/__self_contained_coordinator__/self_contained_coordinator.py,sha256=
|
|
39
|
+
redis_benchmarks_specification/__self_contained_coordinator__/self_contained_coordinator.py,sha256=QcQwPWvhS5C96NNkZFzi0xwMzwLzl6kxYmS1sWTU7s0,82532
|
|
40
40
|
redis_benchmarks_specification/__setups__/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
41
|
redis_benchmarks_specification/__setups__/topologies.py,sha256=xQ1IJkcTji_ZjLiJd3vOxZpvbNtBLZw9cPkw5hGJKHU,481
|
|
42
42
|
redis_benchmarks_specification/__spec__/__init__.py,sha256=l-G1z-t6twUgi8QLueqoTQLvJmv3hJoEYskGm6H7L6M,83
|
|
@@ -47,8 +47,8 @@ redis_benchmarks_specification/__watchdog__/args.py,sha256=azW3WkS9uqQJthtZt7TPG
|
|
|
47
47
|
redis_benchmarks_specification/__watchdog__/watchdog.py,sha256=MASAPSusxEOWCf_iVW4xIwwgFm_snLHJaI2XRiMlZhs,5832
|
|
48
48
|
redis_benchmarks_specification/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
49
49
|
redis_benchmarks_specification/commands/commands.py,sha256=hJbKkGzAFt_l40fJyQLfBKY_zgCp-1j-siUFc6fQ71c,450
|
|
50
|
-
redis_benchmarks_specification/setups/builders/gcc:15.2.0-amd64-debian-buster-default.yml,sha256=
|
|
51
|
-
redis_benchmarks_specification/setups/builders/gcc:15.2.0-arm64-debian-buster-default.yml,sha256=
|
|
50
|
+
redis_benchmarks_specification/setups/builders/gcc:15.2.0-amd64-debian-buster-default.yml,sha256=UobsjPRRQALKNvAkOqvYJJs8HLrlG9AbfJwuIkLpwHU,528
|
|
51
|
+
redis_benchmarks_specification/setups/builders/gcc:15.2.0-arm64-debian-buster-default.yml,sha256=zexg-qwlrdjNEsJDigcwQgm-CluwtrWHPygvXzv0wwo,528
|
|
52
52
|
redis_benchmarks_specification/setups/platforms/aws-ec2-1node-c5.4xlarge.yml,sha256=l7HsjccpebwZXeutnt3SHSETw4iiRwQ9dCDXLOySSRQ,622
|
|
53
53
|
redis_benchmarks_specification/setups/topologies/topologies.yml,sha256=N2UOKA8tG_pLpaSFtn7WdUmDNYwxRyTv9Ln_PCOPTco,3261
|
|
54
54
|
redis_benchmarks_specification/test-suites/defaults.yml,sha256=EJHv9INdjoNVMOgHY8qo4IVCHfvXVz5sv7Vxtr3DAIE,1392
|
|
@@ -276,8 +276,8 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-session-st
|
|
|
276
276
|
redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-session-storage-1k-sessions.yml,sha256=2egtIxPxCze2jlbAfgsk4v9JSQHNMoPLbDWFEW8olDg,7006
|
|
277
277
|
redis_benchmarks_specification/test-suites/template.txt,sha256=ezqGiRPOvuSDO0iG7GEf-AGXNfHbgXI89_G0RUEzL88,481
|
|
278
278
|
redis_benchmarks_specification/vector-search-test-suites/vector_db_benchmark_test.yml,sha256=PD7ow-k4Ll2BkhEC3aIqiaCZt8Hc4aJIp96Lw3J3mcI,791
|
|
279
|
-
redis_benchmarks_specification-0.1.
|
|
280
|
-
redis_benchmarks_specification-0.1.
|
|
281
|
-
redis_benchmarks_specification-0.1.
|
|
282
|
-
redis_benchmarks_specification-0.1.
|
|
283
|
-
redis_benchmarks_specification-0.1.
|
|
279
|
+
redis_benchmarks_specification-0.1.320.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
280
|
+
redis_benchmarks_specification-0.1.320.dist-info/METADATA,sha256=dsa2e5C8eW97s-VDqOhHSoAX-I6U4qcqVBZ62Wmx-8M,22726
|
|
281
|
+
redis_benchmarks_specification-0.1.320.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
282
|
+
redis_benchmarks_specification-0.1.320.dist-info/entry_points.txt,sha256=x5WBXCZsnDRTZxV7SBGmC65L2k-ygdDOxV8vuKN00Nk,715
|
|
283
|
+
redis_benchmarks_specification-0.1.320.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|