- Develop Code
- Publish Lambda, code lives in S3
1000 concurrent req limit 15 min run time
- Lambda Invoked for the first time ( not hot )
- Download from S3
- Copy code from S3 into Language (node 10, 12, 14, Python, C++, Java, Go, Ruby ) Docker container
- node ./code/thingYouDontSee.js
- ..............................
- $
- return
handler(event, context, callback)
- $
- .......................
- $
- return
handler(event, context, callback)
- $
- .........................
- 5 min has elapsed
- If !reservedConcurrency -> Container
kill
.
- Develop code
- Push whole container into ECR ( registry )
- Push container into the task
- Throttled 10 invocations/s
- Task Executed
- Container ready to be executed
No time limit Writable file system
- $$
- Run code in container
- Exit
- $$