Severin Gehwolf

Results 387 comments of Severin Gehwolf

Yes, I've reproduced this. ~20% slower build times.

Caused by a quarkus build failure tracked in https://github.com/quarkusio/quarkus/issues/40213

On the flip side I've seen `libgraal` making a difference in memory consumption in constrained environments. Running with `-XX:-UseJVMCINativeLibrary -XX:-UseJVMCICompiler` does no longer get the build killed (in a container...

For reference. `run_build.sh` is a tiny script to get the VmRSS from `/proc/self/status` when the image build runs driven via the native-sources feature (`native-image.args` file) of quarkus: ``` native-image $(cat...

Resident set size is sometimes lower than reported Heap capacity due to lazy commit of the kernel. `-XX:+AlwaysPreTouch` removes that issue in reporting.

We run into an image size increase, reported on the original issue here: https://github.com/quarkusio/quarkus/issues/39674#issuecomment-2082554469

> Resident set size is sometimes lower than reported Heap capacity due to lazy commit of the kernel. `-XX:+AlwaysPreTouch` removes that issue in reporting. Correction. Current implementation of memory reporting...

In order to do "fair" comparisons, there might be other flags which could have some effect. Using `-XX:+PrintFlagsFinal` on the jlinked graal `java` and mandrel `java` (which is stock Temurin...

Tracked in https://github.com/graalvm/mandrel/issues/732

Caused by a quarkus build failure tracked in: https://github.com/quarkusio/quarkus/issues/40213