You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is presently not possible to run two instances of benchmark-runner concurrently. While it would not be appropriate to do that when running benchmarks, for development or testing purposes it should be possible. Example use cases:
Run CI pipeline on multiple PRs concurrently on one cluster.
Allow functional testing concurrently with functional or PR CI runs on one cluster.
Currently there are two reasons why that can't be done:
The benchmark-operator is cleaned up with each run, and it currently always resides in one namespace (benchmark-operator).
The database pods for hammerdb run in fixed namespaces.
The second problem should not be difficult to solve, as we control those namespaces. The first one requires one of two things:
Whether it's possible to run two concurrent instances of the benchmark-operator in different namespaces.
Whether it's possible (or safe) to run the benchmark-operator without cleaning up.
The text was updated successfully, but these errors were encountered:
It is presently not possible to run two instances of benchmark-runner concurrently. While it would not be appropriate to do that when running benchmarks, for development or testing purposes it should be possible. Example use cases:
Currently there are two reasons why that can't be done:
benchmark-operator
).The second problem should not be difficult to solve, as we control those namespaces. The first one requires one of two things:
The text was updated successfully, but these errors were encountered: