File tree Expand file tree Collapse file tree 6 files changed +13
-10
lines changed
redis_benchmarks_specification
__self_contained_coordinator__ Expand file tree Collapse file tree 6 files changed +13
-10
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ def get_ts_metric_name(
76
76
else :
77
77
deployment_name = ""
78
78
ts_name = (
79
- "ci.benchmarks.redislabs /{by}/"
79
+ "ci.benchmarks.redis /{by}/"
80
80
"{triggering_env}/{github_org}/{github_repo}/"
81
81
"{test_name}/{build_variant_str}{running_platform_str}{deployment_type}{deployment_name}/{by_value}/{metric}" .format (
82
82
by = by ,
@@ -323,7 +323,7 @@ def from_metric_kv_to_timeserie(
323
323
}
324
324
325
325
original_ts_name = ts_name
326
- target_table_keyname = "target_tables:{triggering_env}:ci.benchmarks.redislabs /{break_by_key}/{break_by_str}/{tf_github_org}/{tf_github_repo}/{deployment_type}/{deployment_name}/{test_name}/{metric_name}" .format (
326
+ target_table_keyname = "target_tables:{triggering_env}:ci.benchmarks.redis /{break_by_key}/{break_by_str}/{tf_github_org}/{tf_github_repo}/{deployment_type}/{deployment_name}/{test_name}/{metric_name}" .format (
327
327
triggering_env = tf_triggering_env ,
328
328
break_by_key = break_by_key ,
329
329
break_by_str = break_by_str ,
@@ -679,7 +679,7 @@ def get_overall_dashboard_keynames(
679
679
if running_platform is not None :
680
680
running_platform_str = "/{}" .format (running_platform )
681
681
sprefix = (
682
- "ci.benchmarks.redislabs /"
682
+ "ci.benchmarks.redis /"
683
683
+ "{triggering_env}/{github_org}/{github_repo}" .format (
684
684
triggering_env = tf_triggering_env ,
685
685
github_org = tf_github_org ,
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ def get_overall_dashboard_keynames(
59
59
if running_platform is not None :
60
60
running_platform_str = "/{}" .format (running_platform )
61
61
sprefix = (
62
- "ci.benchmarks.redislabs /"
62
+ "ci.benchmarks.redis /"
63
63
+ "{triggering_env}/{github_org}/{github_repo}" .format (
64
64
triggering_env = tf_triggering_env ,
65
65
github_org = tf_github_org ,
@@ -128,7 +128,7 @@ def get_start_time_vars(start_time=None):
128
128
129
129
130
130
def get_project_compare_zsets (triggering_env , org , repo ):
131
- return "ci.benchmarks.redislabs /{}/{}/{}:compare:pull_requests:zset" .format (
131
+ return "ci.benchmarks.redis /{}/{}/{}:compare:pull_requests:zset" .format (
132
132
triggering_env , org , repo
133
133
)
134
134
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ def data_prepopulation_step(
23
23
port ,
24
24
temporary_dir ,
25
25
test_name ,
26
+ redis_password ,
26
27
):
27
28
# setup the benchmark
28
29
(
@@ -53,6 +54,7 @@ def data_prepopulation_step(
53
54
"localhost" ,
54
55
local_benchmark_output_filename ,
55
56
False ,
57
+ redis_password ,
56
58
)
57
59
58
60
logging .info (
Original file line number Diff line number Diff line change @@ -345,6 +345,7 @@ def process_self_contained_coordinator_stream(
345
345
redis_proc_start_port ,
346
346
temporary_dir ,
347
347
test_name ,
348
+ redis_password ,
348
349
)
349
350
350
351
logging .info (
Original file line number Diff line number Diff line change @@ -495,10 +495,8 @@ def process_self_contained_coordinator_stream(
495
495
docker_keep_env = False ,
496
496
restore_build_artifacts_default = True ,
497
497
args = None ,
498
+ redis_password = "redis_coordinator_password_2024" ,
498
499
):
499
- # Use a default password for coordinator Redis instances
500
- redis_password = "redis_coordinator_password_2024"
501
-
502
500
stream_id = "n/a"
503
501
overall_result = False
504
502
total_test_suite_runs = 0
@@ -936,6 +934,7 @@ def process_self_contained_coordinator_stream(
936
934
redis_proc_start_port ,
937
935
temporary_dir ,
938
936
test_name ,
937
+ redis_password ,
939
938
)
940
939
941
940
execute_init_commands (
@@ -1700,6 +1699,7 @@ def data_prepopulation_step(
1700
1699
port ,
1701
1700
temporary_dir ,
1702
1701
test_name ,
1702
+ redis_password ,
1703
1703
):
1704
1704
# setup the benchmark
1705
1705
(
Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ def main():
134
134
return
135
135
136
136
# Key for test cases
137
- testcases_key = "ci.benchmarks.redislabs /ci/redis/redis:testcases"
137
+ testcases_key = "ci.benchmarks.redis /ci/redis/redis:testcases"
138
138
139
139
# Retrieve test cases
140
140
testcases = rts .smembers (testcases_key )
@@ -147,7 +147,7 @@ def main():
147
147
for test_name in testcases :
148
148
# Construct the time series key
149
149
ts_key = (
150
- f"ci.benchmarks.redislabs /by.branch/ci/redis/redis/{ test_name } /"
150
+ f"ci.benchmarks.redis /by.branch/ci/redis/redis/{ test_name } /"
151
151
"gcc:8.5.0-amd64-debian-buster-default/"
152
152
"intel64-ubuntu22.04-redis-icx1/oss-standalone/unstable/"
153
153
"ALL_STATS.Totals.Ops/sec"
You can’t perform that action at this time.
0 commit comments