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 5155283e9cf76b3b9ac6900ef1294ddfdc51cd77
Author: Pierre Laporte <pie...@pingtimeout.fr>
AuthorDate: Mon May 12 14:48:38 2025 +0200

    Retry all creations in case of HTTP 500 to ensure dataset is created fully
    
    Just like other entities, it is possible that high concurrency results
    in HTTP 500 errors for tables and views. In this case, we should retry
    the creation.
---
 .../org/apache/polaris/benchmarks/simulations/CreateTreeDataset.scala | 4 ++--
 1 file changed, 2 insertions(+), 2 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 3c26623..6f39a09 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
@@ -58,8 +58,8 @@ class CreateTreeDataset extends Simulation {
   private val authenticationActions = AuthenticationActions(cp, accessToken, 
5, Set(500))
   private val catalogActions = CatalogActions(dp, accessToken, 0, Set())
   private val namespaceActions = NamespaceActions(dp, wp, accessToken, 5, 
Set(500))
-  private val tableActions = TableActions(dp, wp, accessToken, 0, Set())
-  private val viewActions = ViewActions(dp, wp, accessToken, 0, Set())
+  private val tableActions = TableActions(dp, wp, accessToken, 5, Set(500))
+  private val viewActions = ViewActions(dp, wp, accessToken, 5, Set(500))
 
   private val createdCatalogs = new AtomicInteger()
   private val createdNamespaces = new AtomicInteger()

Reply via email to