All Questions
Tagged with lambda amazon-ec2
2 questions
1
vote
3
answers
2k
views
Are AWS Lambda functions a good fit for the use case of fetching huge amount of records from database on User request?
We have a use case where an AWS Lambda function is called from AWS API Gateway on user request from the browser, it fetches data from the database and returns back to the client.
The amount of time ...
6
votes
3
answers
341
views
Server architecture for short bursts of ~150 parallel CPU-heavy subqueries
The client sends a query (a few hundred characters) to the web service. This query can be split into 20 to 150 subqueries with a simple regex. Those subqueries can then be computed independently and ...