Skip to content

Conversation

@steveloughran
Copy link
Contributor

@steveloughran steveloughran commented Mar 7, 2025

Upgrade to 2.29.52 -the last version compatible with third party stores until there are fixes in the AWS SDK or workarounds added in the S3A connector

How was this patch tested?

Regression testing in progress

For code changes:

  • Does the title or this PR starts with the corresponding JIRA issue id (e.g. 'HADOOP-17799. Your PR title ...')?
  • Object storage: have the integration tests been executed and the endpoint declared according to the connector-specific documentation?
  • If adding new dependencies to the code, are these dependencies licensed in a way that is compatible for inclusion under ASF 2.0?
  • If applicable, have you updated the LICENSE, LICENSE-binary, NOTICE-binary files?

@steveloughran
Copy link
Contributor Author

testing in progress; also writing a new, expanded and very strict doc on qualifying a release, based on the experience of recent upgrades.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Logfile Comment
+0 🆗 reexec 0m 0s Docker mode activated.
-1 ❌ patch 0m 16s #7479 does not apply to trunk. Rebase required? Wrong Branch? See https://cwiki.apache.org/confluence/display/HADOOP/How+To+Contribute for help.
Subsystem Report/Notes
GITHUB PR #7479
Console output https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-7479/1/console
versions git=2.34.1
Powered by Apache Yetus 0.14.0 https://yetus.apache.org

This message was automatically generated.

@steveloughran
Copy link
Contributor Author

Test failures with the 2.30.27

The issue of HADOOP-19272 #7048; S3A: AWS SDK 2.25.53 warnings logged about transfer manager not using CRT client has been fixed

java.lang.AssertionError: 
[LOG output does not contain the forbidden text. Has the SDK been fixed?] 
Expecting:
 <"">
to contain:
 <"The provided S3AsyncClient is an instance of MultipartS3AsyncClient"> 
        at org.apache.hadoop.fs.s3a.impl.ITestAwsSdkWorkarounds.testNoisyLogging(ITestAwsSdkWorkarounds.java:100)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:498)
        at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59)
        at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
        at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56)
        at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
        at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
        at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27)
        at org.junit.rules.TestWatcher$1.evaluate(TestWatcher.java:61)
        at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:299)
        at org.junit.internal.runners.statements.FailOnTimeout$CallableStatement.call(FailOnTimeout.java:293)
        at java.util.concurrent.FutureTask.run(FutureTask.java:266)
        at java.lang.Thread.run(Thread.java:750)

this test can be culled

@steveloughran steveloughran force-pushed the s3/HADOOP-19485-SDK-upgrade branch from 8639127 to 9720b02 Compare March 7, 2025 10:59
@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Logfile Comment
+0 🆗 reexec 0m 0s Docker mode activated.
-1 ❌ patch 0m 16s #7479 does not apply to trunk. Rebase required? Wrong Branch? See https://cwiki.apache.org/confluence/display/HADOOP/How+To+Contribute for help.
Subsystem Report/Notes
GITHUB PR #7479
Console output https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-7479/2/console
versions git=2.34.1
Powered by Apache Yetus 0.14.0 https://yetus.apache.org

This message was automatically generated.

@steveloughran
Copy link
Contributor Author

steveloughran commented Mar 7, 2025

ITestS3AEndpointRegion failures are probably caused by aws/aws-sdk-java-v2#5562 or a related change. Key:the execution context attribute AwsExecutionAttribute.ENDPOINT_OVERRIDDEN is now false when not true, rather than unset/null.
This is a test-only regression.

@steveloughran
Copy link
Contributor Author

Testing with third party stores shows the MD-5 thing is there. Also shows that no SDK testing is ever performed against third-party stores, which is something to consider

       org.apache.hadoop.fs.s3a.AWSBadRequestException: Remove S3 Files on s3a://dellecs/job-00-fork-0003/test/test: software.amazon.awssdk.services.s3.model.InvalidRequestException: Missing required header for this request: Content-MD5 (Service: S3, Status Code: 400, Request ID: 0c07c879:1953935cbee:1a45b:1d85, Extended Request ID: 85e1d41b57b608d4e58222b552dea52902e93b05a12f63f54730ae77769df8d1) (SDK Attempt Count: 1):InvalidRequest: Missing required header for this request: Content-MD5 (Service: S3, Status Code: 400, Request ID: 0c07c879:1953935cbee:1a45b:1d85, Extended Request ID: 85e1d41b57b608d4e58222b552dea52902e93b05a12f63f54730ae77769df8d1) (SDK Attempt Count: 1)

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Logfile Comment
+0 🆗 reexec 0m 0s Docker mode activated.
-1 ❌ patch 0m 15s #7479 does not apply to trunk. Rebase required? Wrong Branch? See https://cwiki.apache.org/confluence/display/HADOOP/How+To+Contribute for help.
Subsystem Report/Notes
GITHUB PR #7479
Console output https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-7479/3/console
versions git=2.34.1
Powered by Apache Yetus 0.14.0 https://yetus.apache.org

This message was automatically generated.

@steveloughran steveloughran force-pushed the s3/HADOOP-19485-SDK-upgrade branch from b8314e3 to 288fd09 Compare March 7, 2025 19:38
* How far in advance of credential expiry must IAM credentials be refreshed.
* See HADOOP-19181. S3A: IAMCredentialsProvider throttling results in AWS auth failures
*/
public static final Duration TIME_BEFORE_EXPIRY = Duration.ofMinutes(1);
Copy link
Contributor

Choose a reason for hiding this comment

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

