Java Memory Management

Establishing Java Virtual Memory Settings

Your application server provides options to establish the amount of memory set aside for the Java virtual machine; that is, the amount of memory that the Java environment itself manages in order to run the application server itself and the Archibus Web Central application.

For instance, with Tomcat, you can use the Start / Apache Tomcat / Configure Tomcat option, select the "Java VM" tab, and at the end of the "Java Options" preference append the memory switches for the Java virtual machine.

Common Switches

The two most common switches to use are "-Xms" and "-Xmx":

Some guidelines for using these switches are:

Scalability Recommendations

These benchmarks found best results using mark and sweep for long-lived (old generation) objects and parallel GC for short-lived (new-generation or Eden space) objects. This recommendation is consistent with Sun’s recommendation for obtaining minimum user delay. An exception is smaller servers, such as 2-core servers, often do better with the parallel collection for long-lived objects rather than with the mark-and-sweep collection. And single-processor servers do not benefit from parallel garbage collection.

Optimizing your System

The permanent generation holds reflective data of the VM itself, such as class objects and method objects. These reflective objects are allocated directly into the permanent generation, and it is sized independently from the other generations. In other words, this is where class definitions go, and this explains why you might encounter the OutOfMemoryError: PermGen space message if an application loads a large number of classes on redeployment.

Use a tool such as jconsole or VisualVM to determine how best to optimize your own system.