databend-perf icon indicating copy to clipboard operation
databend-perf copied to clipboard

pre-run the Queries before loop 10 times

Open flaneur2020 opened this issue 2 years ago • 0 comments

current order:

for 10 times {
  Q1
}
for 10 times {
  Q2
}
...
for 10 times{
  Q15
}

when got stable error on one query, it wasted lots of time on rerun the ci jobs.

we can consider add a seperate job before the 10 times perf executions:

  Q1
  Q2
  Q3
  ..
  Q15

thus we can fail retry the single job quickly.

flaneur2020 avatar Aug 23 '22 04:08 flaneur2020