Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/src/main/sphinx/object-storage/file-system-s3.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ support:
`CUSTOMER`.
* - `s3.streaming.part-size`
- Part size for S3 streaming upload. Values between `5MB` and `256MB` are
valid. Defaults to `16MB`.
valid. Defaults to `32MB`.
* - `s3.requester-pays`
- Switch to activate billing transfer cost to the requester. Defaults to
`false`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public static RetryStrategy getRetryStrategy(RetryMode retryMode)
private String sseKmsKeyId;
private String sseCustomerKey;
private boolean useWebIdentityTokenCredentialsProvider;
private DataSize streamingPartSize = DataSize.of(16, MEGABYTE);
private DataSize streamingPartSize = DataSize.of(32, MEGABYTE);
private boolean requesterPays;
private Integer maxConnections = 500;
private Duration connectionTtl;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public void testDefaults()
.setSseKmsKeyId(null)
.setUseWebIdentityTokenCredentialsProvider(false)
.setSseCustomerKey(null)
.setStreamingPartSize(DataSize.of(16, MEGABYTE))
.setStreamingPartSize(DataSize.of(32, MEGABYTE))
.setRequesterPays(false)
.setMaxConnections(500)
.setConnectionTtl(null)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public class HiveS3Config
private boolean skipGlacierObjects;
private boolean requesterPaysEnabled;
private boolean s3StreamingUploadEnabled = true;
private DataSize s3StreamingPartSize = DataSize.of(16, MEGABYTE);
private DataSize s3StreamingPartSize = DataSize.of(32, MEGABYTE);
private String s3proxyHost;
private Integer s3proxyPort = -1;
private TrinoS3Protocol s3ProxyProtocol = TrinoS3Protocol.HTTPS;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public void testDefaults()
.setSkipGlacierObjects(false)
.setRequesterPaysEnabled(false)
.setS3StreamingUploadEnabled(true)
.setS3StreamingPartSize(DataSize.of(16, Unit.MEGABYTE))
.setS3StreamingPartSize(DataSize.of(32, Unit.MEGABYTE))
.setS3ProxyHost(null)
.setS3ProxyPort(-1)
.setS3ProxyProtocol("HTTPS")
Expand Down