際際滷

際際滷Share a Scribd company logo
Alina Yurenko
Using GraalVM
in Production
Oracle
About me
 Alina Yurenko / @alina_yurenko
 Developer Advocate for GraalVM
at Oracle
 Love open source and
communities 
 Love both programming  &
natural languages 
@alina_yurenko
GRAALVM
An advanced JDK with AOT
Native Image compilation
native-image MyMainClass
./mymainclass
JIT AOT
java MyMainClass
2017 2018 2019 2020 2021 2022 2023
2005 2011
... ...
Graal History
Sun Labs
Maxine Java
JVM initial
release
December
Native Image
open sourced
April
Twitter uses
Graal JIT for
core
microservices
October
Micronaut
1.0 with
Native
Image
support
April
GraalVM 1.0
released
April
Thomas
Wuethinger
joins Oracle and
starts Graal
compiler project
September
Spring Native
project
launched
November
Quarkus 1.0
with Native
Image
support
May
GraalVM
Enterprise
Edition 19
Product
Released
September
MicroDoc
announces
GraalVM for
embedded
July
Alibaba start
using Native
Image in
production
July
Facebook
deploys
GraalVM in
production
May
AWS SDK
support for
Native
Image
November
Spring Boot 3
with Native
Image support
December
OpenJDK
Galahad
project
proposed
July
Google Cloud
Platform SDK
support for
Native Image
June
GraalVM Free
Terms and
Conditions
license
September
GraalOS &
Layered
Native
Image
announced
March
Azure SDK
support for
Native
Image
2024
October
Microsoft
joins
GraalVM
Advsory
Board
September
GraalPy &
GraalWasm
production
ready
GraalVM Native Image AOT Compilation
Ahead-of-Time
Compilation
Application
Libraries
JDK
Substrate VM
Points-to Analysis
Run Initializations
Heap Snapshotting
Input:
All classes from application,
libraries, and VM
Code in
Text Section
Image Heap in
Data Section
Image Heap
Writing
Output:
Native executable
@alina_yurenko
DEMO
GraalVM Native ImageFast Start Up and Much More
Improved
Security
Fast Start
& Scale
Lower Resource
Usage
Compact
Packaging
Predictable
Performance
Wide
Ecosystem
Azure
AWS
GCP
OCI
@alina_yurenko
FRAMEWORKS
AND
LIBRARIES
NATIVE IMAGE
BUILD-TIME DISCOVERY
AND CONFIGURATION
SPRING BOOT
RUN-TIME DISCOVERY
AND CONFIGURATION
SPRING BOOT NATIVE IMAGE
SPRING AOT
SPRING AOT
SPRING AOT
JAVA SOURCE FILES
BYTECODE
HINT FILES
200+ libraries and frameworks integrating and testing with Native Image
Ready for GraalVM Native Image
graalvm.org/native-image/libraries-and-frameworks
@alina_yurenko
Libraries, dynamic Java features, and Native Image
 Libraries might be Native-Image friendly out of the box
 twitter.com/YunaMorgenstern/status/1729039787351536084
 Libraries might include config for Native Image:
 github.com/h2database/h2database/blob/master/h2/src/main/META-INF/native-image/
 Libraries might contain config in the Reachability Metadata Repository
 github.com/oracle/graalvm-reachability-metadata/tree/master/metadata/io.netty
 You can use framework support to produce custom hints for Native Image
runtimeHints.resources().registerPattern(config/app.properties);
 You can use the Tracing Agent to produce the necessary config automatically
 graalvm.org/latest/reference-manual/native-image/metadata/AutomaticMetadataCollection/
 You can provide/extend config for reflection, JNI, resources, serialization, and
predefined classes manually in JSON:
 graalvm.org/latest/reference-manual/native-image/metadata/#specifying-metadata-with-json
Happy path;
most of the cases
Custom code/
libraries
@alina_yurenko
PERFORMANCE
DEMO
AOT at the speed of JIT 
 Profile-guided optimizations
Collect and use profiles to
optimize for the specific runtime
behaviour of your application
 ML-enabled PGO
Use a ML model to
automatically predict the
profile of the application
 G1 GC
