OpenJDK Terminology

CRaC (Coordinated Restore at Checkpoint)

July 03, 2026

CRaC is an OpenJDK project that solves one of the most common complaints about Java in cloud environments: slow startup. The JVM traditionally takes time to load classes, initialise frameworks, and warm up the JIT compiler before an application can serve its first request. In a serverless or container-heavy deployment, this warmup cost is paid every time a new instance starts.

CRaC addresses this by letting you take a checkpoint of a fully-warmed, running JVM process — capturing its complete in-memory state — and then restore that snapshot on demand. A restored process skips the entire startup and warmup sequence, reaching full speed in milliseconds.

The project was initiated by Azul and is now an OpenJDK standard API, with support in frameworks including Spring Boot and Quarkus. It works on Linux using the CRIU (Checkpoint/Restore In Userspace) mechanism, and more recently via a new engine called Warp that does not require elevated privileges.

More reading on Foojay:

Comments (0)

Your email address will not be published. Required fields are marked *

Highlight your code snippets using [code lang="language name"] shortcode. Just insert your code between opening and closing tag: [code lang="java"] code [/code]. Or specify another language.

Save my name, email, and website in this browser for the next time I comment.

Comments (0)

Highlight your code snippets using [code lang="language name"] shortcode. Just insert your code between opening and closing tag: [code lang="java"] code [/code]. Or specify another language.

No comments yet. Be the first.

Subscribe to foojay updates:

https://foojay.io/feed/
Copied to the clipboard