<div dir="ltr"><div dir="ltr"><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Mar 17, 2023 at 5:35 AM Alan Bateman <<a href="mailto:Alan.Bateman@oracle.com">Alan.Bateman@oracle.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On 15/03/2023 16:57, Severin Gehwolf wrote:<br>
> :<br>
> I'd argue that the case where users actually want things back (add<br>
> back, rather than remove) from any base JDK image is rather small.<br>
> Though, I have no numbers about this so this is only anecdotal. Have<br>
> you seen use-cases doing that (add-back, taking from jmods)?<br>
<br>
Almost every usage that I've observed has been reduction and one jlink <br>
step to create a small run-time image. It's always start with a JDK <br>
build with packaged modules and then jlink to generate a run-time image <br>
with the subset of the standard and JDK modules that the application <br>
needs. Some sightings have included jlink options to compress or strip <br>
debug attributes, just to get the size down. I haven't seen any usages <br>
of --keep-packaged-modules so the resulting run-time couldn't be used to <br>
stamp out another run-time image, at least not without specifying <br>
-module-path and of course including the jdk.jlink module.<br></blockquote><div><br></div><div>Severin and I talked about whether to always include jdk.jlink as part of his prototype but finally opted not to as some users may not want it.</div><div><br></div><div>We also talked about some of the ways jlink (condensers) can be set up.  The obvious first case is as it is today: generating an image starting from the JDK & jmod files.</div><div>JDK+jmods --- jlink ---> runtime image + modules file</div><div><br></div><div>Severin's prototype is another point on the spectrum where some condensers (jlink plugins) have been run and modified the image in various ways (ie: making it platform-specific, pre-gening the jli classes, etc) making it more ready for deployment.  Many of the customizations have been captured in the modules file - new classes, modified classes, etc - so using the modules file as input to the next jlink is important to not lose those customizations.  As Severin's prototype shows, the modules file is not sufficient on its own - we still need the rest of the JDK and the various config files, etc that go along with each module.  Today, we don't have users doing this as this kind of re-jlink as they don't have the jmods in their image anymore.</div><div><br></div><div>JDK+jmods --- jlink ---> runtime image + modules file  --- jlink ---> new runtime image + new modules file<br></div><div><br></div><div>There's another option though which avoids needing jdk.jlink to be included in the intermediate images.  We could use a separate JDK to do the jlink process and allow it to use the runtime image+modules file as the input to the process.  This has jlink act as a tool on the side, operating on either the JDK+jmods or the runtime image+modules file.  We don't need jlink to be in the image, just available in some JDK that can operate on the image.</div><div><br></div><div>JDK+jmods --- jlink ---> runtime image + modules file  </div><div>runtime image + modules --- JDK's jlink ---> new runtime image + new modules file<br></div><div> </div><div>We can grow Severin's prototype to eventually allow this later form as well once we've nailed down the current behaviour.</div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<br>
The only of additive case that I've come across is with the GraalVM <br>
build where they use the jlink --add-option to add VM options to select <br>
the Graal JIT. This works by adding a resource to the java.base module.  <br>
More recently,  --save-jlink-argfiles has been added so the options are <br>
preserved for future stamping of out of images. I haven't seen any <br>
usages of this yet but it would need to be paired with <br>
--keep-packaged-modules to be useful. Your prototype avoid needing that <br>
of course.<br></blockquote><div><br></div><div>Thanks for mentioning the  --save-jlink-argfiles option.  I missed that when it went in.</div><div><br></div><div>--Dan</div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<br>
-Alan<br>
<br>
</blockquote></div></div>