Skip to content

Latest commit

 

History

History
45 lines (24 loc) · 904 Bytes

File metadata and controls

45 lines (24 loc) · 904 Bytes

Fighting cold startup issues for your Kotlin Lambda with GraalVM



Cold Startup and the JVM

Yan Cui - aws lambda – compare coldstart time...


GraalVM

  • compile ahead-of-time into a native executable
  • resulting program does not run on the HotSpot VM
  • faster startup time and lower runtime memory overhead

GraalVM



Custom AWS Lambda Runtimes

  • open up AWS Lambda for any programming language
  • is a program that runs the Lambda handler
  • can be included in the deployment package

Custom AWS Lambda Runtimes