우노
[AWS Lambda] Duration, Billed Duration, Init Duration 간 차이 본문
- Container Image 기반으로 Lambda Function 을 구현하면,
- 로그 출력으로 Duration, Billed Duration, Init Duration 을 확인할 수 있다.
Init Duration
- Lambda 함수 초기화 시간
- cold start 에만 발생
Duration
- 함수 실행 시간
- cold start, warm start 모두 발생
Billed Duration
- 비용 청구 시간
- cold start 일 땐
- Init Duration + Duration = Billed Duration
- warm start 일 땐
- Duration = Billed Duration
- cold start 일 땐
'AWS > Lambda' 카테고리의 다른 글
[Lambda] CloudWatch를 사용해 Lambda를 주기적으로 실행하는 방법 (0) | 2022.04.27 |
---|---|
[AWS Lambda] Provisioned Concurrency 설정 방법 (0) | 2021.11.27 |
[AWS Lambda] Container Image 기반 Lambda 함수 구현 (4) | 2021.08.16 |
[AWS Lambda] Amazon EFS 기반 Lambda 함수 구현 (0) | 2021.08.13 |
[AWS Lambda] S3 파일 다운로드 (2) | 2021.05.18 |
Comments