Java Garbage Collection Concepts: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
 
Line 1: Line 1:
=Internal=
=Internal=


* [[Java Garbage Collection#Garbage_Collection_Concepts|Java Garbage Collection]]
* [[Java Memory#Garbage_Collection_Concepts|Java Memory]]


=Permanent Generation=
=Permanent Generation=

Latest revision as of 02:11, 22 April 2017

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?