Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
6 changes: 6 additions & 0 deletions .changes/next-release/bugfix-AWSSDKforJavav2-8d76030.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"type": "bugfix",
"category": "AWS SDK for Java v2",
"contributor": "",
"description": "Increased the default chunk size for async trailer based checksum data transfer request from 16KB to 64KB"
}
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public final class HttpChecksumConstant {
/**
* Default chunk size for Async trailer based checksum data transfer*
*/
public static final int DEFAULT_ASYNC_CHUNK_SIZE = 16 * 1024;
public static final int DEFAULT_ASYNC_CHUNK_SIZE = 64 * 1024;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is only used by legacy code, right?

Copy link
Contributor Author

@Fred1155 Fred1155 Nov 5, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, the SRA path is already consistent with sync by this change: #6514 . Changed the wording in changelog.


private HttpChecksumConstant() {
}
Expand Down
Loading