-
Notifications
You must be signed in to change notification settings - Fork 50
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
Support awssdk version 2.21.0 #958
Comments
Isn't that a bug in the AWS SDK then? I thought the aws sdk for java 2.x has graalvm support https://aws.amazon.com/blogs/developer/graalvm-native-image-support-in-the-aws-sdk-for-java-2-x/ |
AFAIK, aws-crt is not yet supported aws/aws-sdk-java-v2#2948. But it is indeed interesting that their CI tests passed. They use graalvm 22.3 and quarkus is using 23.0. Maybe there is a difference. Could be interesting to test https://github.com/aws/aws-sdk-java-v2/tree/master/test/sdk-native-image-test with mandrel 23.0 |
Build passed. I saw that aws-sdk is building the native image without |
Version 2.21.0 introduces a major internal refactor of authentication and more tight coupling with optional
aws-crt
package. Native build is impacted as it cannot find class definitions.A potential solution is to provide native substitution using
org.graalvm.sdk:graal-sdk
to eliminate any dependency onaws-crt
when the package is not included.For eg.
The text was updated successfully, but these errors were encountered: