On 21/10/15 01:19, Andrea Aime wrote: > Hum... with 128MB of permgen one should be good, but to avoid the error > above, try to > increase it to 256MB: > *-XX:MaxPermSize=256m*
Also note that Java 8 (Oracle and OpenJDK) uses native memory for class metadata (called Metaspace). PermGen no longer exists in these implementations, so you no longer have to guess an upper bound. You can still run out of memory, but Java 8 will never run out of PermGen. See this blog post for more and a discussion of options to limit Metaspace, which is unlimited by default: https://blogs.oracle.com/poonam/entry/about_g1_garbage_collector_permanent Kind regards, -- Ben Caradoc-Davies <[email protected]> Director Transient Software Limited <http://transient.nz/> New Zealand ------------------------------------------------------------------------------ _______________________________________________ Geoserver-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/geoserver-users
