What is the difference between PermGen and Metaspace?

62,130

Solution 1

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

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

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

Solution 4

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.

Solution 5

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.

Share:
62,130
Kao
Author by

Kao

Source Code & Architecture Analyst - Java, C/C++/C#. Also - Machine Learning & Theoretical Computer Science amateur.

Updated on August 08, 2021

Comments

  • Kao
    Kao over 2 years

    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.

  • Vishy
    Vishy over 9 years
    Instead of MaxPermGen you have MaxMetaspaceSize, so there is no reason it will use more, or less memory or you have less control.
  • Average Joe
    Average Joe over 7 years
    Neither Permgen, nor Metaspace contain instances of the class Class. They only keep meta information about loaded classes. Instances of the class Class are kept in regular heap, like instances of other classes.
  • Sandeep
    Sandeep almost 7 years
    Nice comparison. Thanks
  • Dinesh
    Dinesh about 6 years
    what memory are we talking about here? RAM memory or HDD memory.
  • sofs1
    sofs1 about 5 years
    By the way, OTOH means, "On the Other Hand"
  • YetAnotherBot
    YetAnotherBot about 5 years
    @Dinesh RAM(internal memory)
  • shubh gaikwad
    shubh gaikwad over 2 years
    OOM => "Out Of Memory"