LAMBDA (Serverless Design Pattern)
HOT Function vs COLD Function
- COLD Function
- Slower
- Needs to Warm Up
- Needs to go to the cloud for the request from the user
- Find the spot for the lambda function to run
- HOT Function
- Faster
- Function is already warm (already has a spot for running)
AWS (Serverless design paradigm)
- We need to pay money to make it warm
- Don't use anything if you are not use it
- Cheaper
ECS and run our containers (AWS Fargate)
- Always warm (Keep them warm)
- Responses are faster
- It costs money more than Lambda
'BYU-Broadcast > ScreenSharing' 카테고리의 다른 글
[ScreenSharing] Tests for AWS ECS and Lambda function with Serverless (0) | 2022.04.29 |
---|---|
[ScreenSharing] AWS CloudFront, AWS DNS with caching (0) | 2022.04.29 |
[ScreenSharing] AWS CloudFormation, AWS SNS (0) | 2022.04.29 |
[ScreenSharing] Black-box Testing vs White-box Testing > Make it Functional (0) | 2022.04.22 |
[ScreenSharing] AWS Lambda + ECS (0) | 2022.04.22 |