AWS Lambda 란


  • 서버를 관리할 필요 없이 코드 실행 가능 serverless
  • 코드를 실행하는 데 걸리는 시간함수에 대한 요청 수에 따라 요금 청구
  • A serverless service that lets you run code without needing to provision or manage servers
  • Cannot run more than 15 minutes
  • AWS Lambda Pricing
    • Charged based on the number of requests for your functions and the time that it takes for them to run

Lambda Pre-installed Python packages

  • Lambda 엔 boto3 와 같은 유용한 패키지들을 미리 제공되어 Docker Image 를 빌드할 때 패키지를 다운로드하는 번거로움을 줄일 수 있음
  • 해당 Gist 를 통해 어떤 패키지들이 pre-installed 되어있는지 확인 가능

References