I'm currently developing a tool allowing me to get statistics from anyware simply by going on a website I also created.

For those who don't know, Birt is a reporting tool, and an eclipse plugin.

My problem is the following :

I installed tomcat on the server hosting my website, and installed the Birt ReportEngine on it, and on my website, I call the online viewer to get my reports.

The problem is that since yesterday, when I launch a report, I have this error :

javax.servlet.ServletException: L'exécution de la servlet a lancé une exception
    org.eclipse.birt.report.filter.ViewerFilter.doFilter(ViewerFilter.java:68)

Caused by :

java.lang.OutOfMemoryError: PermGen space

I don't really know which config file to modify to avoid this error. I found some examples online that tell to modify the eclipse.ini file, but as for mty website, I don't use eclipse, I didn't found any usefull post.

Can someone help me please ?

Thanks

link|improve this question

feedback

4 Answers

up vote 3 down vote accepted

As said by Thomas, the parameter to set is -XX:MaxPermSize. One way of setting this parameter for Tomcat is to use the CATALINA_OPTS environment variable. For Windows :

set CATALINA_OPTS=-Xms512m -Xmx512m -XX:MaxPermSize=256m

For Linux (bash) :

export CATALINA_OPTS="-Xms512m -Xmx512m -XX:MaxPermSize=256m"

Check the startup.bat and catalina.bat or startup.sh and catalina.sh files in your tomcat/bin directory and add the above commands there.

(The Xmx and Xms parameters set the minimum and maximum size for the Java heap - where objects are stored. This is not the problem you have but I included them for the sake of completeness.)

link|improve this answer
Thanks for you help, i'll try this this afternoon and let you know about the result :) – tsabz Jul 27 '11 at 12:28
Ok that worked very well :) thanks a lot ! – tsabz Jul 27 '11 at 12:59
feedback

Use that JVM option: -XX:MaxPermSize=256m (of course you are free to choose the amount of memory, but IIRC the default would be 64m so you'd need to increase that). - Note that this is for Oracle's JVM (formerly SUN's :) ) , other JVM's might have different options.

Other than that, try not hot deploying too much, since that might also increase the PermGen space usage (JBoss which includes Tomcat as has that problem, but I'm not sure whether that is true for a standalone Tomcat).

link|improve this answer
I will always stumble over "Oracle's VM"... since they bought it from sun. – Daniel Jul 27 '11 at 12:24
@Daniel, yes I was about to write "SUN's JVM", then I remembered ... :) – Thomas Jul 27 '11 at 12:48
feedback

You need no add the following line to eclipse.ini

-XX:MaxPermSize=128m

If the problem occurs again try to increase the value. You can also add the following optional lines:

-XX:+UseConcMarkSweepGC
-XX:+CMSClassUnloadingEnabled
-XX:+CMSPermGenSweepingEnabled
-XX:+UseParNewGC 

This changes the Garbage Collector of the JVM to a more optimized one, and can also improve the performance and memory usage.

You may also want to tweak the values of the -Xmx and Xms options. Try small increases (same to the -XX:MaxPermSize) as this will increase the memory footprint of your JVM.

For a more explained details see here: http://www.eclipsezone.com/eclipse/forums/t61618.html

For a complete list of the JVM parameters and options: http://www.oracle.com/technetwork/java/javase/tech/vmoptions-jsp-140102.html

link|improve this answer
feedback

This can be solved by allocating more heap memory. this can be done as: steps: double click on your eclipse server->open launch configuration->Arguments->paste this line in vm arguments text area:-

-XX:MaxPermSize=512M -Xmx1024M This will solve your outofmemory error.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.