Java / GraalVM Interview questions
What are the types of GraalVM components installable via gu?
gu-installable components generally fall into a few categories, depending on the GraalVM distribution and version.
- Language runtimes - Node.js/JavaScript, Python, Ruby, R, LLVM toolchain
- Tools - the Chrome DevTools-based debugger (
chrome-debugger), profiling tools like VisualVM integration - Native Image itself - on some distributions,
native-imageships as an optionalgu-installed component rather than bundled by default
Newer GraalVM for JDK releases have moved several of these (especially language runtimes) to standalone downloads or Maven artifacts instead of gu components, so it's worth checking the release notes for the specific version in use before assuming a component is gu-installable.
More Related questions...