Optimize GC for peak throughput
and improved latency
 `-march=native`
Optimize for the specific
hardware features of the
machine youll be running on
@alina_yurenko
USING GRAALVM IN PRODUCTION - JAVAONE.pdf
BEST PRACTICES
Container Size (MB)
0
125
250
375
500
Debian 12-slim
+ JDK 21
Distroless Java 21 Distroless Java Base
+ jlink
Distroless Java Base
+ Native Image
Distroless Base
+ Native Image
Distroless Static
+ Native Image
18.1
36.3
48.9
127
199
405
95.5% container image size reduction
JDKs Simple Web Server
GraalVM Native Image
JVM
Compact
Packaging
@alina_yurenko
Cross-Platform Builds on GitHub Actions
Windows
Executable
macOS
Executable
Linux
Executable
.class
.jar
.class
.jar
GraalVM GitHub
Action 
@alina_yurenko
Recommendations
 Migrate 
 Add Native Build Tools
 Alternatively, use recent versions of frameworks
 Evaluate libraries: graalvm.org/native-image/libraries-and-frameworks
 Build and deploy 
 Build and test on GraalVM as the JVM, build with Native Image closer to the deployment
 Quick build mode with `-Ob`
 Use CI/CD systems (e.g. GitHub actions) for deployment and cross-platform builds
 Monitor
 jvmstat, JFR, JMX, Micrometer, cloud vendor solutions
 Run faster 
 PGO
 ML-enabled PGO
 G1 GC
 `-march=native`
@alina_yurenko
MONITORING
 Reduced attack surface area
due to dead code removal
unused classes, methods, and
fields not included in
executable
Improved
Security  Not vulnerable to JIT
compiler attacks
all code is AOT compiled
 SBOM supporting industry
standards
Embedded in executables
CycloneDX format
 Not vulnerable to
deserialization attacks via
class loadingexecutable
includes only required and
specified classes
Reduced Attack Surface 
@alina_yurenko
WHATS NEXT?
GraalVM for JDK 24 
 Java 24 features 
 The fastest GraalVM yet :)
 New ML profile inference for even higher
performance out of the box 
 Smaller executables 
 Vector API support in Native Image 
 New SBOM features 
 Developer experience improvements 
Learn more: medium.com/graalvm
@alina_yurenko
sdk install java
24-graal
Get started with GraalVM 
graalvm.org
github.com/graalvm/
graalvm-demos
docker pull container-
registry.oracle.com/
graalvm/jdk:24
@alina_yurenko
Questions & lets connect! Demos 
@alina_yurenko
USING GRAALVM IN PRODUCTION - JAVAONE.pdf
USING GRAALVM IN PRODUCTION - JAVAONE.pdf

More Related Content

Similar to USING GRAALVM IN PRODUCTION - JAVAONE.pdf (20)

