spring-framework icon indicating copy to clipboard operation
spring-framework copied to clipboard

Investigate alignment with Project Leyden

Open sdeleuze opened this issue 2 years ago • 3 comments
trafficstars

Closely related to the "Spring AOT and Project Leyden" section of the "Runtime efficiency with Spring" blog post, we should explore how combining AppCDS support (see #31497) with a first class support of Spring AOT on the JVM (see #31501) can allow a synergy with Project Leyden premain optimizations (CDS + AOT on steroids for the JVM) upcoming developments and how Spring developers can take advantage of it.

sdeleuze avatar Oct 25 '23 14:10 sdeleuze

I have updated https://github.com/sdeleuze/spring-boot-leyden-demo to leverage the new Leyden 1 step workflow that is much simpler to use than the previous 5 steps workflow. I think not all optimizations are enabled yet, but the data points seems promising. Notice I have for now only measured the startup time improvements, not yet the warmup time improvements.

image

The -XX:CacheDataStore option is intended to be a replacement for the existing -XX:SharedArchiveFile option

In practice, this is indeed a drop in replacement for Class Data Sharing which can take advantage of Spring Framework CDS support. If I am not mistaken, the meaning of CDS will evolve from Class Data Sharing to Cache Data Store and provide improved performances and extended scope (warmup improvement in addition to startup time ones).

sdeleuze avatar Jan 15 '24 20:01 sdeleuze

See #32044 related documentation issue.

sdeleuze avatar Jan 16 '24 15:01 sdeleuze

Spring team feedback sent to the leyden-dev mailing list about:

sdeleuze avatar Jan 19 '24 11:01 sdeleuze