From a5c997dcdd51d85737ae0e748c418a367128382f Mon Sep 17 00:00:00 2001 From: Lukasz Sojka Date: Wed, 18 Oct 2023 13:41:25 +0200 Subject: [PATCH] fix(microbenchmark): switch ES index Recently cpu settings were changed for microbenchmark tests: https://github.com/scylladb/scylla-pkg/pull/3618 Because of that, historical perf results are not relevant. Switch ES index so we make comparisons to results with the same CPU settings. --- sdcm/microbenchmarking.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdcm/microbenchmarking.py b/sdcm/microbenchmarking.py index b0faac825a..0168d6306e 100755 --- a/sdcm/microbenchmarking.py +++ b/sdcm/microbenchmarking.py @@ -43,7 +43,7 @@ LOGGER = logging.getLogger("microbenchmarking") LOGGER.setLevel(logging.DEBUG) -MICROBENCHMARK_INDEX_NAME = 'microbenchmarkingv2' +MICROBENCHMARK_INDEX_NAME = 'microbenchmarkingv3' @contextlib.contextmanager