Lambda Flashcards

1
Q

What is the timeout for Lambda functions ?

A

The default is 3 seconds and the max is 15 minutes.

Charge is based on the time the function runs .

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How does lambda access information inside private subnets?

A

It needs additional information like the Private subnet Id and Security group Id based on this it creates an Elastic Network Interface (ENI)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the limit for concurrently executing functions.

A

Default limit is 1000 functions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is AWS SAM

A

AWS SAM is a specification that prescribes the rules for expressing server less applications on AWS

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is XRay?

A

X-Ray is an AWS service that can be used to detect, analyse and optimise performance issues with Lambda applications

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Pricing model for AWS lambda functions

A

Number of requests. First 1 million are free then $0.20 per 1 million Duration. Calculated from the time your code begins execution until it returns or terminates. Depends on the amount of memory allocated to a function

How well did you know this?
1
Not at all
2
3
4
5
Perfectly