-
Notifications
You must be signed in to change notification settings - Fork 83
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
Parameter store as Cloud Config not working in native image on AWS Lambda #1042
Comments
Seems to be related to |
Per https://arnoldgalovics.com/tackling-java-cold-startup-times-on-aws-lambda-with-graalvm/, I was finally able to fix the issue by adding below files under src/main/graal resource-config.json
reflect.json
|
We do have support for ParameterStore but using SDK v2 (which includes it out of the box). This is our test application: https://github.com/micronaut-graal-tests/micronaut-aws-sdk2-graal/tree/2.5.x_paramstore |
So what is #1060 for? |
@sdelamo can confirm it but I think that PR adds support for use Parameter Store as a Distributed Config provider in Micronaut. |
#1060 is share logic for both distributed configuration solutions AWS Parameter store and AWS Secret Manager. |
@sdelamo can this be closed since in Micronaut 3 it now uses the v2 SDK? |
I am trying to use the parameter store feature explained in the documentation here. When building the application as a native image and trying to run on AWS Lambda, I get an error on startup.
Task List
Steps to Reproduce
./gradlew buildNativeLambda
/config/application/example/awsTest
with any value e.g.Test
Expected Behaviour
When the application starts it should pick up the configuration from the SSM parameter store and print and return it from the API call.
Actual Behaviour
The following exception is raised when the application is starting up:
Environment Information
Example Application
https://github.com/kieranjen/micronaut-graal-ssm-params
The text was updated successfully, but these errors were encountered: