Skip to content

Commit

Permalink
fix(gradual): run post_prepare_cql_cmds
Browse files Browse the repository at this point in the history
Running of 'post_prepare_cql_cmds' is missed in the perf-regression-predefined-throughput-steps
test. It means that speculative retry was not disabled. It may have an impact on stability
of the test performance
  • Loading branch information
juliayakovlev authored and roydahan committed Oct 11, 2024
1 parent c6db2a4 commit c2b9f2c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions performance_regression_gradual_grow_throughput.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,10 @@ def _base_test_workflow(self, workload: Workload, test_name):
self.wait_no_compactions_running(n=400, sleep_time=120)
self.run_fstrim_on_all_db_nodes()

if post_prepare_cql_cmds := self.params.get('post_prepare_cql_cmds'):
self.log.debug("Execute post prepare queries: %s", post_prepare_cql_cmds)
self._run_cql_commands(post_prepare_cql_cmds)

self.run_gradual_increase_load(workload=workload,
stress_num=stress_num,
num_loaders=num_loaders,
Expand Down

0 comments on commit c2b9f2c

Please sign in to comment.