Which GC algorithm is being used by a specific JVM instance?
Using the monitoring tools provided by the JDK, we can gain insights into the JVM itself. One of such insights that may come useful in some situations, is the GC algorithm used by a specific JVM instance. First off, we should somehow identify that JVM instance. In order to do that, we can use the jps
utility to find all the running JVMs in the current machine or a machine specified with a host-id
.
For example, running the following command in my local machine:
Would produce the following result:
As you can spot from the output, the Process Id for my trivial Spring Boot app running with the me.alidg.Application
main entry is 2913
. You also can find this process id using the typical ps
(or whatever OS specific tool you have at your disposal) but it needs more filtering to find your desired JVM instance.
After finding the process id of the JVM instance, you can use the jmap
utility. Basically jmap
will provides heap dumps and other information about JVM memory usage:
So knowing that our pid is 2913
, we can use the following command to print java heap summary:
The output of this command would be:
As you can spot from the output, this JVM instance is using the Concurrent Mark-Sweep GC or CMS GC algorithm. If I run my Spring Boot app with the -XX:+UseG1GC
flag, the output for the same command would be:
jmap -heap
also will provide information about the JIT compiler, Heap configuration, Interned strings statistics and Heap usage.