Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. # AWS Notes
  2. ## Lambdas (FaaS)
  3. * If operating within a VPC, cold start time is pretty long (10+ seconds)
  4. * Lambdas can operate for a maximum of 15 minutes
  5. * If a Lambda needs to hit a resource behind a VPC, it will require 1 ENI (Elastic Network Interface)
  6. * Maximum concurrent lambdas is 1000
  7. * After Lambdas are initiated, they can be _warm_. This means there is no cold start time
  8. * You can test Lambdas locally using the `sam` cli tool. Local lambdas are invoked within a Docker container.
  9. * If Lambdas error out, they will retry for a certain number of times.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement