Am porting web applications which were earlier on Jboss 4.2.3 onto Jboss 6. There are about 12 web applications totally and out of which only 4 are deployed as of now.

These web applications are based on Axis2 1.5.5,spring 2.5,hibernate 3.2.5,OpenJPA 1.0, saxon 9.1.

The classloader isolation is set as follows

<class-loading java2ClassLoadingCompliance="false">
        <loader-repository>
            webapp:loader=webapp.war
            <loader-repository-config>java2ParentDelegation=false</loader-repository-config>
        </loader-repository>
</class-loading>

I see that the PermGen has already reached 440MB and growing on Jboss 6 and I have set -XX:MaxPermSize=512m

Can anyone provide me inputs in identifying the problem here.

Environment: JDK 1.6.0_26, Ubuntu 11.10

link|improve this question
1  
Who says this is a problem? 12 apps is a lot to deploy on one JVM, and 440MB pf permgen doesn't sound hugely outrageous to handle that. – skaffman Jan 4 at 15:25
skaffman, thanks for your reply, the same apps take about 150-170MB of PermGen on JBoss 4.2.3 and the default setting of -XX:MaxPermSize=256m is quite good enough. But on Jboss 6 I have deployed only 5 out of the 12 apps and the PermGen is almost 3 times more. I also verified the number of classes loaded was about 25K on Jboss 4.2.3 and it's 60K on Jboss 6. – Sathwik Jan 5 at 5:17
JBoss 6 is far more memory demanding than JBoss 4 was. This sounds about right. – skaffman Jan 5 at 7:49
At last I was able to put all the 12 applications. The server takes almost 10 min to start. Permgen has reached 1GB. Heap is about 1.8GB. My desktop runs in animation :). I have 4GB ram. By the way am on 64bit hardware/OS/JDK. – Sathwik Jan 12 at 14:11
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.