SapMachine
SapMachine copied to clipboard
An OpenJDK release maintained and supported by SAP
This is aa simple C-base implementation of jcmd. Apart from only taking a pid, it offers the same features, but uses much less memory (and starts vastly faster). Here is...
We often see usage of jcmd in (cloud) containers to get information needed for support. Since these environments tend to be configured with tight resources, it is important that the...
Since the glibc malloc hooks are deprecated in 2.32 and removed in 2.34, the old malloc trace will not work anymore. It should be replaced by an implementation not relying...
Maybe I just didn't find the information on the internet: Do you provide a repository for your RPMs as well (like [Temurin](https://packages.adoptium.net/ui/repos/tree/General/rpm/sles))? The manual installation [as described in your wiki](https://github.com/SAP/SapMachine/wiki/Installation#-linux)...
We observed that when with below code: --- Calendar calendar = Calendar.getInstance(); // set date to 1st Jan 1900 calendar.set(1900, 0, 1); //SMALL_DATE = new Date(DateUtils.startOfTheDay(calendar.getTime()).getTime()); SMALL_DATE = new Date(startOfTheDay(calendar.getTime()).getTime());...
This is a cherry-pick from sapmachine17 plus a fix and improved error output in the test. fixes #1611
Updating from version 11.0.22 to version 11.0.23 adds new ubuntu user and group. In our Dockerfile, we create a user 1000:1000 to not run as admin. In the updated version...
please pull
See https://bugs.openjdk.org/browse/JDK-8327769 The description of this pull request goes here. fixes #1670
Currently jcmd command GC.heap_dump only works with an additionally provided file name. Syntax : GC.heap_dump [options] In case the JVM has the XX-flag HeapDumpPath set, we should support an additional...