Skip to content

Commit c577c49

Browse files
Added dockerhub build-variants. Added by.hash (we have by.branch, by.tag, by.hash now)
1 parent e32649c commit c577c49

File tree

105 files changed

+1698
-38
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

105 files changed

+1698
-38
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "redis-benchmarks-specification"
3-
version = "0.1.209"
3+
version = "0.1.210"
44
description = "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."
55
authors = ["filipecosta90 <[email protected]>","Redis Performance Group <[email protected]>"]
66
readme = "Readme.md"

redis_benchmarks_specification/__common__/runner.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,12 @@
66

77
import redis
88
from redisbench_admin.run.metrics import collect_redis_metrics
9-
from redisbench_admin.run.redistimeseries import timeseries_test_sucess_flow
109
from redisbench_admin.run_remote.run_remote import export_redis_metrics
1110

11+
from redis_benchmarks_specification.__common__.timeseries import (
12+
timeseries_test_sucess_flow,
13+
)
14+
1215

1316
def execute_init_commands(benchmark_config, r, dbconfig_keyname="dbconfig"):
1417
cmds = None
@@ -144,6 +147,7 @@ def exporter_datasink_common(
144147
tf_triggering_env,
145148
topology_spec_name,
146149
default_metrics=None,
150+
git_hash=None,
147151
):
148152
logging.info("Using datapoint_time_ms: {}".format(datapoint_time_ms))
149153
timeseries_test_sucess_flow(
@@ -167,6 +171,7 @@ def exporter_datasink_common(
167171
metadata,
168172
build_variant_name,
169173
running_platform,
174+
git_hash,
170175
)
171176
logging.info("Collecting memory metrics")
172177
(_, _, overall_end_time_metrics,) = collect_redis_metrics(

0 commit comments

Comments
 (0)