2 Answers
- Newest
- Most votes
- Most comments
1
Hi,
answer is depends on your context, thought AWS best practice is to use specialized Lambda functions compared with all-purpose functions
https://docs.aws.amazon.com/lambda/latest/operatorguide/specialized-all-purpose.html
Hope it helps ;)
1
Using one large lambda? That must be avoided. SQS SNS https://docs.aws.amazon.com/AmazonS3/latest/userguide/how-to-enable-disable-notification-intro.html https://aws.amazon.com/blogs/compute/building-well-architected-serverless-applications-introduction/ Hope this helps you..
answered a year ago
Relevant content
- Accepted Answerasked 3 months ago
- asked a year ago
- AWS OFFICIALUpdated 3 years ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 2 years ago
It is exactly about what have i asked. Also, how one Lambda can communicate with other? Where it can get the address?
You should use sdk to invoke one lambda from the other one https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-lambda/classes/invokecommand.html, or maybe use step functions for sequence/parallel execution.