AWS Notes-79
AWS Notes-79
➢ Compute resources that you need you only specify the amount of memory you want to
allocate from your lambda function.
➢ AWS lambda allocates CPU power proportional to the memory by using the same ratio
as a general purpose Amazon EC2 instance type, such as an M3 type.
➢ You can update the configuration and request additional memory in 64mb increments
from 128mb to 3008mb.
➢ Functions larger than 1536mb are allocated multiple CPU threads.
➢ You pay for the AWS resources that are used to run your lambda function.
➢ To prevent your lambda function from running indefinitely, you specify a timeout.
➢ When the specified timeout is reached, AWS lambda terminates your lambda function.
➢ Default is 3sec and maximum is 9000sec (15min).