GraalVM demos: Native images for faster startup

This is a sample application to demonstrate GraalVM capabilities for creatingnative images.

Prerequisites

Preparation

  • Download or clone the repository and navigate into the native-list-dir directory:
  1. git clone https://github.com/graalvm/graalvm-demos
  2. cd graalvm-demos/native-list-dir

There are two Java classes, but we will start by building ListDir.java for thepurposes of this demo. You can manually execute javac ListDir.java, there isalso a build.sh script included for your convenience. Note that you can useany JDK for compiling the Java classes, however we refer to javac from GraalVMin the build script to simplify the prerequisites and not to depend on anotherJDK installed.

  • Having downloaded and unzipped GraalVM CE or EE archive, export the GraalVM home directory as the $GRAALVM_HOME and add $GRAALVM_HOME/binto the path, using a command-line shell for Linux:
  1. export GRAALVM_HOME=/home/${current_user}/path/to/graalvm

and for macOS:

  1. export GRAALVM_HOME=/Users/${current_user}/path/to/graalvm/Contents/Home

Note that your paths are likely to be different depending on the download location.

  • Make sure the native-image utility is available. Starting from GraalVM 19.0, Native Image was extracted from the base distribution. This functionality can be added to the core installation with GraalVM Updater tool by running:gu install native-image.

  • Then execute:

  1. ./build.sh

The build.sh script creates a native image from the Java class.

Let us look at it in more detail:

  1. $GRAALVM_HOME/bin/native-image ListDir

The native-image utility ahead-of-time compiles the ListDir class into astandalone binary in the current working directory. After running thecommand, an executable file listdir should have been produced.

Running the Application

To run the application, you need to either execute the ListDir class,as a normal Java application using java, or, since we have a native imageprepared, run that directly.

The run.sh file, executes both, and times them with the time utility.

  1. time java ListDir $1
  2. time ./listdir $1

To make it more interesting, pass it to a parent directory: ./run.sh .. (.. - isthe parent of the current directory, the one containing all the demos).

Approximately, the following output should be produced:

  1. + java ListDir ..
  2. Walking path: ..
  3. Total: 141 files, total size = 14448801 bytes
  4. real 0m0.320s
  5. user 0m0.379s
  6. sys 0m0.070s
  7. + ./listDir ..
  8. Walking path: ..
  9. Total: 141 files, total size = 14448801 bytes
  10. real 0m0.030s
  11. user 0m0.005s
  12. sys 0m0.011s

The performance gain of the native version is largely due to the faster startup.

Polyglot Capabilities

You can also experiment with a more sophisticated ExtListDir example,which uses Java/JavaScript polyglot capabilities.

To compile that class you need to add graal-sdk.jar on the classpath:

  1. $GRAALVM_HOME/bin/javac -cp $GRAALVM_HOME/jre/lib/boot/graal-sdk.jar ExtListDir.java

Building the native image command is similar to the one above, but, since we want to use JavaScript, we need to inform the native-image utility about it by passing the —language:js option.Note that it takes a bit more time because it needs to include the JavaScript support.

  1. $GRAALVM_HOME/bin/native-image --language:js ExtListDir

The execution is the same as in the previous example:

  1. time java ExtListDir $1
  2. time ./extlistdir $1

Profile-Guided Optimizaitons for High Throughput

GraalVM Enterprise Edition offers extra benefits for building a native image. These are profile-guided optimisations (PGO). As an example we will use a small application demonstrating Java streams.

First, we run the application with java to see the output:

  1. + javac Streams.java
  2. + $GRAALVM_HOME/bin/native-image Streams
  3. + ./streams 1000000 200
  4. ...
  5. Iteration 20 finished in 1955 milliseconds with checksum 6e36c560485cdc01

To enable PGO we need to build an instrumented image and run it to collect profiles:

  1. + $GRAALVM_HOME/bin/native-image --pgo-instrument Streams
  2. + ./streams 1000 200

Profiles collected from this run are now stored in the default.iprof file. Note that we run the profiling with a much smaller data size.

Now we can use these profiles to make an optimized image:

  1. + $GRAALVM_HOME/bin/native-image --pgo Streams

When we run the PGO image with

  1. + ./streams 1000000 200
  2. ...
  3. Iteration 20 finished in 827 milliseconds with checksum 6e36c560485cdc01

we will see more than 2x improvements in performance.