Select your cookie preferences

We use cookies and similar tools to enhance your experience, provide our services, deliver relevant advertising, and make improvements. Approved third parties also use these tools to help us deliver advertising and provide certain site features.

Java Replatforming Health Checks 1 min

Learning Goals

  • To understand when to use health checks with Lambda

Lambda functions do not have health checks like you may have on container platforms. With Lambda, an invoke will come as soon as your function has initialized. It is especially important that your functions start quickly for this reason. Provisioned Concurrency and SnapStart both allow for initialization to be completed asynchronously to invokes being received.

Lambda with Application Load Balancer (ALB)

By default, health checks are disabled for target groups of type Lambda. You can enable health checks in order to implement DNS failover with Amazon Route 53.