XXConcGCThreads
XXConcGCThreads refers to the -XX:ConcGCThreads VM option in the Oracle HotSpot Java Virtual Machine. It controls the number of concurrent garbage collector (GC) threads that participate in the GC’s concurrent phases. The flag is used by collectors that perform background work, notably the Concurrent Mark Sweep (CMS) collector and the Garbage-First (G1) collector, and is set with -XX:ConcGCThreads=<n>.
Setting a higher value can allow more GC work to progress in parallel with the running application,
Defaults and compatibility vary by GC algorithm and VM version. CMS has been deprecated in newer Java
Example: java -XX:ConcGCThreads=4 -jar myapp.jar
See also: -XX:ParallelGCThreads, -XX:+UseG1GC, -XX:+UseConcMarkSweepGC.