quarkus-amazon-lambda in a reactive context #31139
einarjohnson
started this conversation in
Community
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello all,
I am building a Quarkus project that consists of multiple lambdas that communicate with MySQL, SQS, and DynamoDB. This project
is using the reactive counterparts, such as Hibernate reactive with Panache, to communicate with external systems. I am wondering
if it is possible to build the lambda request handlers in a reactive manner like so:
My current implementation is a bit wonky where I always have to call await on the end result Uni's and I am wondering if there is a better more "reactive" way to implement AWS lambdas.
I have tried running the above code/lambda but it seems to me like the
quarkus-amazon-lambda extension
does not handle the Uni being returned and nothing gets executed, assumedly because the extension is not running in a reactive context?Beta Was this translation helpful? Give feedback.
All reactions