Serverless Flashcards
What is Lambda?
A serverless compute resource provided by AWS
Does Lambda scale out or up?
out
What is the difference between traditional cloud infrastructure vs serverless infrastructure?
Traditional relies on EC2 instances and RDSs where as Lambda dos not (relies on DynamoBD)
Are Lambda functions independent?
Yes 1 even = 1 function
Can 1 lambda function trigger another?
yes
What are the advantages of using Lambda?
HA and cost saving!
What is the main disadvantage of using Lambda?
It can get very complicated very quickly!
What service can be used to debug your Lambda architecture?
AWS X-ray
Is Lambda global?
Yes, e.g. back up a S3 bucket.
Can Lambda trigger an RDS instance?
No!