Profile Image
vishnupriya

What is Memory allocation for class metadata: -XX:MetaspaceSize?

What is Memory allocation for class metadata: -XX:MetaspaceSize? Have you used this JVM arguement before?What are the pros & cons of using this Java argument? Can you share your perspective/experience in using this JVM argument?

  • jvmargument

  • xx-metaspacesize

  • x-metaspacesize

  • Memory allocation for class metadata

Please Sign In or to post your comment or answer

Profile Image

Pavel Khodakovsky

Usage:

 

You can set the size of the allocated class metadata space that will trigger the first run of GC:

 

-XX:MetaspaceSize =size[unit], where size is the desired amount of memory for class metadata, and unit denotes the unit in which the is to be initialized. Units can be marked as ‘g' for GB, ‘m' for MB and ‘k' for KB.

 

Examples:

 

To set the memory size for class metadata to 1GB:

 

-XX:MetaspaceSize=1g

 

Description:

 

Java classes have an internal representation within Java Hotspot VM and are referred to as class metadata. Prior Java 8, the class metadata was allocated in the so-called permanent generation. Since JDK 8, the permanent generation was removed and the class metadata is allocated in native memory. The amount of native memory that can be used for class metadata is by default unlimited. Use the option -XX:MaxMetaspaceSize to put an upper limit on the amount of native memory used for class metadata. To set the size of the allocated class metadata space that will trigger a garbage collection the first time it is exceeded we can use the -XX:MetaspaceSize  This threshold for a garbage collection is increased or decreased depending on the amount of metadata used.

 

Default Value:

 

The default size depends on the platform.

 

Errors:

 

None

 

Arguments related:

 

TODO link UseG1GC, MinHeapFreeRatio, MaxHeapFreeRatio, Xmx, Xms, UseSerialGC, USeParNewGC, UseParallelGC, UseZGC, MaxMetaspaceSize

 

Related Posts:

NOTE:

 

If you have additional comments, interesting experiences or even point of disagreement with this JVM argument description, please leave a comment. Your insights will help the entire 10+ million java developer community to develop one standard source of documentation for all the JVM arguments.

Got something else on mind? Post Your Question

Not the answer you're looking for? Browse other questions tagged
  • jvmargument

  • xx-metaspacesize

  • x-metaspacesize

  • Memory allocation for class metadata