Peru JUG Micronaut & GraalVM
Peru JUG Micronaut & GraalVMPeru JUG Micronaut & GraalVM
Peru JUG Micronaut & GraalVM
Domingo Suarez Torres
From GitHub Source to GitHub Release: Free CICD Pipelines For JavaFX Apps
From GitHub Source to GitHub Release: Free CICD Pipelines For JavaFX AppsFrom GitHub Source to GitHub Release: Free CICD Pipelines For JavaFX Apps
From GitHub Source to GitHub Release: Free CICD Pipelines For JavaFX Apps
Bruno Borges
GraalVM - MadridJUG 2019-10-22
GraalVM - MadridJUG 2019-10-22GraalVM - MadridJUG 2019-10-22
GraalVM - MadridJUG 2019-10-22
Jorge Hidalgo
GraalVM - OpenSlava 2019-10-18
GraalVM - OpenSlava 2019-10-18GraalVM - OpenSlava 2019-10-18
GraalVM - OpenSlava 2019-10-18
Jorge Hidalgo
GraalVM
GraalVMGraalVM
GraalVM
Manfredi Giordano
GraalVM Overview Compact version
GraalVM Overview Compact versionGraalVM Overview Compact version
GraalVM Overview Compact version
scalaconfjp
What's new in Gradle 4.0
What's new in Gradle 4.0What's new in Gradle 4.0
What's new in Gradle 4.0
Eric Wendelin
Google App Engine Java, Groovy and Gaelyk
Google App Engine Java, Groovy and GaelykGoogle App Engine Java, Groovy and Gaelyk
Google App Engine Java, Groovy and Gaelyk
Guillaume Laforge
Neptue Graph Database - 0 to Production
Neptue Graph Database - 0 to ProductionNeptue Graph Database - 0 to Production
Neptue Graph Database - 0 to Production
israelio
AOT and Native with Spring Boot 3.0
AOT and Native with Spring Boot 3.0AOT and Native with Spring Boot 3.0
AOT and Native with Spring Boot 3.0
MoritzHalbritter
DEVELOPING SHAREPOINT FRAMEWORK SOLUTIONS FOR THE ENTERPRISE
DEVELOPING SHAREPOINT FRAMEWORK SOLUTIONS FOR THE ENTERPRISEDEVELOPING SHAREPOINT FRAMEWORK SOLUTIONS FOR THE ENTERPRISE
DEVELOPING SHAREPOINT FRAMEWORK SOLUTIONS FOR THE ENTERPRISE
European Collaboration Summit
GraphQL-ify your APIs
GraphQL-ify your APIsGraphQL-ify your APIs
GraphQL-ify your APIs
Soham Dasgupta
Quarkus Extensions Turbocharge for Java Microservices.pdf
Quarkus Extensions Turbocharge for Java Microservices.pdfQuarkus Extensions Turbocharge for Java Microservices.pdf
Quarkus Extensions Turbocharge for Java Microservices.pdf
Ivelin Yanev
Faster java ee builds with gradle [con4921]
Faster java ee builds with gradle [con4921]Faster java ee builds with gradle [con4921]
Faster java ee builds with gradle [con4921]
Ryan Cuprak
Exploring Next Generation Buildpacks - Anand Rao & Scott Deeg
Exploring Next Generation Buildpacks - Anand Rao & Scott DeegExploring Next Generation Buildpacks - Anand Rao & Scott Deeg
Exploring Next Generation Buildpacks - Anand Rao & Scott Deeg
VMware Tanzu
GraalVM and Oracle's Documentation Trends.pdf
GraalVM and Oracle's Documentation Trends.pdfGraalVM and Oracle's Documentation Trends.pdf
GraalVM and Oracle's Documentation Trends.pdf
ohupalo
Nakal think test_2015
Nakal think test_2015Nakal think test_2015
Nakal think test_2015
Rajdeep Varma
Building GPE: What We Learned
Building GPE: What We LearnedBuilding GPE: What We Learned
Building GPE: What We Learned
rajeevdayal
Keeping your build tool updated in a multi repository world
Keeping your build tool updated in a multi repository worldKeeping your build tool updated in a multi repository world
Keeping your build tool updated in a multi repository world
Roberto P辿rez Alcolea
Cloud Study Jam Exploring the Cloud
Cloud Study Jam Exploring the CloudCloud Study Jam Exploring the Cloud
Cloud Study Jam Exploring the Cloud
Prottay Karim
From GitHub Source to GitHub Release: Free CICD Pipelines For JavaFX Apps
From GitHub Source to GitHub Release: Free CICD Pipelines For JavaFX AppsFrom GitHub Source to GitHub Release: Free CICD Pipelines For JavaFX Apps
From GitHub Source to GitHub Release: Free CICD Pipelines For JavaFX Apps
Bruno Borges
GraalVM - MadridJUG 2019-10-22
GraalVM - MadridJUG 2019-10-22GraalVM - MadridJUG 2019-10-22
GraalVM - MadridJUG 2019-10-22
Jorge Hidalgo
GraalVM - OpenSlava 2019-10-18
GraalVM - OpenSlava 2019-10-18GraalVM - OpenSlava 2019-10-18
GraalVM - OpenSlava 2019-10-18
Jorge Hidalgo
GraalVM Overview Compact version
GraalVM Overview Compact versionGraalVM Overview Compact version
GraalVM Overview Compact version
scalaconfjp
What's new in Gradle 4.0
What's new in Gradle 4.0What's new in Gradle 4.0
What's new in Gradle 4.0
Eric Wendelin
Google App Engine Java, Groovy and Gaelyk
Google App Engine Java, Groovy and GaelykGoogle App Engine Java, Groovy and Gaelyk
Google App Engine Java, Groovy and Gaelyk
Guillaume Laforge
Neptue Graph Database - 0 to Production
Neptue Graph Database - 0 to ProductionNeptue Graph Database - 0 to Production
Neptue Graph Database - 0 to Production
israelio
AOT and Native with Spring Boot 3.0
AOT and Native with Spring Boot 3.0AOT and Native with Spring Boot 3.0
AOT and Native with Spring Boot 3.0
MoritzHalbritter
DEVELOPING SHAREPOINT FRAMEWORK SOLUTIONS FOR THE ENTERPRISE
DEVELOPING SHAREPOINT FRAMEWORK SOLUTIONS FOR THE ENTERPRISEDEVELOPING SHAREPOINT FRAMEWORK SOLUTIONS FOR THE ENTERPRISE
DEVELOPING SHAREPOINT FRAMEWORK SOLUTIONS FOR THE ENTERPRISE
European Collaboration Summit
GraphQL-ify your APIs
GraphQL-ify your APIsGraphQL-ify your APIs
GraphQL-ify your APIs
Soham Dasgupta
Quarkus Extensions Turbocharge for Java Microservices.pdf
Quarkus Extensions Turbocharge for Java Microservices.pdfQuarkus Extensions Turbocharge for Java Microservices.pdf
Quarkus Extensions Turbocharge for Java Microservices.pdf
Ivelin Yanev
Faster java ee builds with gradle [con4921]
Faster java ee builds with gradle [con4921]Faster java ee builds with gradle [con4921]
Faster java ee builds with gradle [con4921]
Ryan Cuprak
Exploring Next Generation Buildpacks - Anand Rao & Scott Deeg
Exploring Next Generation Buildpacks - Anand Rao & Scott DeegExploring Next Generation Buildpacks - Anand Rao & Scott Deeg
Exploring Next Generation Buildpacks - Anand Rao & Scott Deeg
VMware Tanzu
GraalVM and Oracle's Documentation Trends.pdf
GraalVM and Oracle's Documentation Trends.pdfGraalVM and Oracle's Documentation Trends.pdf
GraalVM and Oracle's Documentation Trends.pdf
ohupalo
Nakal think test_2015
Nakal think test_2015Nakal think test_2015
Nakal think test_2015
Rajdeep Varma
Building GPE: What We Learned
Building GPE: What We LearnedBuilding GPE: What We Learned
Building GPE: What We Learned
rajeevdayal
Keeping your build tool updated in a multi repository world
Keeping your build tool updated in a multi repository worldKeeping your build tool updated in a multi repository world
Keeping your build tool updated in a multi repository world
Roberto P辿rez Alcolea
Cloud Study Jam Exploring the Cloud
Cloud Study Jam Exploring the CloudCloud Study Jam Exploring the Cloud
Cloud Study Jam Exploring the Cloud
Prottay Karim

