From a5aebddb9b1cb48571af7eb42dca563b78c34f8f Mon Sep 17 00:00:00 2001 From: Julia Yakovlev Date: Sun, 13 Oct 2024 21:17:07 +0300 Subject: [PATCH] fix(gradulal): do not get compaction from default Test keyspace should be created with default compaction strategy as in all performance tests. --- performance_regression_gradual_grow_throughput.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/performance_regression_gradual_grow_throughput.py b/performance_regression_gradual_grow_throughput.py index 87cd175968..1e2c9d98bd 100644 --- a/performance_regression_gradual_grow_throughput.py +++ b/performance_regression_gradual_grow_throughput.py @@ -115,9 +115,8 @@ def _base_test_workflow(self, workload: Workload, test_name): num_loaders = len(self.loaders.nodes) self.run_fstrim_on_all_db_nodes() # run a write workload as a preparation - compaction_strategy = self.params.get('compaction_strategy') if workload.preload_data: - self.preload_data(compaction_strategy=compaction_strategy) + self.preload_data() self.wait_no_compactions_running(n=400, sleep_time=120) self.run_fstrim_on_all_db_nodes()