Skip to content

Commit

Permalink
Fix TestIcebergInsert.testIcebergConcurrentInsert timeout on CI
Browse files Browse the repository at this point in the history
The test seems dominated by `finishInsert` time. since
bf04a72 `finishInsert` is slower as we
commit twice (first committing data then statistics).
  • Loading branch information
findepi committed Mar 24, 2023
1 parent 0f180a9 commit fe46195
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public void testIcebergConcurrentInsert()
throws Exception
{
int threads = 3;
int insertsPerThread = 7;
int insertsPerThread = 4;

String tableName = "iceberg.default.test_insert_concurrent_" + randomNameSuffix();
onTrino().executeQuery("CREATE TABLE " + tableName + "(a bigint)");
Expand Down

0 comments on commit fe46195

Please sign in to comment.