-
Notifications
You must be signed in to change notification settings - Fork 907
Missing parameter in S3AsyncClient.crtBuilder() - serviceConfiguration #3821
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
Comments
Currently my S3AsyncClient gets stuck when I download large files from S3. I would like to use the CRT client because I think the byte-range fetches would solve this to me |
Hi @akolacca, forcePathStyle support is tracked in #3817. |
@zoewangg Regarding the checksum - thanks alot! Regarding the S3Configuration serviceConfiguration = S3Configuration.builder()
.pathStyleAccessEnabled(true)
.build(); But I see it has similar effect (am I right?) so I'm good with |
Yes, it has the same effect. We don't have a timeline for that at the moment. Feel free add 👍🏼 to #3817, which will help us prioritize. I'll go ahead and close this issue for now. |
|
@zoewangg can you tell approximately when this will get implemented? The support for this is very crucial |
@zoewangg @debora-ito Can you update us about the progress here? |
Describe the feature
I need the
serviceConfiguration
parameter that exists inS3AsyncClient.builder()
since this parameter enabled me to connect to S3, and without it I cannot configure many important S3 configurations. The parameters I needed werechecksumValidationEnabled(false)
andpathStyleAccessEnabled(true)
.Use Case
I need to connect to S3 and I cannot use the CRT client for this. Because of this I need to implement S3 multi part uploading and routes splitting all by myself, which is pretty hard and redundant. I would really love to get the support for the
serviceConfiguration
. This is by far the most needed feature to me, since without it I cannot even connect.Proposed Solution
Support
serviceConfiguration
from theS3AsyncClient.crtBuilder()
.Other Information
No response
AWS Java SDK version used
2.20.16
JDK version used
17
Operating System and version
Linux
The text was updated successfully, but these errors were encountered: