Java on CRaC: Superfast JVM Application Startup by Simon Ritter

Sdílet
Vložit
  • čas přidán 12. 10. 2022
  • One of the key benefits of a microservice architecture is the ability to dynamically respond to changes in load by spinning up new instances as required. However, when deploying JVM-based services, the warmup time of JIT compilation can be a limitation on the effectiveness of this technique.
    One approach to solving this problem is using native images, where the service is statically compiled using an ahead-of-time (AOT) compiler. Although this does reduce startup time and footprint, it does so at the cost of overall performance.
    A new project has been proposed and accepted into OpenJDK called CRaC (Coordinated Restore at Checkpoint). The goal is to research the co-ordination of Java programs with mechanisms to checkpoint (snapshot) a running application. Restoring from the snapshot could solve some of the problems with the startup and warmup times, especially in microservices.
    In this session, we’ll look at the main challenges for such a project, potential solutions and the results from a proof-of-concept implementation.
    SIMON RITTER
    Simon Ritter is the Deputy CTO of Azul Systems. Simon has been in the IT business since 1984 and holds a Bachelor of Science degree in Physics from Brunel University in the U.K.
    Simon joined Sun Microsystems in 1996 and started working with Java technology from JDK 1.0; he has spent time working in both Java development and consultancy. Having moved to Oracle as part of the Sun acquisition, he managed the Java Evangelism team for the core Java platform. Now at Azul, he continues to help people understand Java as well as Azul’s JVM technologies and products. Simon has twice been awarded Java Rockstar status at JavaOne and is a Java Champion. He represents Azul on the Java SE Expert Group, JCP Executive Committee, OpenJDK Vulnerability Group and Adoptium Steering Committee.
    ------------------------------------------------------------
    INTRO
    * visuals & editing by @Mercator
    * music : Avocado by Ephixa
  • Věda a technologie

Komentáře • 8

  • @luanbarbosa6580
    @luanbarbosa6580 Před 6 měsíci +2

    Amazing presentation, thanks you for sharing.

  • @krystianzybala
    @krystianzybala Před rokem +3

    CRaC is awesome 😊 basically when it can prepare metadata for JIT will be perfect. Good job

  • @Alberto_Cavalcante
    @Alberto_Cavalcante Před 10 měsíci +1

    Great talk! Thanks Mr. CRaC Dealer.

  • @nirmalyasengupta6883
    @nirmalyasengupta6883 Před rokem +1

    Quite informative. Thank You. CRaC is very interesting. I will keep eyes open to know about large applications, which are making use of this and are benefited.

  • @MrHighway2000
    @MrHighway2000 Před rokem +1

    Very informative talk, thanks a lot!

  • @theritesh973
    @theritesh973 Před rokem

    Great Talk, Thanks a lot!

  • @user-gx1tf7ie4f
    @user-gx1tf7ie4f Před 7 měsíci

    where can i get this ppt?

  • @madihaanees
    @madihaanees Před rokem

    JVM CRaC seems to follow OSGi principles, isn't it?