We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 683cda5 + 0748c88 commit a56d26eCopy full SHA for a56d26e
redis_benchmarks_specification/__runner__/runner.py
@@ -2885,6 +2885,14 @@ def delete_temporary_files(
2885
)
2886
results_dict = json.loads(client_container_stdout)
2887
2888
+ # Write aggregated results to file so it can be preserved
2889
+ full_result_path = local_benchmark_output_filename
2890
+ with open(full_result_path, "w") as json_file:
2891
+ json.dump(results_dict, json_file, indent=2)
2892
+ logging.info(
2893
+ f"Wrote aggregated multi-client results to {full_result_path}"
2894
+ )
2895
+
2896
# Validate benchmark metrics
2897
is_valid, validation_error = validate_benchmark_metrics(
2898
results_dict, test_name, benchmark_config, default_metrics
0 commit comments