Skip to content

Commit

Permalink
Increase S3 connection pool size for Delta Lake tests
Browse files Browse the repository at this point in the history
  • Loading branch information
electrum committed Jun 7, 2023
1 parent 9336c2b commit 7a8e65a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ protected Map<String, String> deltaStorageConfiguration()
.put("s3.endpoint", hiveMinioDataLake.getMinio().getMinioAddress())
.put("s3.path-style-access", "true")
.put("s3.streaming.part-size", "5MB") // minimize memory usage
.put("s3.max-connections", "2") // verify no leaks
.put("s3.max-connections", "4") // verify no leaks
.put("delta.enable-non-concurrent-writes", "true")
.buildOrThrow();
}
Expand Down

0 comments on commit 7a8e65a

Please sign in to comment.