Lambda Flashcards
How does Lambda scale?
Lambda scales out for each invocation by default, does not scale up.
What does it mean by “lambda functions are independent”
Each lambda invocation is independent of each other.
Is lambda serverless?
Yes
Can lambda functions trigger other functions?
Yes
What AWS service should you use to debug Lambda functions?
AWS X-Ray
Can you do things globally with lambda functions?
Yes
What triggers are there (main ones)
S3, SNS, SQS, DynamoDB, Kinesis
What is the max duration of a lambda function?
15 minutes. It used tobe 5 minutes.
What are the two ways you can use lambda?
Event driven function, based on events. Request based, you activate a lambda function based on request (like an API)