Creating a Checkpoint and Restoring from Checkpoint
WARNING: next is a proposal phase and is subject to change
Please refer to the Projects with CRaC support section, step-by-step guide or best practices guide to get an application with CRaC support. The rest of the section is written for the spring-boot example.
For the first, Java command line parameter -XX:CRaCCheckpointTo=PATH
defines a path to store the image and also allows the java instance to be checkpointed.
By the current implementation, the image is a directory with image files.
The directory will be created if it does not exist, but no parent directories are created.
export JAVA_HOME=./jdk
$JAVA_HOME/bin/java -XX:CRaCCheckpointTo=cr -jar target/example-spring-boot-0.0.1-SNAPSHOT.jar
For the second, in another console: supply canary worload …
$ curl localhost:8080
Greetings from Spring Boot!
… and make a checkpoint by a jcmd command
$ jcmd target/example-spring-boot-0.0.1-SNAPSHOT.jar JDK.checkpoint
1563568:
Command executed successfully
Due to current jcmd implementation, success is always reported in jcmd output, problems are reported in the console of the application.
Another option to make the checkpoint is to invoke the jdk.crac.Core.checkpointRestore()
method (see API).
More options are possible in the future.
For the third, restore the cr
image by -XX:CRaCRestoreFrom=PATH
option
$JAVA_HOME/bin/java -XX:CRaCRestoreFrom=cr