Is it good to have this configurable ?

public static final String EXCEPTION_THROWN_BY_INTERCEPTOR = "Exception thrown by interceptor";

/**
* Text to include in asseertions
Copy link
Contributor

Choose a reason for hiding this comment

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

nit: assertions

@shameersss1
Copy link
Contributor

@steveloughran - I can help you test with S3 express storage bucket for this change. Please do let me know once everything is ready

@steveloughran
Copy link
Contributor Author

going to have to go with a 2.29 release; those 2.30 releases brake 3rd party stores and I'm not going to get into the work of trying to fix that before a release. And although the stance of SDK dev team is

The AWS SDKs and CLI are designed for usage with official AWS services.
We may introduce and enable new features by default, such as these new default integrity protections,
prior to them being supported or otherwise handled by third-party service implementations.

My stance is: they just broke everything. Unless they want downstream apps to stay on 2.29 for a long time -they need to restore the old behaviour. I've tried to get their recommended workaround in -but it doesn't fix the tests failures.

@steveloughran steveloughran force-pushed the s3/HADOOP-19485-SDK-upgrade branch from 288fd09 to 1900c64 Compare March 10, 2025 15:59
@apache apache deleted a comment from hadoop-yetus Mar 10, 2025
@steveloughran
Copy link
Contributor Author

latest PR updates to 2.29.52; avoids all the new checksum stuff -but also means that IAM throttling fix isn't in either. Pulled that out.

chain now has

  • sdk update
  • test regressions
  • improve sdk logging
  • more tests skipping on non-AWS stores.

That's all.

@steveloughran
Copy link
Contributor Author

Output of TestAWSV2SDK indicates unshaded classes in bundle.jar including reactivestreams.
The software/amazon are a false negative; test should be updated

025-03-10 16:50:46,429 [JUnit-testShadedClasses] WARN  sdk.TestAWSV2SDK (TestAWSV2SDK.java:testShadedClasses(68)) - Unshaded Classes Found :33
2025-03-10 16:50:46,430 [JUnit-testShadedClasses] WARN  sdk.TestAWSV2SDK (TestAWSV2SDK.java:testShadedClasses(69)) - List of unshaded classes:[org/reactivestreams/FlowAdapters$FlowPublisherFromReactive.class, org/reactivestreams/FlowAdapters$FlowToReactiveProcessor.class, org/reactivestreams/FlowAdapters$FlowToReactiveSubscriber.class, org/reactivestreams/FlowAdapters$FlowToReactiveSubscription.class, org/reactivestreams/FlowAdapters$ReactivePublisherFromFlow.class, org/reactivestreams/FlowAdapters$ReactiveToFlowProcessor.class, org/reactivestreams/FlowAdapters$ReactiveToFlowSubscriber.class, org/reactivestreams/FlowAdapters$ReactiveToFlowSubscription.class, org/reactivestreams/FlowAdapters.class, org/reactivestreams/Processor.class, org/reactivestreams/Publisher.class, org/reactivestreams/Subscriber.class, org/reactivestreams/Subscription.class, software/amazon/eventstream/Checksums.class, software/amazon/eventstream/HeaderValue$IntegerValue.class, software/amazon/eventstream/HeaderValue$BooleanValue.class, software/amazon/eventstream/MessageDecoder.class, software/amazon/eventstream/HeaderValue$ByteValue.class, software/amazon/eventstream/Header.class, software/amazon/eventstream/HeaderValue$1.class, software/amazon/eventstream/HeaderType.class, software/amazon/eventstream/HeaderValue$TimestampValue.class, software/amazon/eventstream/HeaderValue$LongValue.class, software/amazon/eventstream/Utils.class, software/amazon/eventstream/HeaderValue$ShortValue.class, software/amazon/eventstream/MessageBuilder.class, software/amazon/eventstream/HeaderValue$StringValue.class, software/amazon/eventstream/HeaderValue$ByteArrayValue.class, software/amazon/eventstream/Prelude.class, software/amazon/eventstream/HeaderValue.class, software/amazon/eventstream/HeaderValue$UuidValue.class, software/amazon/eventstream/Message.class, META-INF/versions/9/module-info.class]

looking at the output of a branch-3.4 release they are not new; this not a regression,
just unwelcome (and how did this get in?)

2025-03-10 16:54:11,588 [JUnit-testShadedClasses] WARN  sdk.TestAWSV2SDK (TestAWSV2SDK.java:testShadedClasses(68)) - Unshaded Classes Found :32
2025-03-10 16:54:11,588 [JUnit-testShadedClasses] WARN  sdk.TestAWSV2SDK (TestAWSV2SDK.java:testShadedClasses(69)) - List of unshaded classes:[org/reactivestreams/FlowAdapters$FlowPublisherFromReactive.class, org/reactivestreams/FlowAdapters$FlowToReactiveProcessor.class, org/reactivestreams/FlowAdapters$FlowToReactiveSubscriber.class, org/reactivestreams/FlowAdapters$FlowToReactiveSubscription.class, org/reactivestreams/FlowAdapters$ReactivePublisherFromFlow.class, org/reactivestreams/FlowAdapters$ReactiveToFlowProcessor.class, org/reactivestreams/FlowAdapters$ReactiveToFlowSubscriber.class, org/reactivestreams/FlowAdapters$ReactiveToFlowSubscription.class, org/reactivestreams/FlowAdapters.class, org/reactivestreams/Processor.class, org/reactivestreams/Publisher.class, org/reactivestreams/Subscriber.class, org/reactivestreams/Subscription.class, software/amazon/eventstream/Checksums.class, software/amazon/eventstream/HeaderValue$IntegerValue.class, software/amazon/eventstream/HeaderValue$BooleanValue.class, software/amazon/eventstream/MessageDecoder.class, software/amazon/eventstream/HeaderValue$ByteValue.class, software/amazon/eventstream/Header.class, software/amazon/eventstream/HeaderValue$1.class, software/amazon/eventstream/HeaderType.class, software/amazon/eventstream/HeaderValue$TimestampValue.class, software/amazon/eventstream/HeaderValue$LongValue.class, software/amazon/eventstream/Utils.class, software/amazon/eventstream/HeaderValue$ShortValue.class, software/amazon/eventstream/MessageBuilder.class, software/amazon/eventstream/HeaderValue$StringValue.class, software/amazon/eventstream/HeaderValue$ByteArrayValue.class, software/amazon/eventstream/Prelude.class, software/amazon/eventstream/HeaderValue.class, software/amazon/eventstream/HeaderValue$UuidValue.class, software/amazon/eventstream/Message.class]

@steveloughran steveloughran force-pushed the s3/HADOOP-19485-SDK-upgrade branch from 1900c64 to fef747c Compare March 10, 2025 17:51
@steveloughran
Copy link
Contributor Author

@shameersss1 would love that s3-express stuff, and any manual testing you can do.

The ILoad* tests against that and s3standard from within aws infra would be good too -I'm now suspecting the SDK doesn't escalate a 503 from within a bulk delete response into a 503 for the whole request -so nothing is retrying it.

Here's my WiP design of a new test process, and yes it is strict and time consuming.

https://github.com/steveloughran/engineering-proposals/blob/trunk/qualifying-an-SDK-upgrade.md

I already think it's too many buckets to be realistically tested -but we do need that mix.

Please do as much as you can. And I'll add "seek help!" to the doc -not just to save time but to ensure even broader test setups.

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Logfile Comment
+0 🆗 reexec 0m 0s Docker mode activated.
-1 ❌ patch 0m 17s #7479 does not apply to trunk. Rebase required? Wrong Branch? See https://cwiki.apache.org/confluence/display/HADOOP/How+To+Contribute for help.
Subsystem Report/Notes
GITHUB PR #7479
Console output https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-7479/5/console
versions git=2.34.1
Powered by Apache Yetus 0.14.0 https://yetus.apache.org

This message was automatically generated.

@steveloughran
Copy link
Contributor Author

Will need to re-base.

Note that when I merge this, I will split it into three patches
-SDK update
-sdk internals logging
-code changes -most of which are test tuning, especially skipping more tests on third party stores. Guess what I've been doing 😀

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Logfile Comment
+0 🆗 reexec 0m 22s Docker mode activated.
_ Prechecks _
+1 💚 dupname 0m 0s No case conflicting files found.
+0 🆗 codespell 0m 1s codespell was not available.
+0 🆗 detsecrets 0m 1s detect-secrets was not available.
+0 🆗 xmllint 0m 1s xmllint was not available.
+0 🆗 markdownlint 0m 1s markdownlint was not available.
+0 🆗 shelldocs 0m 1s Shelldocs was not available.
+1 💚 @author 0m 0s The patch does not contain any @author tags.
+1 💚 test4tests 0m 0s The patch appears to include 8 new or modified test files.
_ trunk Compile Tests _
+0 🆗 mvndep 6m 15s Maven dependency ordering for branch
+1 💚 mvninstall 18m 29s trunk passed
+1 💚 compile 8m 18s trunk passed with JDK Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04
+1 💚 compile 7m 4s trunk passed with JDK Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
+1 💚 checkstyle 1m 56s trunk passed
+1 💚 mvnsite 11m 11s trunk passed
+1 💚 javadoc 5m 16s trunk passed with JDK Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04
+1 💚 javadoc 4m 53s trunk passed with JDK Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
+0 🆗 spotbugs 0m 14s branch/hadoop-project no spotbugs output file (spotbugsXml.xml)
+1 💚 shadedclient 36m 44s branch has no errors when building and testing our client artifacts.
-0 ⚠️ patch 36m 57s Used diff version of patch file. Binary files and potentially other changes not applied. Please rebase and squash commits if necessary.
_ Patch Compile Tests _
+0 🆗 mvndep 0m 41s Maven dependency ordering for patch
+1 💚 mvninstall 17m 30s the patch passed
+1 💚 compile 7m 55s the patch passed with JDK Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04
+1 💚 javac 7m 55s the patch passed
+1 💚 compile 7m 13s the patch passed with JDK Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
+1 💚 javac 7m 13s the patch passed
-1 ❌ blanks 0m 0s /blanks-eol.txt The patch has 1 line(s) that end in blanks. Use git apply --whitespace=fix <<patch_file>>. Refer https://git-scm.com/docs/git-apply
-0 ⚠️ checkstyle 1m 53s /results-checkstyle-root.txt root: The patch generated 9 new + 12 unchanged - 1 fixed = 21 total (was 13)
+1 💚 mvnsite 11m 36s the patch passed
+1 💚 shellcheck 0m 0s No new issues.
+1 💚 javadoc 5m 14s the patch passed with JDK Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04
+1 💚 javadoc 4m 59s the patch passed with JDK Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
+0 🆗 spotbugs 0m 14s hadoop-project has no data from spotbugs
-1 ❌ spotbugs 0m 48s /new-spotbugs-hadoop-tools_hadoop-aws.html hadoop-tools/hadoop-aws generated 1 new + 0 unchanged - 0 fixed = 1 total (was 0)
-1 ❌ spotbugs 17m 43s /new-spotbugs-root.html root generated 1 new + 0 unchanged - 0 fixed = 1 total (was 0)
+1 💚 shadedclient 36m 55s patch has no errors when building and testing our client artifacts.
_ Other Tests _
-1 ❌ unit 487m 49s /patch-unit-root.txt root in the patch passed.
+1 💚 asflicense 1m 0s The patch does not generate ASF License warnings.
688m 49s
Reason Tests
SpotBugs module:hadoop-tools/hadoop-aws
Return value of AwsSdkWorkarounds.prepareLogging() ignored, but method has no side effect At ClientManagerImpl.java:but method has no side effect At ClientManagerImpl.java:[line 126]
SpotBugs module:root
Return value of AwsSdkWorkarounds.prepareLogging() ignored, but method has no side effect At ClientManagerImpl.java:but method has no side effect At ClientManagerImpl.java:[line 126]
Failed junit tests hadoop.yarn.client.api.impl.TestOpportunisticContainerAllocationE2E
hadoop.yarn.client.api.impl.TestAMRMClientPlacementConstraints
hadoop.yarn.client.api.impl.TestNMClient
hadoop.yarn.client.api.impl.TestAMRMClient
hadoop.yarn.client.api.impl.TestAMRMProxy
hadoop.yarn.client.api.impl.TestYarnClient
Subsystem Report/Notes
Docker ClientAPI=1.48 ServerAPI=1.48 base: https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-7479/6/artifact/out/Dockerfile
GITHUB PR #7479
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient codespell detsecrets xmllint spotbugs checkstyle markdownlint shellcheck shelldocs
uname Linux 00feaf71057c 5.15.0-130-generic #140-Ubuntu SMP Wed Dec 18 17:59:53 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/bin/hadoop.sh
git revision trunk / 12dc3b3
Default Java Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
Multi-JDK versions /usr/lib/jvm/java-11-openjdk-amd64:Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04 /usr/lib/jvm/java-8-openjdk-amd64:Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
Test Results https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-7479/6/testReport/
Max. process+thread count 3719 (vs. ulimit of 5500)
modules C: hadoop-project hadoop-tools/hadoop-aws . U: .
Console output https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-7479/6/console
versions git=2.25.1 maven=3.6.3 spotbugs=4.2.2 shellcheck=0.7.0
Powered by Apache Yetus 0.14.0 https://yetus.apache.org

This message was automatically generated.

@steveloughran
Copy link
Contributor Author

FYI all good with the 2.29 upgrade against aws and 2 external stores; https://issues.apache.org/jira/browse/HADOOP-19512 highlights issues -but those all seem unrelated.

The main bit remaining is dependency audit.

Copy link
Contributor

@cnauroth cnauroth left a comment

Choose a reason for hiding this comment

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

Looks good overall. I just entered one question about a comment.

.serviceConfiguration(serviceConfiguration);

if (LOG.isTraceEnabled()) {
// if this log is set to debug then we turn on logging of SDK metrics.
Copy link
Contributor

Choose a reason for hiding this comment

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

Is this meant to say "...set to trace.."? The if statement is looking for trace.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

good catch. let me change the doc; I tried with debug first but it was waay too noisy

Copy link
Contributor Author

Choose a reason for hiding this comment

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

chris; fixed this..pushed up a whole new pr as I have the chain of patches to merge independently...I've added this and the yetus complaints to the relevant commits

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Logfile Comment
+0 🆗 reexec 0m 21s Docker mode activated.
_ Prechecks _
+1 💚 dupname 0m 0s No case conflicting files found.
+0 🆗 codespell 0m 1s codespell was not available.
+0 🆗 detsecrets 0m 1s detect-secrets was not available.
+0 🆗 xmllint 0m 1s xmllint was not available.
+0 🆗 markdownlint 0m 1s markdownlint was not available.
+0 🆗 shelldocs 0m 1s Shelldocs was not available.
+1 💚 @author 0m 0s The patch does not contain any @author tags.
+1 💚 test4tests 0m 0s The patch appears to include 8 new or modified test files.
_ trunk Compile Tests _
+0 🆗 mvndep 6m 15s Maven dependency ordering for branch
+1 💚 mvninstall 18m 45s trunk passed
+1 💚 compile 8m 12s trunk passed with JDK Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04
+1 💚 compile 7m 7s trunk passed with JDK Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
+1 💚 checkstyle 1m 55s trunk passed
+1 💚 mvnsite 13m 58s trunk passed
+1 💚 javadoc 5m 25s trunk passed with JDK Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04
+1 💚 javadoc 4m 54s trunk passed with JDK Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
+0 🆗 spotbugs 0m 14s branch/hadoop-project no spotbugs output file (spotbugsXml.xml)
+1 💚 shadedclient 36m 56s branch has no errors when building and testing our client artifacts.
_ Patch Compile Tests _
+0 🆗 mvndep 0m 36s Maven dependency ordering for patch
+1 💚 mvninstall 17m 31s the patch passed
+1 💚 compile 8m 2s the patch passed with JDK Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04
+1 💚 javac 8m 2s the patch passed
+1 💚 compile 7m 15s the patch passed with JDK Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
+1 💚 javac 7m 15s the patch passed
+1 💚 blanks 0m 0s The patch has no blanks issues.
-0 ⚠️ checkstyle 1m 54s /results-checkstyle-root.txt root: The patch generated 2 new + 12 unchanged - 1 fixed = 14 total (was 13)
+1 💚 mvnsite 11m 33s the patch passed
+1 💚 shellcheck 0m 0s No new issues.
+1 💚 javadoc 5m 8s the patch passed with JDK Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04
+1 💚 javadoc 4m 56s the patch passed with JDK Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
+0 🆗 spotbugs 0m 14s hadoop-project has no data from spotbugs
+1 💚 shadedclient 37m 7s patch has no errors when building and testing our client artifacts.
_ Other Tests _
-1 ❌ unit 488m 54s /patch-unit-root.txt root in the patch passed.
+1 💚 asflicense 0m 59s The patch does not generate ASF License warnings.
693m 21s
Reason Tests
Failed junit tests hadoop.yarn.client.api.impl.TestOpportunisticContainerAllocationE2E
hadoop.yarn.client.api.impl.TestAMRMClientPlacementConstraints
hadoop.yarn.client.api.impl.TestNMClient
hadoop.yarn.client.api.impl.TestAMRMClient
hadoop.yarn.client.api.impl.TestAMRMProxy
hadoop.yarn.client.api.impl.TestYarnClient
Subsystem Report/Notes
Docker ClientAPI=1.48 ServerAPI=1.48 base: https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-7479/8/artifact/out/Dockerfile
GITHUB PR #7479
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient codespell detsecrets xmllint spotbugs checkstyle markdownlint shellcheck shelldocs
uname Linux 5ed05bda1f40 5.15.0-130-generic #140-Ubuntu SMP Wed Dec 18 17:59:53 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/bin/hadoop.sh
git revision trunk / 3ca156e
Default Java Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
Multi-JDK versions /usr/lib/jvm/java-11-openjdk-amd64:Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04 /usr/lib/jvm/java-8-openjdk-amd64:Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
Test Results https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-7479/8/testReport/
Max. process+thread count 3496 (vs. ulimit of 5500)
modules C: hadoop-project hadoop-tools/hadoop-aws . U: .
Console output https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-7479/8/console
versions git=2.25.1 maven=3.6.3 spotbugs=4.2.2 shellcheck=0.7.0
Powered by Apache Yetus 0.14.0 https://yetus.apache.org

This message was automatically generated.

@steveloughran steveloughran force-pushed the s3/HADOOP-19485-SDK-upgrade branch from 3ca156e to 26bca7c Compare March 27, 2025 18:14
@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Logfile Comment
+0 🆗 reexec 0m 20s Docker mode activated.
_ Prechecks _
+1 💚 dupname 0m 0s No case conflicting files found.
+0 🆗 codespell 0m 0s codespell was not available.
+0 🆗 detsecrets 0m 0s detect-secrets was not available.
+0 🆗 xmllint 0m 0s xmllint was not available.
+0 🆗 markdownlint 0m 0s markdownlint was not available.
+0 🆗 shelldocs 0m 0s Shelldocs was not available.
+1 💚 @author 0m 0s The patch does not contain any @author tags.
+1 💚 test4tests 0m 0s The patch appears to include 8 new or modified test files.
_ trunk Compile Tests _
+0 🆗 mvndep 5m 58s Maven dependency ordering for branch
+1 💚 mvninstall 18m 51s trunk passed
+1 💚 compile 8m 14s trunk passed with JDK Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04
+1 💚 compile 7m 16s trunk passed with JDK Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
+1 💚 checkstyle 2m 0s trunk passed
+1 💚 mvnsite 13m 45s trunk passed
+1 💚 javadoc 5m 22s trunk passed with JDK Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04
+1 💚 javadoc 4m 58s trunk passed with JDK Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
+0 🆗 spotbugs 0m 14s branch/hadoop-project no spotbugs output file (spotbugsXml.xml)
+1 💚 shadedclient 36m 40s branch has no errors when building and testing our client artifacts.
_ Patch Compile Tests _
+0 🆗 mvndep 0m 33s Maven dependency ordering for patch
+1 💚 mvninstall 17m 50s the patch passed
+1 💚 compile 8m 1s the patch passed with JDK Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04
+1 💚 javac 8m 1s the patch passed
+1 💚 compile 7m 7s the patch passed with JDK Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
+1 💚 javac 7m 7s the patch passed
+1 💚 blanks 0m 0s The patch has no blanks issues.
+1 💚 checkstyle 1m 55s root: The patch generated 0 new + 12 unchanged - 1 fixed = 12 total (was 13)
+1 💚 mvnsite 11m 33s the patch passed
+1 💚 shellcheck 0m 0s No new issues.
+1 💚 javadoc 5m 17s the patch passed with JDK Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04
+1 💚 javadoc 5m 2s the patch passed with JDK Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
+0 🆗 spotbugs 0m 12s hadoop-project has no data from spotbugs
+1 💚 shadedclient 37m 15s patch has no errors when building and testing our client artifacts.
_ Other Tests _
-1 ❌ unit 518m 12s /patch-unit-root.txt root in the patch passed.
+1 💚 asflicense 1m 2s The patch does not generate ASF License warnings.
722m 36s
Reason Tests
Failed junit tests hadoop.yarn.client.api.impl.TestOpportunisticContainerAllocationE2E
hadoop.yarn.client.api.impl.TestAMRMClientPlacementConstraints
hadoop.yarn.client.api.impl.TestNMClient
hadoop.yarn.client.api.impl.TestAMRMClient
hadoop.yarn.client.api.impl.TestAMRMProxy
hadoop.yarn.client.api.impl.TestYarnClient
Subsystem Report/Notes
Docker ClientAPI=1.48 ServerAPI=1.48 base: https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-7479/9/artifact/out/Dockerfile
GITHUB PR #7479
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient codespell detsecrets xmllint spotbugs checkstyle markdownlint shellcheck shelldocs
uname Linux 08814370e83e 5.15.0-130-generic #140-Ubuntu SMP Wed Dec 18 17:59:53 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/bin/hadoop.sh
git revision trunk / 26bca7c
Default Java Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
Multi-JDK versions /usr/lib/jvm/java-11-openjdk-amd64:Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04 /usr/lib/jvm/java-8-openjdk-amd64:Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
Test Results https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-7479/9/testReport/
Max. process+thread count 3598 (vs. ulimit of 5500)
modules C: hadoop-project hadoop-tools/hadoop-aws . U: .
Console output https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-7479/9/console
versions git=2.25.1 maven=3.6.3 spotbugs=4.2.2 shellcheck=0.7.0
Powered by Apache Yetus 0.14.0 https://yetus.apache.org

This message was automatically generated.

@steveloughran
Copy link
Contributor Author

yarn is in the process of upgrading tests to junit 5; consider these failures unrelated

Copy link
Contributor

@cnauroth cnauroth left a comment

Choose a reason for hiding this comment

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

Thanks for the update, @steveloughran . Just one more nitpick, again about comment text. Please assume +1 from me after addressing that. (No need for another review round.)

# services it launches itself.
# log4.logger.org.apache.hadoop.service=DEBUG

# log this at trace to trigger enabling the
Copy link
Contributor

Choose a reason for hiding this comment

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

Is there more text intended here? e.g. "...enabling the AWS SDK metrics logging."

@steveloughran steveloughran changed the title HADOOP-19485. S3A: upgrade AWS SDK HADOOP-19485. S3A: upgrade AWS SDK to 2.29.52 Apr 1, 2025
```

```text
INFO metrics.LoggingMetricPublisher (LoggerAdapter.java:info(165)) - Metrics published:
Copy link
Contributor

Choose a reason for hiding this comment

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

qq: is this logged on every request, or at some fixed interval?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

oh, it's noisy. It's the ultimate way to see what is happening in the SDK. I'd been meaning to do this for a while, but trying to see what the 2.30 SDK was up to motivated me.

It is very much emergency use only -those situations where you turn on all of the http traffic logging. But it is now avaiable for those emergencies

Copy link
Contributor

@ahmarsuhail ahmarsuhail left a comment

Choose a reason for hiding this comment

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

+1, LGTM

@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Logfile Comment
+0 🆗 reexec 8m 4s Docker mode activated.
_ Prechecks _
+1 💚 dupname 0m 0s No case conflicting files found.
+0 🆗 codespell 0m 0s codespell was not available.
+0 🆗 detsecrets 0m 0s detect-secrets was not available.
+0 🆗 xmllint 0m 0s xmllint was not available.
+0 🆗 markdownlint 0m 0s markdownlint was not available.
+0 🆗 shelldocs 0m 0s Shelldocs was not available.
+1 💚 @author 0m 0s The patch does not contain any @author tags.
+1 💚 test4tests 0m 0s The patch appears to include 8 new or modified test files.
_ trunk Compile Tests _
+0 🆗 mvndep 5m 53s Maven dependency ordering for branch
+1 💚 mvninstall 18m 29s trunk passed
+1 💚 compile 8m 20s trunk passed with JDK Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04
+1 💚 compile 7m 12s trunk passed with JDK Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
+1 💚 checkstyle 2m 0s trunk passed
+1 💚 mvnsite 14m 7s trunk passed
+1 💚 javadoc 5m 21s trunk passed with JDK Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04
+1 💚 javadoc 4m 57s trunk passed with JDK Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
+0 🆗 spotbugs 0m 14s branch/hadoop-project no spotbugs output file (spotbugsXml.xml)
+1 💚 shadedclient 36m 43s branch has no errors when building and testing our client artifacts.
_ Patch Compile Tests _
+0 🆗 mvndep 0m 42s Maven dependency ordering for patch
+1 💚 mvninstall 18m 5s the patch passed
+1 💚 compile 8m 0s the patch passed with JDK Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04
+1 💚 javac 8m 0s the patch passed
+1 💚 compile 7m 19s the patch passed with JDK Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
+1 💚 javac 7m 19s the patch passed
+1 💚 blanks 0m 0s The patch has no blanks issues.
+1 💚 checkstyle 1m 52s root: The patch generated 0 new + 12 unchanged - 1 fixed = 12 total (was 13)
+1 💚 mvnsite 11m 56s the patch passed
+1 💚 shellcheck 0m 0s No new issues.
+1 💚 javadoc 5m 27s the patch passed with JDK Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04
+1 💚 javadoc 4m 56s the patch passed with JDK Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
+0 🆗 spotbugs 0m 14s hadoop-project has no data from spotbugs
+1 💚 shadedclient 37m 13s patch has no errors when building and testing our client artifacts.
_ Other Tests _
-1 ❌ unit 519m 47s /patch-unit-root.txt root in the patch passed.
+1 💚 asflicense 0m 58s The patch does not generate ASF License warnings.
732m 52s
Reason Tests
Failed junit tests hadoop.yarn.client.api.impl.TestOpportunisticContainerAllocationE2E
hadoop.yarn.client.api.impl.TestAMRMClientPlacementConstraints
hadoop.yarn.client.api.impl.TestNMClient
hadoop.yarn.client.api.impl.TestAMRMClient
hadoop.yarn.client.api.impl.TestAMRMProxy
hadoop.yarn.client.api.impl.TestYarnClient
Subsystem Report/Notes
Docker ClientAPI=1.48 ServerAPI=1.48 base: https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-7479/10/artifact/out/Dockerfile
GITHUB PR #7479
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient codespell detsecrets xmllint spotbugs checkstyle markdownlint shellcheck shelldocs
uname Linux 81b09fec382e 5.15.0-130-generic #140-Ubuntu SMP Wed Dec 18 17:59:53 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/bin/hadoop.sh
git revision trunk / 1664b94
Default Java Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
Multi-JDK versions /usr/lib/jvm/java-11-openjdk-amd64:Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04 /usr/lib/jvm/java-8-openjdk-amd64:Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
Test Results https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-7479/10/testReport/
Max. process+thread count 3700 (vs. ulimit of 5500)
modules C: hadoop-project hadoop-tools/hadoop-aws . U: .
Console output https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-7479/10/console
versions git=2.25.1 maven=3.6.3 spotbugs=4.2.2 shellcheck=0.7.0
Powered by Apache Yetus 0.14.0 https://yetus.apache.org

This message was automatically generated.

@steveloughran
Copy link
Contributor Author

thanks for approval, I will manually merge in very carefully

This is the latest release of the AWS SDK which does not make
changes that are incompatible with third-party stores.

Any followup will require addressing HADOOP-19490.

Change-Id: I51bccc4376681b6b3058060b5aa8af9730886e12
Code changes related to HADOOP-19485.

AwsSdkWorkarounds no longer needs to cut back on transfer manager logging
(HADOOP-19272).
- Remove log downgrade and change assertion to expect nothing to be logged.
- remove false positives from log

ITestS3AEndpointRegion failure:

Change in state of AwsExecutionAttribute.ENDPOINT_OVERRIDDEN
attribute requires test tuning to match.

Change-Id: Iee88e13c113daf852c82c4a11c5029a62efabb71
Switch is in client; commented out in test log properties;
covered in troubleshooting doc

Change-Id: If70447d8eb3d3d0e03db5c169cd1aabf844931bd
* Includes fix for the assumeStoreAwsHosted() logic.
* Documents how to turn off multipart uploads with third-party stores

Change-Id: Iae344b372dceaca981426035e062b542af25f0cd
…tore.

Downgrade warning message from INFO to DEBUG.

Change-Id: Ibb7be344e44e2d66d779c40bf086edba5ce7d7d8
@steveloughran steveloughran force-pushed the s3/HADOOP-19485-SDK-upgrade branch from 1664b94 to aebf99e Compare April 2, 2025 15:18
@ahmarsuhail
Copy link
Contributor

thanks @steveloughran , once this is in could you also give the CRT PR another look. Can cut the 3.4.2 branch by the end of the week hopefully, once these are in. What did you decide about conditional writes: #7011 , do we want to wait for that?

@steveloughran
Copy link
Contributor Author

manually merged

@steveloughran
Copy link
Contributor Author

@ahmarsuhail will look at the CRT, but still getting this chain backported.

All good except for HADOOP-19527 -which now seems to happen everywhere.

w.r.t conditional -plan for end of week.

asfgit pushed a commit that referenced this pull request Apr 2, 2025
This upgrades to the final release the AWS SDK which
retains compatibility with third-party stores.

Note: this patch MUST be followed by
* HADOOP-19485. S3A: Test failures after SDK upgrade

And SHOULD be followed up with
* HADOOP-19455. S3A: SDK client to log metrics at TRACE
* HADOOP-19516. S3A: SDK reads content twice during PUT to S3 Express store.

Contributed by Steve Loughran.
@hadoop-yetus
Copy link

💔 -1 overall

Vote Subsystem Runtime Logfile Comment
+0 🆗 reexec 0m 19s Docker mode activated.
_ Prechecks _
+1 💚 dupname 0m 0s No case conflicting files found.
+0 🆗 codespell 0m 1s codespell was not available.
+0 🆗 detsecrets 0m 1s detect-secrets was not available.
+0 🆗 xmllint 0m 1s xmllint was not available.
+0 🆗 markdownlint 0m 1s markdownlint was not available.
+0 🆗 shelldocs 0m 1s Shelldocs was not available.
+1 💚 @author 0m 0s The patch does not contain any @author tags.
+1 💚 test4tests 0m 0s The patch appears to include 8 new or modified test files.
_ trunk Compile Tests _
+0 🆗 mvndep 6m 6s Maven dependency ordering for branch
+1 💚 mvninstall 18m 35s trunk passed
+1 💚 compile 8m 15s trunk passed with JDK Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04
+1 💚 compile 7m 15s trunk passed with JDK Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
+1 💚 checkstyle 1m 57s trunk passed
+1 💚 mvnsite 12m 21s trunk passed
+1 💚 javadoc 5m 34s trunk passed with JDK Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04
+1 💚 javadoc 5m 4s trunk passed with JDK Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
+0 🆗 spotbugs 0m 15s branch/hadoop-project no spotbugs output file (spotbugsXml.xml)
+1 💚 shadedclient 37m 18s branch has no errors when building and testing our client artifacts.
_ Patch Compile Tests _
+0 🆗 mvndep 0m 36s Maven dependency ordering for patch
+1 💚 mvninstall 17m 43s the patch passed
+1 💚 compile 8m 3s the patch passed with JDK Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04
+1 💚 javac 8m 3s the patch passed
+1 💚 compile 7m 25s the patch passed with JDK Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
+1 💚 javac 7m 25s the patch passed
+1 💚 blanks 0m 0s The patch has no blanks issues.
+1 💚 checkstyle 1m 53s root: The patch generated 0 new + 12 unchanged - 1 fixed = 12 total (was 13)
+1 💚 mvnsite 12m 1s the patch passed
+1 💚 shellcheck 0m 0s No new issues.
+1 💚 javadoc 5m 16s the patch passed with JDK Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04
+1 💚 javadoc 4m 58s the patch passed with JDK Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
+0 🆗 spotbugs 0m 14s hadoop-project has no data from spotbugs
+1 💚 shadedclient 36m 57s patch has no errors when building and testing our client artifacts.
_ Other Tests _
-1 ❌ unit 520m 16s /patch-unit-root.txt root in the patch passed.
+1 💚 asflicense 1m 1s The patch does not generate ASF License warnings.
724m 33s
Reason Tests
Failed junit tests hadoop.yarn.client.api.impl.TestOpportunisticContainerAllocationE2E
hadoop.yarn.client.api.impl.TestAMRMClientPlacementConstraints
hadoop.yarn.client.api.impl.TestNMClient
hadoop.yarn.client.api.impl.TestAMRMClient
hadoop.yarn.client.api.impl.TestAMRMProxy
hadoop.yarn.client.api.impl.TestYarnClient
hadoop.yarn.server.nodemanager.containermanager.logaggregation.TestLogAggregationService
Subsystem Report/Notes
Docker ClientAPI=1.48 ServerAPI=1.48 base: https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-7479/11/artifact/out/Dockerfile
GITHUB PR #7479
Optional Tests dupname asflicense compile javac javadoc mvninstall mvnsite unit shadedclient codespell detsecrets xmllint spotbugs checkstyle markdownlint shellcheck shelldocs
uname Linux f6a0118c7a09 5.15.0-130-generic #140-Ubuntu SMP Wed Dec 18 17:59:53 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux
Build tool maven
Personality dev-support/bin/hadoop.sh
git revision trunk / aebf99e
Default Java Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
Multi-JDK versions /usr/lib/jvm/java-11-openjdk-amd64:Ubuntu-11.0.26+4-post-Ubuntu-1ubuntu120.04 /usr/lib/jvm/java-8-openjdk-amd64:Private Build-1.8.0_442-8u442-b06us1-0ubuntu120.04-b06
Test Results https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-7479/11/testReport/
Max. process+thread count 3767 (vs. ulimit of 5500)
modules C: hadoop-project hadoop-tools/hadoop-aws . U: .
Console output https://ci-hadoop.apache.org/job/hadoop-multibranch/job/PR-7479/11/console
versions git=2.25.1 maven=3.6.3 spotbugs=4.2.2 shellcheck=0.7.0
Powered by Apache Yetus 0.14.0 https://yetus.apache.org

This message was automatically generated.

asfgit pushed a commit that referenced this pull request Apr 3, 2025
This upgrades to the final release the AWS SDK which
retains compatibility with third-party stores.

Note: this patch MUST be followed by
* HADOOP-19485. S3A: Test failures after SDK upgrade

And SHOULD be followed up with
* HADOOP-19455. S3A: SDK client to log metrics at TRACE
* HADOOP-19516. S3A: SDK reads content twice during PUT to S3 Express store.

Contributed by Steve Loughran.
YanivKunda pushed a commit to YanivKunda/hadoop that referenced this pull request Apr 4, 2025
This upgrades to the final release the AWS SDK which
retains compatibility with third-party stores.

Note: this patch MUST be followed by
* HADOOP-19485. S3A: Test failures after SDK upgrade

And SHOULD be followed up with
* HADOOP-19455. S3A: SDK client to log metrics at TRACE
* HADOOP-19516. S3A: SDK reads content twice during PUT to S3 Express store.

Contributed by Steve Loughran.
yaooqinn pushed a commit to apache/spark that referenced this pull request Apr 27, 2025
### What changes were proposed in this pull request?

This PR aims to upgrade AWS SDK v2 to 2.29.52.

### Why are the changes needed?

Like [Apache Iceberg v1.8.1](https://iceberg.apache.org/releases/#181-release) and Apache Hadoop 3.4.2 (HADOOP-19485), Apache Spark 4.1.0 had better use the latest one.
- apache/hadoop#7479
- apache/iceberg#12339

### Does this PR introduce _any_ user-facing change?

No.

### How was this patch tested?

Pass the CIs.

### Was this patch authored or co-authored using generative AI tooling?

No.

Closes #50731 from dongjoon-hyun/SPARK-51929.

Authored-by: Dongjoon Hyun <dongjoon@apache.org>
Signed-off-by: Kent Yao <yao@apache.org>
yhuang-db pushed a commit to yhuang-db/spark that referenced this pull request Jun 9, 2025
### What changes were proposed in this pull request?

This PR aims to upgrade AWS SDK v2 to 2.29.52.

### Why are the changes needed?

Like [Apache Iceberg v1.8.1](https://iceberg.apache.org/releases/#181-release) and Apache Hadoop 3.4.2 (HADOOP-19485), Apache Spark 4.1.0 had better use the latest one.
- apache/hadoop#7479
- apache/iceberg#12339

### Does this PR introduce _any_ user-facing change?

No.

### How was this patch tested?

Pass the CIs.

### Was this patch authored or co-authored using generative AI tooling?

No.

Closes apache#50731 from dongjoon-hyun/SPARK-51929.

Authored-by: Dongjoon Hyun <dongjoon@apache.org>
Signed-off-by: Kent Yao <yao@apache.org>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants