Lambda Flashcards

1
Q

Benefits and Drawbacks

A

Benefits

  • costs
  • managing machines
  • service integrations
  • scaling

Drawbacks

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

Considerations before using Lambda

A
  • Language - Python 2.7, Nodejs, Java 8, C#
  • Code Size Limitations - 250MB
  • Time Limitations - 300sec
  • Concurrent Functions - 100
  • Memory - 128 MB - 1.5 MB
  • Need to provide access to your VPC
  • It will run on AWS Linux, so test it on a similar machine prior to deployment

Cannot use Lambda if you process is:

  1. Long running
  2. Memory intensive
  3. Not Event driven
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What a Lamba function needs to execute

A
  • Code + external libraries
  • HTML files
  • Access keys
  • Credentials to other AWS services
How well did you know this?
1
Not at all
2
3
4
5
Perfectly