What is the difference between PermGen and Metaspace?

JavaJava 8Java 7PermgenMetaspace

Java Problem Overview


Until Java 7 there was an area in JVM memory called PermGen, where JVM used to keep its classes. In Java 8 it was removed and replaced by area called Metaspace.

What are the most important differences between PermGen and Metaspace?

The only difference I know is that java.lang.OutOfMemoryError: PermGen space can no longer be thrown and the VM parameter MaxPermSize is ignored.

Java Solutions


Solution 1 - Java

The main difference from a user perspective - which I think the previous answer does not stress enough - is that Metaspace by default auto increases its size (up to what the underlying OS provides), while PermGen always has a fixed maximum size. You can set a fixed maximum for Metaspace with JVM parameters, but you cannot make PermGen auto-increase.

To a large degree it is just a change of name. Back when PermGen was introduced, there was no Java EE or dynamic class(un)loading, so once a class was loaded it was stuck in memory until the JVM shut down - thus Permanent Generation. Nowadays classes may be loaded and unloaded during the lifespan of the JVM, so Metaspace makes more sense for the area where the metadata is kept.

Both of them contain the java.lang.Class instances and both of them suffer from ClassLoader leaks. Only difference is that with Metaspace default settings, it takes longer until you notice the symptoms (since it auto increases as much as it can), i.e. you just push the problem further away without solving it. OTOH I imagine the effect of running out of OS memory can be more severe than just running out of JVM PermGen, so I'm not sure it is much of an improvement.

Whether you're using a JVM with PermGen or with Metaspace, if you are doing dynamic class unloading, you should to take measures against classloader leaks, for example by using my ClassLoader Leak Prevention library.

Solution 2 - Java

Bye, Bye PermGen, Hello Metaspace

PermGen has been completely removed.

Metaspace garbage collection - Garbage collection of the dead classes and classloaders is triggered once the class metadata usage reaches the MaxMetaspaceSize.

The space Metadata was held is no longer contiguous to the Java heap, The metadata has now moved to native memory to an area known as the Metaspace.

In Simple words,

Since the class metadata is allocated out of native memory, the max available space is the total available system memory. Thus, you will no longer encounter OOM errors and could end up spilling into the swap space.

The removal of PermGen doesn’t mean that your class loader leak issues are gone. So, yes, you will still have to monitor your consumption and plan accordingly, since a leak would end up consuming your entire native memory.

Some other articles, with analysis: Link1, Link2 , and this

Solution 3 - Java

In short, Metaspace size auto increases in native memory as required to load class metadata if not restricted with -XX:MaxMetaspaceSize

Solution 4 - Java

Here to make it simple.

what is PermGen : PermGen is a special heap space separated from the main memory heap. Class metadata is loaded here. java 7 : PermGen is the space where JVM keeps track of metadata of the classes which have been loaded.
java 8 : PermGen is replaced by Metaspace with the capability to auto increase the native memory as per the requirement to load the class metadata.

Solution 5 - Java

PermGen

  • (Permanent Generation) is a special heap space separated from the main memory.
  • The JVM keeps track of class metadata in the PermGen. Also, the JVM stores all the static content in this.
  • Due to limited memory size, PermGen can throw OutOfMemoryError.

Metaspace

  • Metaspace is a new memory space.
  • It has replaced the older PermGen memory space.
  • It can now handle memory allocation.
  • Metaspace grows automatically by default.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionKaoView Question on Stackoverflow
Solution 1 - JavaMattias JiderhamnView Answer on Stackoverflow
Solution 2 - JavaAnkur SinghalView Answer on Stackoverflow
Solution 3 - JavaChandrasekaranView Answer on Stackoverflow
Solution 4 - JavamanojView Answer on Stackoverflow
Solution 5 - Javashubh gaikwadView Answer on Stackoverflow