redis-benchmarks-specification 0.1.327__py3-none-any.whl → 0.1.329__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/__common__/runner.py +1 -7
- redis_benchmarks_specification/__common__/timeseries.py +42 -28
- redis_benchmarks_specification/__runner__/runner.py +4 -5
- {redis_benchmarks_specification-0.1.327.dist-info → redis_benchmarks_specification-0.1.329.dist-info}/METADATA +1 -1
- {redis_benchmarks_specification-0.1.327.dist-info → redis_benchmarks_specification-0.1.329.dist-info}/RECORD +8 -8
- {redis_benchmarks_specification-0.1.327.dist-info → redis_benchmarks_specification-0.1.329.dist-info}/LICENSE +0 -0
- {redis_benchmarks_specification-0.1.327.dist-info → redis_benchmarks_specification-0.1.329.dist-info}/WHEEL +0 -0
- {redis_benchmarks_specification-0.1.327.dist-info → redis_benchmarks_specification-0.1.329.dist-info}/entry_points.txt +0 -0
|
@@ -291,13 +291,7 @@ def export_redis_metrics(
|
|
|
291
291
|
metric_name,
|
|
292
292
|
metric_value,
|
|
293
293
|
) in overall_end_time_metrics.items():
|
|
294
|
-
tsname_metric = "{}/{}/{}/benchmark_end/{}/{}"
|
|
295
|
-
sprefix,
|
|
296
|
-
test_name,
|
|
297
|
-
by_variant,
|
|
298
|
-
setup_name,
|
|
299
|
-
metric_name,
|
|
300
|
-
)
|
|
294
|
+
tsname_metric = f"{sprefix}/{test_name}/{by_variant}/benchmark_end/{running_platform}/{setup_name}/{metric_name}"
|
|
301
295
|
|
|
302
296
|
logging.debug(
|
|
303
297
|
"Adding a redis server side metric collected at the end of benchmark."
|
|
@@ -838,34 +838,47 @@ def common_exporter_logic(
|
|
|
838
838
|
and artifact_version != ""
|
|
839
839
|
and artifact_version != "N/A"
|
|
840
840
|
):
|
|
841
|
-
#
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
841
|
+
# Check if version 255.255.255 should only be pushed for unstable branch
|
|
842
|
+
should_push_version = True
|
|
843
|
+
if artifact_version == "255.255.255":
|
|
844
|
+
if tf_github_branch != "unstable":
|
|
845
|
+
logging.info(
|
|
846
|
+
f"Skipping version 255.255.255 data push for branch '{tf_github_branch}' "
|
|
847
|
+
f"(only pushing for 'unstable' branch)"
|
|
848
|
+
)
|
|
849
|
+
should_push_version = False
|
|
850
|
+
else:
|
|
851
|
+
logging.info(f"Pushing version 255.255.255 data for unstable branch")
|
|
852
|
+
|
|
853
|
+
if should_push_version:
|
|
854
|
+
# extract per-version datapoints
|
|
855
|
+
total_hs_ts = len(per_hash_time_series_dict.keys())
|
|
856
|
+
logging.info(
|
|
857
|
+
f"Extending the by.hash {git_hash} timeseries ({total_hs_ts}) with version info {artifact_version}"
|
|
858
|
+
)
|
|
859
|
+
for hash_timeserie in per_hash_time_series_dict.values():
|
|
860
|
+
hash_timeserie["labels"]["version"] = artifact_version
|
|
861
|
+
(
|
|
862
|
+
_,
|
|
863
|
+
per_version_time_series_dict,
|
|
864
|
+
version_target_tables,
|
|
865
|
+
) = extract_perversion_timeseries_from_results(
|
|
866
|
+
used_ts,
|
|
867
|
+
metrics,
|
|
868
|
+
results_dict,
|
|
869
|
+
artifact_version,
|
|
870
|
+
tf_github_org,
|
|
871
|
+
tf_github_repo,
|
|
872
|
+
deployment_name,
|
|
873
|
+
deployment_type,
|
|
874
|
+
test_name,
|
|
875
|
+
tf_triggering_env,
|
|
876
|
+
metadata_tags,
|
|
877
|
+
build_variant_name,
|
|
878
|
+
running_platform,
|
|
879
|
+
testcase_metric_context_paths,
|
|
880
|
+
)
|
|
881
|
+
total_break_by_added += 1
|
|
869
882
|
else:
|
|
870
883
|
logging.warning(
|
|
871
884
|
"there was no git VERSION information to push data brokedown by VERSION"
|
|
@@ -1118,6 +1131,7 @@ def add_standardized_metric_byversion(
|
|
|
1118
1131
|
tf_triggering_env,
|
|
1119
1132
|
metadata_tags,
|
|
1120
1133
|
build_variant_name,
|
|
1134
|
+
running_platform,
|
|
1121
1135
|
)
|
|
1122
1136
|
labels["version"] = artifact_version
|
|
1123
1137
|
labels["deployment_name+version"] = "{} {}".format(
|
|
@@ -1546,13 +1546,12 @@ def process_self_contained_coordinator_stream(
|
|
|
1546
1546
|
# Create Redis connection - use URI if provided, otherwise use individual parameters
|
|
1547
1547
|
if hasattr(args, "uri") and args.uri:
|
|
1548
1548
|
# Use URI connection (redis-py handles URI parsing automatically)
|
|
1549
|
-
redis_params = {
|
|
1550
|
-
"ssl_cert_reqs": ssl_cert_reqs,
|
|
1551
|
-
"ssl_check_hostname": False,
|
|
1552
|
-
}
|
|
1549
|
+
redis_params = {}
|
|
1553
1550
|
|
|
1554
|
-
#
|
|
1551
|
+
# Only add SSL parameters if TLS is enabled
|
|
1555
1552
|
if tls_enabled:
|
|
1553
|
+
redis_params["ssl_cert_reqs"] = ssl_cert_reqs
|
|
1554
|
+
redis_params["ssl_check_hostname"] = False
|
|
1556
1555
|
if tls_key is not None and tls_key != "":
|
|
1557
1556
|
redis_params["ssl_keyfile"] = tls_key
|
|
1558
1557
|
if tls_cert is not None and tls_cert != "":
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: redis-benchmarks-specification
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.329
|
|
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
|
|
@@ -15,9 +15,9 @@ redis_benchmarks_specification/__common__/builder_schema.py,sha256=kfDpRIk7NkJrb
|
|
|
15
15
|
redis_benchmarks_specification/__common__/env.py,sha256=kvJ8Ll-fvI_Tc0vynrzUEr22TqnJizzvJ4Lu9RjNr_M,3119
|
|
16
16
|
redis_benchmarks_specification/__common__/github.py,sha256=9TZtnISsSgXTSAN_VQejo5YRPDPhlU0gjxgKGPw_sP8,10699
|
|
17
17
|
redis_benchmarks_specification/__common__/package.py,sha256=4uVt1BAZ999LV2rZkq--Tk6otAVIf9YR3g3KGeUpiW4,834
|
|
18
|
-
redis_benchmarks_specification/__common__/runner.py,sha256=
|
|
18
|
+
redis_benchmarks_specification/__common__/runner.py,sha256=3NhaIsuQfeOQq4nnKGG3-GVh0Y9005AtoDkZWICrbDY,16697
|
|
19
19
|
redis_benchmarks_specification/__common__/spec.py,sha256=D_SN48wg6NMthW_-OS1H5bydSDiuZpfd4WPPj7Vfwmc,5760
|
|
20
|
-
redis_benchmarks_specification/__common__/timeseries.py,sha256=
|
|
20
|
+
redis_benchmarks_specification/__common__/timeseries.py,sha256=vgNWtmtfUgHk0yHv1kU5obmZsxLDqXVidggtkGpukpk,53639
|
|
21
21
|
redis_benchmarks_specification/__compare__/__init__.py,sha256=DtBXRp0Q01XgCFmY-1OIePMyyYihVNAjZ1Y8zwqSDN0,101
|
|
22
22
|
redis_benchmarks_specification/__compare__/args.py,sha256=CNtA7pI9CJDTBJPGL2pNVfis7VDdxLautwRyka7oUCI,8911
|
|
23
23
|
redis_benchmarks_specification/__compare__/compare.py,sha256=_AbuV3FZxtUZIdq4qq24LNzPNIdtQQaqrk8bUjn9blk,84327
|
|
@@ -25,7 +25,7 @@ redis_benchmarks_specification/__init__.py,sha256=YQIEx2sLPPA0JR9OuCuMNMNtm-f_gq
|
|
|
25
25
|
redis_benchmarks_specification/__runner__/__init__.py,sha256=l-G1z-t6twUgi8QLueqoTQLvJmv3hJoEYskGm6H7L6M,83
|
|
26
26
|
redis_benchmarks_specification/__runner__/args.py,sha256=K3VGmBC0-9lSv9H6VDp0N-6FGMWvc_4H0pG_TOXN5u8,11312
|
|
27
27
|
redis_benchmarks_specification/__runner__/remote_profiling.py,sha256=R7obNQju8mmY9oKkcndjI4aAuxi84OCLhDSqqaYu1SU,18610
|
|
28
|
-
redis_benchmarks_specification/__runner__/runner.py,sha256=
|
|
28
|
+
redis_benchmarks_specification/__runner__/runner.py,sha256=z_xGRVcsk7dJTMiA0YrUIJASO-E-zN2m7NcgGbVnN9c,150939
|
|
29
29
|
redis_benchmarks_specification/__self_contained_coordinator__/__init__.py,sha256=l-G1z-t6twUgi8QLueqoTQLvJmv3hJoEYskGm6H7L6M,83
|
|
30
30
|
redis_benchmarks_specification/__self_contained_coordinator__/args.py,sha256=uxBjdQ78klvsVi6lOfGYQVaWIxc8OI-DwYKY16SgvCY,5952
|
|
31
31
|
redis_benchmarks_specification/__self_contained_coordinator__/artifacts.py,sha256=OVHqJzDgeSSRfUSiKp1ZTAVv14PvSbk-5yJsAAoUfpw,936
|
|
@@ -281,8 +281,8 @@ redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-session-st
|
|
|
281
281
|
redis_benchmarks_specification/test-suites/memtier_benchmark-playbook-session-storage-1k-sessions.yml,sha256=2egtIxPxCze2jlbAfgsk4v9JSQHNMoPLbDWFEW8olDg,7006
|
|
282
282
|
redis_benchmarks_specification/test-suites/template.txt,sha256=ezqGiRPOvuSDO0iG7GEf-AGXNfHbgXI89_G0RUEzL88,481
|
|
283
283
|
redis_benchmarks_specification/vector-search-test-suites/vector_db_benchmark_test.yml,sha256=PD7ow-k4Ll2BkhEC3aIqiaCZt8Hc4aJIp96Lw3J3mcI,791
|
|
284
|
-
redis_benchmarks_specification-0.1.
|
|
285
|
-
redis_benchmarks_specification-0.1.
|
|
286
|
-
redis_benchmarks_specification-0.1.
|
|
287
|
-
redis_benchmarks_specification-0.1.
|
|
288
|
-
redis_benchmarks_specification-0.1.
|
|
284
|
+
redis_benchmarks_specification-0.1.329.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
285
|
+
redis_benchmarks_specification-0.1.329.dist-info/METADATA,sha256=8vfnq4jXNBHelWeZoqjRt83P8GI2IzuGFipdJUJbEhQ,22768
|
|
286
|
+
redis_benchmarks_specification-0.1.329.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
287
|
+
redis_benchmarks_specification-0.1.329.dist-info/entry_points.txt,sha256=x5WBXCZsnDRTZxV7SBGmC65L2k-ygdDOxV8vuKN00Nk,715
|
|
288
|
+
redis_benchmarks_specification-0.1.329.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|