Skip to content

Instantly share code, notes, and snippets.

@AdamBien
Last active May 5, 2024 17:18
Show Gist options
  • Save AdamBien/39f104488136a52d16221a310f4581d1 to your computer and use it in GitHub Desktop.
Save AdamBien/39f104488136a52d16221a310f4581d1 to your computer and use it in GitHub Desktop.
122ndAirhacksQ&A.md
@AdamBien
Copy link
Author

From https://discord.gg/airhacks:

"as part of migrating existing JAX-RS service to serverless architecture - is it a good decision to use frameworks like quarkus instead of plain java - secondly what would be the winning argument to use Java instead of python in serverless architecture (lambda)"

@FrankZeTank
Copy link

Would it make sense/is it possible to use Lambdas in front of back-end cloud services as a kind of load-balancing to front-load the 'take data - map data 2 model - push model to backend service' processing?

@senleft
Copy link

senleft commented May 3, 2024

Hi Adam, AFAIK, you are avoiding usage of reactive frameworks in your projects. How do you approach scenarios with calling several external services in AWS lambda, e.g., when you need to return data from several Dynamo DB tables?
DynamoDbAsyncClient + CompletableFuture.allOf(…).join()?

Or when you need to return data from several http (rest) services?

@AdamBien
Copy link
Author

AdamBien commented May 5, 2024

What is the purpose of java.io.Serializable? youtube comment

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment