-
Notifications
You must be signed in to change notification settings - Fork 9.2k
HADOOP-19654. Upgrade AWS SDK to 2.35.4 #7882
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
steveloughran
merged 29 commits into
apache:trunk
from
steveloughran:s3/HADOOP-19654-aws-sdk-2.32
Nov 6, 2025
Merged
Changes from 28 commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
43e0967
HADOOP-19654. Upgrade AWS SDK to 2.32.23
steveloughran 78bd12d
HADOOP-19654. Restore support for third party stores.
steveloughran a7f022a
HADOOP-19592. S3A: S3 Express bucket failure of conditional overwrite…
steveloughran befeb67
HADOOP-19003. S3A Assume role tests failing against S3Express stores
steveloughran 7eeb4b5
HADOOP-19654. create session now always seems to get called
steveloughran 80813ad
HADOOP-19654. S3A: AWS SDK to 2.33.8
steveloughran e7bd5a5
HADOOP-19654. SDK update: ITestAWSStatisticCollection fails against s…
steveloughran 0ff9c0b
HADOOP-19654. review comments
steveloughran f21c0f8
HADOOP-19654. S3A: options to disable checksum calculation & restore …
steveloughran 44dc59b
HADOOP-19654. third party stores
steveloughran 9d6589c
HADOOP-19654. third party stores and signing
steveloughran 79b52bf
HADOOP-19654. third party stores and MPU commit retries
steveloughran 0ff1bde
HADOOP-19654. SDK upgrade: S3 Express
steveloughran a119205
Cloudstore: etag command; new version
steveloughran c3a58aa
HADOOP-19654. Tests to skip as appropriate when MPU is disabled.
steveloughran 7fec7de
HADOOP-19654. Tests to skip as appropriate when MPU is disabled.
steveloughran 8d6c619
HADOOP-19654. Yetus
steveloughran 5fd7aa8
HADOOP-19654. get the right config for behaviour
steveloughran 11e8068
HADOOP-19654. remove intermittent and needless assertion failure
steveloughran 71133a5
HADOOP-19654. Upgrade SDK version to 2.35.4
steveloughran 5fa39b2
HADOOP-19654. Transient test failure due to cached fs not having perf…
steveloughran f1f85a3
HADOOP-19654. SDK checksum stabilisation
steveloughran b0217b1
HADOOP-19654. SDK checksum doc/javadoc tuning
steveloughran 8e67003
HADOOP-19654. Fix AbstractContractUnbufferTest to read reliably
steveloughran 6416c20
HADOOP-19654. yetus feedback on checksum changes
steveloughran f624ea8
HADOOP-19654. cleanup
steveloughran 9a5ee3e
HADOOP-19654. ITestConnectionTimeouts requires classic stream.
steveloughran ff3fade
HADOOP-19654. Can't use path access and FIPS endpoint (documented; no…
steveloughran 8c58e94
HADOOP-19654. SDK update: doc comments
steveloughran File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was thinking if we could have some docs around the WHEN_SUPPORTED and WHEN_REQUIRED
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Its confusing. What happens if it is required but not supported.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
some operations require checksums (bulk delete?) and everything which implemented them has had to expect checksums. This new generation option, "when supported" is what broke things as it really means "generate checksums on all requests". There are only two values in the enum, so the sdk always has to choose one.
when_supported
I think having a generation "true/false" is simpler for people to understand than the nuances of when_supported vs when_required.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes it should be just true/false. @ahmarsuhail could you please talk to the SDK team for this. Why they did this way?