Sciology = Science + Technology

Religious Programming (Eclipse; AJAX; SOA; Mashups; XP + SCRUM).

Archive for July, 2007

java.lang.OutOfMemoryError: PermGen space

Posted by sureshkrishna on July 19, 2007

Looks like this is been a common error for almost memory intensive applications now-a-days. I have been working on eclipse for a long time and recently with the Eclipse + Java 1.5.0_04 + EMF + WTP combimation of installation, i have been seeing the error more often.

Its been quite emberrasing to see such errors on the client machines and especially when i was not sure of the problem and the root of the cause. In anycase after going through couple of documents on the java and eclipse news groups, looks like this problem can be avoided if we set some jvm arguments. Some also suggest that if we use IBM’s Java, it would be solved. But i have not changed the Java from Sun to IBM but just the vm arguments works.

It can be done in few different ways…

  • Set the arguments in the Run or Profile windows of eclipse -XX:PermSize=128M -XX:MaxPermSize=256M
  • Set the arguments in eclipse.ini file in eclipse home directory
  • Set these programmatically…

In my case i have the following vm agrs already set  :)

-Xms256m
-Xmx1024m
-XX:PermSize=128M
-XX:MaxPermSize=256M

 Few other sources to get more info…

http://www.brokenbuild.com/blog/2006/08/04/java-jvm-gc-permgen-and-memory-options/

http://java.sun.com/docs/hotspot/gc1.4.2/faq.html

Posted in Exceptions, Java, OutOfMemoryError | No Comments »

Europa launched…

Posted by sureshkrishna on July 2, 2007

The long awaited europa launched few days ago and its really really cool. Releasing 21 eclipse projects at the same time is a tremendous work and they have did it again. I was very apprehensive about the initial stages of Callisto, whether it will be able to make it or not. Callisto it self was a great success and Europa has broken these records too.

Looks like europa has 17 million lines of code and the real nice thing i found is that now we have 2 different distributions for Java Developers and C/C++ Developers. That’s so cool, is nt it. Now the developers need to not remove/disable the parts that they dont want. And most importantly its slim.

Long live Eclipse. !!!

Posted in EMF, Eclipse, GEF, GMF, Plug-ins, Plugin, RCP, SWT | No Comments »