Skip to content

Commit e52d1c4

Browse files
Fix: remote results file should not be the same across variations (#150)
* [add] Enabled logfile on remote setups. Fetching remote logfile in case of errors * [add] remote results file should not be the same across variations
1 parent 9783489 commit e52d1c4

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

redisbench_admin/run_remote/run_remote.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@
7373
remote_dataset_file = "/tmp/dump.rdb"
7474
remote_module_file = "/tmp/module.so"
7575
local_results_file = "./benchmark-result.out"
76-
remote_results_file = "/tmp/benchmark-result.out"
7776
private_key = "/tmp/benchmarks.redislabs.pem"
7877
min_recommended_benchmark_duration = 60
7978

@@ -365,6 +364,10 @@ def run_remote_command_logic(args):
365364
try:
366365
_, _, testcase_start_time_str = get_start_time_vars()
367366
logname = "{}_{}.log".format(test_name, testcase_start_time_str)
367+
remote_results_file = "/tmp/benchmark-result-{}_{}.out".format(
368+
test_name, testcase_start_time_str
369+
)
370+
368371
(
369372
redis_configuration_parameters,
370373
dataset_load_timeout_secs,

0 commit comments

Comments
 (0)