Sidebar

What does "Error: Metaspace" mean when running Java 8?

0 votes
1.6K views
asked Mar 14, 2016 by ben-s-7515 (12,320 points)
When running Java 8 I keep getting a "Error: Metaspace" exception.  What does this mean?

1 Answer

0 votes
Starting with Java 8, the Permgen memory was removed.  This was a location of memory used by previous java versions to store permanent memory objects that won't change durring the running of the application such as java classes.

Java 8 got rid of Permgen and moved all of this information into a new section called "Metaspace" located in the main memory heap.  So, a "Metaspace" exception is thrown when java 8 runs out of memory  while trying to load data into the Metaspace area of the main memory heap.

So to resolve this exception one of two things need to be done:

1) Allocate more memory to QIE if available.

2) Decrease the number of running threads (processor threads and completion threads).  These settings can be found in the "System Configuration" page under the advanced settings.
answered Mar 14, 2016 by ben-s-7515 (12,320 points)
...