Skip to content

Commit dcaf039

Browse files
committed
increase default chunk size
1 parent 25446c7 commit dcaf039

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "bugfix",
3+
"category": "AWS SDK for Java v2",
4+
"contributor": "",
5+
"description": "Increased the default chunk size for async trailer based checksum data transfer request from 16KB to 64KB"
6+
}

core/sdk-core/src/main/java/software/amazon/awssdk/core/HttpChecksumConstant.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public final class HttpChecksumConstant {
4242
/**
4343
* Default chunk size for Async trailer based checksum data transfer*
4444
*/
45-
public static final int DEFAULT_ASYNC_CHUNK_SIZE = 16 * 1024;
45+
public static final int DEFAULT_ASYNC_CHUNK_SIZE = 64 * 1024;
4646

4747
private HttpChecksumConstant() {
4848
}

0 commit comments

Comments
 (0)