This error means that the Metaspace memory limit of the JVM has been reached.
This non-heap memory is used to store class descriptions, so this error may appear when running huge applications.
You can increase the Metaspace memory by adding two options to your command line, MaxMetaspaceSize and CompressedClassSpaceSize.
   iscrun -J-XX:MaxMetaspaceSize=1g -J-XX:CompressedClassSpaceSize=1g PROGNAME
Or
java -XX:MaxMetaspaceSize=256m -XX:CompressedClassSpaceSize=256m PROGNAME1g means 1 GB and it specifies the maximum amount of non-heap memory that the JVM can allocate.
   Metaspace       used 2425K, capacity 4498K, committed 4864K, reserved 1056768K
     class space   used 262K, capacity 386K, committed 512K, reserved 1048576K
or with the JvisualVM or VisualVM tool:

											  Article ID: 224
											  Created: November 27, 2013
											  Last Updated: April 16, 2024
											  Author: Support KB Author
											
Online URL: https://support.veryant.com/phpkb/article.php?id=224