This is an automated email from the ASF dual-hosted git repository. pingtimeout pushed a commit to branch benchmarks-ppc in repository https://gitbox.apache.org/repos/asf/polaris-tools.git
commit 9572e6600ca8bde7176fb5fb44f4f7abffdd98ea Author: Pierre Laporte <pie...@pingtimeout.fr> AuthorDate: Thu Jun 5 11:25:44 2025 +0200 Increase number of retries to be sure all entity creations succeed --- .../apache/polaris/benchmarks/simulations/CreateTreeDataset.scala | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/benchmarks/src/gatling/scala/org/apache/polaris/benchmarks/simulations/CreateTreeDataset.scala b/benchmarks/src/gatling/scala/org/apache/polaris/benchmarks/simulations/CreateTreeDataset.scala index 8fbc0e7..65c8631 100644 --- a/benchmarks/src/gatling/scala/org/apache/polaris/benchmarks/simulations/CreateTreeDataset.scala +++ b/benchmarks/src/gatling/scala/org/apache/polaris/benchmarks/simulations/CreateTreeDataset.scala @@ -55,10 +55,10 @@ class CreateTreeDataset extends Simulation { private val accessToken: AtomicReference[String] = new AtomicReference() private val shouldRefreshToken: AtomicBoolean = new AtomicBoolean(true) - private val authenticationActions = AuthenticationActions(cp, accessToken, 5, Set(500)) - private val namespaceActions = NamespaceActions(dp, wp, accessToken, 5, Set(500)) - private val tableActions = TableActions(dp, wp, accessToken, 5, Set(500)) - private val viewActions = ViewActions(dp, wp, accessToken, 5, Set(500)) + private val authenticationActions = AuthenticationActions(cp, accessToken, 50, Set(500)) + private val namespaceActions = NamespaceActions(dp, wp, accessToken, 50, Set(500)) + private val tableActions = TableActions(dp, wp, accessToken, 50, Set(500)) + private val viewActions = ViewActions(dp, wp, accessToken, 50, Set(500)) private val createdCatalogs = new AtomicInteger() private val createdNamespaces = new AtomicInteger()