Introduction to GraalVM

GraalVM is a high-performance runtime that provides significant improvements in application performance and efficiency which is ideal for microservices. It is designed for applications written in Java, JavaScript, LLVM-based languages such as C and C++, and other dynamic languages. It removes the isolation between programming languages and enables interoperability in a shared runtime.

GraalVM system diagram

The preceding diagram illustrates the architecture of GraalVM as an open ecosystem.

The virtualization layer represents programming languages, provided by GraalVM. The execution of guest programming languages, namely JavaScript, Ruby, R, Python and LLVM bitcode, in the same runtime as the host JVM-based application is now down-to-earth. The host language and guest languages can directly interoperate with each other and pass data back and forth in the same memory space.

The bottom part demonstrates the applicability range. GraalVM can either run standalone, be embedded as part of the OpenJDK or Node.js platforms, or even execute inside Oracle Database.

GraalVM Distributions

GraalVM is available as GraalVM Community and GraalVM Enterprise editions. GraalVM Community editions are based on OpenJDK version 1.8.272 and on OpenJDK version 11.0.9. GraalVM Enterprise editions are based on Oracle JDK version 1.8.0_271 and on Oracle JDK version 11.0.9.

GraalVM distributions are available for Linux, macOS and Windows platforms on AMD64 systems and for the Linux platform on AARCH64 systems. The GraalVM distribution for AArch64, graalvm-ce-java11-linux-aarch64-20.3.0, is currently under development and is provided for evaluation and testing use on GitHub.

All editions are shipped as a .tar.gz file. For installation, it is sufficient to unpack the respective archive and set the JAVA_HOME variable on the unpacked directory. Continue reading to the Getting Started with GraalVM guide.

Distribution Components List

GraalVM cconsists of core and additional components. The core components enable using GraalVM Enterprise as a runtime platform for programs written in JVM-based languages or embeddable polyglot applications.

Core Components

Runtimes

Libraries (jar files)

Utilities

Additional Components

GraalVM base installation can be extended with the additional components:

Note: Python, R, Ruby and Wasm are experimental and not recommended for production use at this time.

GraalVM Documentation

Whether you are here to try running an application with GraalVM for the first time or ready to start coding with the GraalVM Polyglot APIs, check out our documentation to help you on your way.

Alternatively you can have a look at GraalVM SDK Java API Reference and GraalVM Truffle Java API Reference. For example:

If you cannot find the answer you need or have a troubleshooting query, get in touch with us.