Recently uploaded (20)

Rights, Copyrights, and Licences for Software Engineering Research v1.0
Rights, Copyrights, and Licences for Software Engineering Research v1.0Rights, Copyrights, and Licences for Software Engineering Research v1.0
Rights, Copyrights, and Licences for Software Engineering Research v1.0
Yann-Ga谷l Gu辿h辿neuc
[Roundtable] Choreo - The AI-Native Internal Developer Platform as a Service
[Roundtable] Choreo - The AI-Native Internal Developer Platform as a Service[Roundtable] Choreo - The AI-Native Internal Developer Platform as a Service
[Roundtable] Choreo - The AI-Native Internal Developer Platform as a Service
WSO2
ESET NOD32 Antivirus Crack with License Key 2025
ESET NOD32 Antivirus Crack with License Key 2025ESET NOD32 Antivirus Crack with License Key 2025
ESET NOD32 Antivirus Crack with License Key 2025
umeerbinfaizan
The Missing Voices: Unearthing the Impact of Survivorship Bias on Women in Te...
The Missing Voices: Unearthing the Impact of Survivorship Bias on Women in Te...The Missing Voices: Unearthing the Impact of Survivorship Bias on Women in Te...
The Missing Voices: Unearthing the Impact of Survivorship Bias on Women in Te...
Imma Valls Bernaus
Cypress Parallel Testing Tutorial: Speed Up Your Test Runs with Ease
Cypress Parallel Testing Tutorial: Speed Up Your Test Runs with EaseCypress Parallel Testing Tutorial: Speed Up Your Test Runs with Ease
Cypress Parallel Testing Tutorial: Speed Up Your Test Runs with Ease
Shubham Joshi
Distributed systems: design, principles and experiencies
Distributed systems: design, principles and experienciesDistributed systems: design, principles and experiencies
Distributed systems: design, principles and experiencies
Andr辿s P辿rez Gil
IObit Driver Booster Pro Serial Key v11.2.0.46 Full Crack 2025
IObit Driver Booster Pro Serial Key v11.2.0.46 Full Crack 2025IObit Driver Booster Pro Serial Key v11.2.0.46 Full Crack 2025
IObit Driver Booster Pro Serial Key v11.2.0.46 Full Crack 2025
alibajava70
Evolving Scala, Scalar conference, Warsaw, March 2025
Evolving Scala, Scalar conference, Warsaw, March 2025Evolving Scala, Scalar conference, Warsaw, March 2025
Evolving Scala, Scalar conference, Warsaw, March 2025
Martin Odersky
Windows 8.1 Pro Activator Crack Version [April-2025]
Windows 8.1 Pro Activator Crack Version [April-2025]Windows 8.1 Pro Activator Crack Version [April-2025]
Windows 8.1 Pro Activator Crack Version [April-2025]
jhonjosh91
Software+Bill+of+Materials+Starter+Guide (1).pdf
Software+Bill+of+Materials+Starter+Guide (1).pdfSoftware+Bill+of+Materials+Starter+Guide (1).pdf
Software+Bill+of+Materials+Starter+Guide (1).pdf
kedofef453
Coreldraw 2021 Crack Latest Version 2025
Coreldraw 2021 Crack Latest Version 2025Coreldraw 2021 Crack Latest Version 2025
Coreldraw 2021 Crack Latest Version 2025
blouch31kp
IBM / MAINFRAME /RACF security-guide_pdf.pdf
IBM / MAINFRAME /RACF security-guide_pdf.pdfIBM / MAINFRAME /RACF security-guide_pdf.pdf
IBM / MAINFRAME /RACF security-guide_pdf.pdf
WILSON990330
EMEA Virtual Marketo User Group - Adobe Summit 2025 Round Up
EMEA Virtual Marketo User Group - Adobe Summit 2025 Round UpEMEA Virtual Marketo User Group - Adobe Summit 2025 Round Up
EMEA Virtual Marketo User Group - Adobe Summit 2025 Round Up
BradBedford3
Marketo Engage North America Virtual User Group: Adobe Summit 2025 recap
Marketo Engage North America Virtual User Group: Adobe Summit 2025 recapMarketo Engage North America Virtual User Group: Adobe Summit 2025 recap
Marketo Engage North America Virtual User Group: Adobe Summit 2025 recap
BradBedford3
Coreldraw 2021 Crack Latest Version 2025
Coreldraw 2021 Crack Latest Version 2025Coreldraw 2021 Crack Latest Version 2025
Coreldraw 2021 Crack Latest Version 2025
farooq048kp
Hands-On AWS: Java SDK + CLI for Cloud Developers
Hands-On AWS: Java SDK + CLI for Cloud DevelopersHands-On AWS: Java SDK + CLI for Cloud Developers
Hands-On AWS: Java SDK + CLI for Cloud Developers
Meetu Maltiar
Migrating GitHub Actions with Nested Virtualization to Cloud Native Ecosystem...
Migrating GitHub Actions with Nested Virtualization to Cloud Native Ecosystem...Migrating GitHub Actions with Nested Virtualization to Cloud Native Ecosystem...
Migrating GitHub Actions with Nested Virtualization to Cloud Native Ecosystem...
KCD Guadalajara
Wilcom Embroidery Studio E Crack 2025 FREE
Wilcom Embroidery Studio E Crack 2025 FREEWilcom Embroidery Studio E Crack 2025 FREE
Wilcom Embroidery Studio E Crack 2025 FREE
muhammadwaqaryounus6
Unveiling Extraordinary Software - Shared.pptx
Unveiling Extraordinary Software - Shared.pptxUnveiling Extraordinary Software - Shared.pptx
Unveiling Extraordinary Software - Shared.pptx
Michael Chen
Microsoft Office Crack + Product key Download Free Version 2025
Microsoft Office Crack + Product key Download Free Version 2025Microsoft Office Crack + Product key Download Free Version 2025
Microsoft Office Crack + Product key Download Free Version 2025
hamza752796
Rights, Copyrights, and Licences for Software Engineering Research v1.0
Rights, Copyrights, and Licences for Software Engineering Research v1.0Rights, Copyrights, and Licences for Software Engineering Research v1.0
Rights, Copyrights, and Licences for Software Engineering Research v1.0
Yann-Ga谷l Gu辿h辿neuc
[Roundtable] Choreo - The AI-Native Internal Developer Platform as a Service
[Roundtable] Choreo - The AI-Native Internal Developer Platform as a Service[Roundtable] Choreo - The AI-Native Internal Developer Platform as a Service
[Roundtable] Choreo - The AI-Native Internal Developer Platform as a Service
WSO2
ESET NOD32 Antivirus Crack with License Key 2025
ESET NOD32 Antivirus Crack with License Key 2025ESET NOD32 Antivirus Crack with License Key 2025
ESET NOD32 Antivirus Crack with License Key 2025
umeerbinfaizan
The Missing Voices: Unearthing the Impact of Survivorship Bias on Women in Te...
The Missing Voices: Unearthing the Impact of Survivorship Bias on Women in Te...The Missing Voices: Unearthing the Impact of Survivorship Bias on Women in Te...
The Missing Voices: Unearthing the Impact of Survivorship Bias on Women in Te...
Imma Valls Bernaus
Cypress Parallel Testing Tutorial: Speed Up Your Test Runs with Ease
Cypress Parallel Testing Tutorial: Speed Up Your Test Runs with EaseCypress Parallel Testing Tutorial: Speed Up Your Test Runs with Ease
Cypress Parallel Testing Tutorial: Speed Up Your Test Runs with Ease
Shubham Joshi
Distributed systems: design, principles and experiencies
Distributed systems: design, principles and experienciesDistributed systems: design, principles and experiencies
Distributed systems: design, principles and experiencies
Andr辿s P辿rez Gil
IObit Driver Booster Pro Serial Key v11.2.0.46 Full Crack 2025
IObit Driver Booster Pro Serial Key v11.2.0.46 Full Crack 2025IObit Driver Booster Pro Serial Key v11.2.0.46 Full Crack 2025
IObit Driver Booster Pro Serial Key v11.2.0.46 Full Crack 2025
alibajava70
Evolving Scala, Scalar conference, Warsaw, March 2025
Evolving Scala, Scalar conference, Warsaw, March 2025Evolving Scala, Scalar conference, Warsaw, March 2025
Evolving Scala, Scalar conference, Warsaw, March 2025
Martin Odersky
Windows 8.1 Pro Activator Crack Version [April-2025]
Windows 8.1 Pro Activator Crack Version [April-2025]Windows 8.1 Pro Activator Crack Version [April-2025]
Windows 8.1 Pro Activator Crack Version [April-2025]
jhonjosh91
Software+Bill+of+Materials+Starter+Guide (1).pdf
Software+Bill+of+Materials+Starter+Guide (1).pdfSoftware+Bill+of+Materials+Starter+Guide (1).pdf
Software+Bill+of+Materials+Starter+Guide (1).pdf
kedofef453
Coreldraw 2021 Crack Latest Version 2025
Coreldraw 2021 Crack Latest Version 2025Coreldraw 2021 Crack Latest Version 2025
Coreldraw 2021 Crack Latest Version 2025
blouch31kp
IBM / MAINFRAME /RACF security-guide_pdf.pdf
IBM / MAINFRAME /RACF security-guide_pdf.pdfIBM / MAINFRAME /RACF security-guide_pdf.pdf
IBM / MAINFRAME /RACF security-guide_pdf.pdf
WILSON990330
EMEA Virtual Marketo User Group - Adobe Summit 2025 Round Up
EMEA Virtual Marketo User Group - Adobe Summit 2025 Round UpEMEA Virtual Marketo User Group - Adobe Summit 2025 Round Up
EMEA Virtual Marketo User Group - Adobe Summit 2025 Round Up
BradBedford3
Marketo Engage North America Virtual User Group: Adobe Summit 2025 recap
Marketo Engage North America Virtual User Group: Adobe Summit 2025 recapMarketo Engage North America Virtual User Group: Adobe Summit 2025 recap
Marketo Engage North America Virtual User Group: Adobe Summit 2025 recap
BradBedford3
Coreldraw 2021 Crack Latest Version 2025
Coreldraw 2021 Crack Latest Version 2025Coreldraw 2021 Crack Latest Version 2025
Coreldraw 2021 Crack Latest Version 2025
farooq048kp
Hands-On AWS: Java SDK + CLI for Cloud Developers
Hands-On AWS: Java SDK + CLI for Cloud DevelopersHands-On AWS: Java SDK + CLI for Cloud Developers
Hands-On AWS: Java SDK + CLI for Cloud Developers
Meetu Maltiar
Migrating GitHub Actions with Nested Virtualization to Cloud Native Ecosystem...
Migrating GitHub Actions with Nested Virtualization to Cloud Native Ecosystem...Migrating GitHub Actions with Nested Virtualization to Cloud Native Ecosystem...
Migrating GitHub Actions with Nested Virtualization to Cloud Native Ecosystem...
KCD Guadalajara
Wilcom Embroidery Studio E Crack 2025 FREE
Wilcom Embroidery Studio E Crack 2025 FREEWilcom Embroidery Studio E Crack 2025 FREE
Wilcom Embroidery Studio E Crack 2025 FREE
muhammadwaqaryounus6
Unveiling Extraordinary Software - Shared.pptx
Unveiling Extraordinary Software - Shared.pptxUnveiling Extraordinary Software - Shared.pptx
Unveiling Extraordinary Software - Shared.pptx
Michael Chen
Microsoft Office Crack + Product key Download Free Version 2025
Microsoft Office Crack + Product key Download Free Version 2025Microsoft Office Crack + Product key Download Free Version 2025
Microsoft Office Crack + Product key Download Free Version 2025
hamza752796

