Java Garbage Collection Concepts

From NovaOrdis Knowledge Base
Jump to navigation Jump to search

Internal

Permanent Generation

Metaspace

https://dzone.com/articles/java-8-permgen-metaspace

Overview

The metaspace has been introduced by Java 8 to replace permanent generation. Most allocations for the class metadata are now allocated out of native memory.

Capacity

By default the metaspace can extend to the limit of the physical memory.

It can be limited by MaxMetaspaceSize. If the flag is not specified, the metaspace will resize.

Increase the initial size of the metaspace:

-XX:MetaspaceSize=100M

Increase the boot class loader metaspace:

-XX:InitialBootClassLoaderMetaspaceSize=32M

Growth parameters:

-XX:MinMetaspaceFreeRatio=50
-XX:MaxMetaspaceFreeRatio=80
-XX:MinMetaspaceExpansion=4M
-XX:MaxMetaspaceExpansion=16M

Garbage Collection

Garbage collection of the dead classes and classloaders is triggered once the class metadata usage reaches the “MaxMetaspaceSize”.

Monitoring

It is considered part of the heap?