USING GRAALVM IN PRODUCTION - JAVAONE.pdf

  • 1. Alina Yurenko Using GraalVM in Production Oracle
  • 2. About me Alina Yurenko / @alina_yurenko Developer Advocate for GraalVM at Oracle Love open source and communities Love both programming & natural languages @alina_yurenko
  • 4. An advanced JDK with AOT Native Image compilation
  • 6. 2017 2018 2019 2020 2021 2022 2023 2005 2011 ... ... Graal History Sun Labs Maxine Java JVM initial release December Native Image open sourced April Twitter uses Graal JIT for core microservices October Micronaut 1.0 with Native Image support April GraalVM 1.0 released April Thomas Wuethinger joins Oracle and starts Graal compiler project September Spring Native project launched November Quarkus 1.0 with Native Image support May GraalVM Enterprise Edition 19 Product Released September MicroDoc announces GraalVM for embedded July Alibaba start using Native Image in production July Facebook deploys GraalVM in production May AWS SDK support for Native Image November Spring Boot 3 with Native Image support December OpenJDK Galahad project proposed July Google Cloud Platform SDK support for Native Image June GraalVM Free Terms and Conditions license September GraalOS & Layered Native Image announced March Azure SDK support for Native Image 2024 October Microsoft joins GraalVM Advsory Board September GraalPy & GraalWasm production ready
  • 7. GraalVM Native Image AOT Compilation Ahead-of-Time Compilation Application Libraries JDK Substrate VM Points-to Analysis Run Initializations Heap Snapshotting Input: All classes from application, libraries, and VM Code in Text Section Image Heap in Data Section Image Heap Writing Output: Native executable @alina_yurenko
  • 9. GraalVM Native ImageFast Start Up and Much More Improved Security Fast Start & Scale Lower Resource Usage Compact Packaging Predictable Performance Wide Ecosystem Azure AWS GCP OCI @alina_yurenko
  • 11. NATIVE IMAGE BUILD-TIME DISCOVERY AND CONFIGURATION SPRING BOOT RUN-TIME DISCOVERY AND CONFIGURATION
  • 12. SPRING BOOT NATIVE IMAGE SPRING AOT
  • 14. SPRING AOT JAVA SOURCE FILES BYTECODE HINT FILES
  • 15. 200+ libraries and frameworks integrating and testing with Native Image Ready for GraalVM Native Image graalvm.org/native-image/libraries-and-frameworks @alina_yurenko
  • 16. Libraries, dynamic Java features, and Native Image Libraries might be Native-Image friendly out of the box twitter.com/YunaMorgenstern/status/1729039787351536084 Libraries might include config for Native Image: github.com/h2database/h2database/blob/master/h2/src/main/META-INF/native-image/ Libraries might contain config in the Reachability Metadata Repository github.com/oracle/graalvm-reachability-metadata/tree/master/metadata/io.netty You can use framework support to produce custom hints for Native Image runtimeHints.resources().registerPattern(config/app.properties); You can use the Tracing Agent to produce the necessary config automatically graalvm.org/latest/reference-manual/native-image/metadata/AutomaticMetadataCollection/ You can provide/extend config for reflection, JNI, resources, serialization, and predefined classes manually in JSON: graalvm.org/latest/reference-manual/native-image/metadata/#specifying-metadata-with-json Happy path; most of the cases Custom code/ libraries @alina_yurenko
  • 18. DEMO
  • 19. AOT at the speed of JIT Profile-guided optimizations Collect and use profiles to optimize for the specific runtime behaviour of your application ML-enabled PGO Use a ML model to automatically predict the profile of the application G1 GC Optimize GC for peak throughput and improved latency `-march=native` Optimize for the specific hardware features of the machine youll be running on @alina_yurenko
  • 22. Container Size (MB) 0 125 250 375 500 Debian 12-slim + JDK 21 Distroless Java 21 Distroless Java Base + jlink Distroless Java Base + Native Image Distroless Base + Native Image Distroless Static + Native Image 18.1 36.3 48.9 127 199 405 95.5% container image size reduction JDKs Simple Web Server GraalVM Native Image JVM Compact Packaging @alina_yurenko
  • 23. Cross-Platform Builds on GitHub Actions Windows Executable macOS Executable Linux Executable .class .jar .class .jar GraalVM GitHub Action @alina_yurenko
  • 24. Recommendations Migrate Add Native Build Tools Alternatively, use recent versions of frameworks Evaluate libraries: graalvm.org/native-image/libraries-and-frameworks Build and deploy Build and test on GraalVM as the JVM, build with Native Image closer to the deployment Quick build mode with `-Ob` Use CI/CD systems (e.g. GitHub actions) for deployment and cross-platform builds Monitor jvmstat, JFR, JMX, Micrometer, cloud vendor solutions Run faster PGO ML-enabled PGO G1 GC `-march=native` @alina_yurenko
  • 26. Reduced attack surface area due to dead code removal unused classes, methods, and fields not included in executable Improved Security Not vulnerable to JIT compiler attacks all code is AOT compiled SBOM supporting industry standards Embedded in executables CycloneDX format Not vulnerable to deserialization attacks via class loadingexecutable includes only required and specified classes Reduced Attack Surface @alina_yurenko
  • 28. GraalVM for JDK 24 Java 24 features The fastest GraalVM yet :) New ML profile inference for even higher performance out of the box Smaller executables Vector API support in Native Image New SBOM features Developer experience improvements Learn more: medium.com/graalvm @alina_yurenko
  • 29. sdk install java 24-graal Get started with GraalVM graalvm.org github.com/graalvm/ graalvm-demos docker pull container- registry.oracle.com/ graalvm/jdk:24 @alina_yurenko
  • 30. Questions & lets connect! Demos @alina_yurenko