Is Eclipse 3.4 (Ganymede) memory usage significantly higher than 3.2? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T05:10:47Z http://stackoverflow.com/feeds/question/100161 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/100161/is-eclipse-3-4-ganymede-memory-usage-significantly-higher-than-3-2 3 Is Eclipse 3.4 (Ganymede) memory usage significantly higher than 3.2? Parand 2008-09-19T07:05:42Z 2009-06-04T18:29:06Z <p>I was happily using Eclipse 3.2 (or as happy as one can be using Eclipse) when for a forgotten reason I decided to upgrade to 3.4. I'm primarily using PyDev, Aptana, and Subclipse, very little Java development.</p> <p>I've noticed 3.4 tends to really give my laptop a hernia compared to 3.2 (vista, core2duo, 2G). Is memory usage on 3.4 actually higher than on 3.2, and if so is there a way to reduce it?</p> <p>EDIT: I tried disabling plugins (I didn't have much enabled anyway) and used the jvm monitor; the latter was interesting but I couldn't figure out how to use the info in any practical way. I'm still not able to reduce its memory footprint. I've also noticed every once in a while Eclipse just hangs for ~30 seconds, then magically comes back.</p> http://stackoverflow.com/questions/100161/is-eclipse-3-4-ganymede-memory-usage-significantly-higher-than-3-2/100166#100166 0 Answer by David Pierre for Is Eclipse 3.4 (Ganymede) memory usage significantly higher than 3.2? David Pierre 2008-09-19T07:08:28Z 2008-09-19T07:08:28Z <p>You can use JVM command switchs (in eclipse.ini) to control memory usage more precisely.</p> <p>But I am not sure it would be a good idea.</p> http://stackoverflow.com/questions/100161/is-eclipse-3-4-ganymede-memory-usage-significantly-higher-than-3-2/100180#100180 2 Answer by Drejc for Is Eclipse 3.4 (Ganymede) memory usage significantly higher than 3.2? Drejc 2008-09-19T07:11:23Z 2008-09-19T07:11:23Z <p>Yes memory usage can get real high and you might run into problems with your JVM, as the default setting is a bit to low. Consider using this startup parameters when running eclipse:</p> <pre><code>-vmargs -XX:MaxPermSize=1024M -Xms256M -Xmx1024M </code></pre> http://stackoverflow.com/questions/100161/is-eclipse-3-4-ganymede-memory-usage-significantly-higher-than-3-2/101164#101164 2 Answer by VonC for Is Eclipse 3.4 (Ganymede) memory usage significantly higher than 3.2? VonC 2008-09-19T11:20:19Z 2008-09-19T11:29:10Z <p>With those options, I manage to limit the memory used to 700Mo (which is quite high, but still workable with my 2 Go)</p> <pre><code>-vmargs -Xms128m -Xmx384m -Xssv2m -XX:PermSize=128m -XX:MaxPermSize=128m -XX:CompileThreshold=5 -XX:+UseParallelGC -Dcom.sun.management.jmxremote </code></pre> <p>And consider also to launch</p> <pre><code>C:\[jdk1.6.0_0x path]\bin\jconsole.exe </code></pre> <p>And choose 'Connection / New connection / 'eclipse' to monitor the memory used by eclipse<br /> (which is why I use '-Dcom.sun.management.jmxremote')</p> <p>Other options are available <a href="http://my.opera.com/karmazilla/blog/2007/03/13/good-riddance-permgen-outofmemoryerror" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/100161/is-eclipse-3-4-ganymede-memory-usage-significantly-higher-than-3-2/113194#113194 1 Answer by MetroidFan2002 for Is Eclipse 3.4 (Ganymede) memory usage significantly higher than 3.2? MetroidFan2002 2008-09-22T04:33:42Z 2008-09-22T04:33:42Z <p>The more plugins you have, the more memory Eclipse will consume. 3.4 includes more plugins by default than 3.3, and so on, and so on, as more and more developers clamor for features to be included.</p> <p>Go to Window->Show View, and start typing "plug in", and one of the options will be the Plug In Registry. Open that view, and click on the arrow to show active plugins only. These are the plugins actually loaded into memory. My Eclipse 3.3 currently has 89 out of 445 or so plugins loaded. You can then selectively start disabling plugins from the Help menu, once you see which ones you won't use (right now, for instance, I"m not using Mylyn, but I hope to in the future).</p> http://stackoverflow.com/questions/100161/is-eclipse-3-4-ganymede-memory-usage-significantly-higher-than-3-2/131719#131719 1 Answer by VonC for Is Eclipse 3.4 (Ganymede) memory usage significantly higher than 3.2? VonC 2008-09-25T06:28:31Z 2008-09-26T06:46:16Z <p>To add to my previous answer and to your recent update:</p> <blockquote> <p>Eclipse just hangs for ~30 seconds, then magically comes back.</p> </blockquote> <p>That is usually a sign for a failed network access with a timeout (and the associated 'freeze' while the application is waiting for said timeout).</p> <p>try typing 'net use' in a DOS prompt, and check if you have net path declared there, some of them you could get rid off ('net use /D aUselessPath'). To be sure, check also the shares that you declare (net share).</p> <p><hr /></p> <p>Since you are with Vista, try also to deactivate <strong><a href="http://www.speedyvista.com/services/Superfetch.php" rel="nofollow">superfetch</a></strong> and see if you still experience those freezes (both for eclipse and Firefox).<br /> Open a CMD prompt with administrative privileges and enter "net stop superfetch" to stop the SuperFetch service.<br /> It is not a good long-term solution though, just a quick check to make. Superfetch should be kept on, and will actually restart on your next reboot, since the service is set to start automatically at each Windows session.<br /> Again, this is just to see if there is any connection between that service and your freezes.</p> http://stackoverflow.com/questions/100161/is-eclipse-3-4-ganymede-memory-usage-significantly-higher-than-3-2/952289#952289 0 Answer by Chris for Is Eclipse 3.4 (Ganymede) memory usage significantly higher than 3.2? Chris 2009-06-04T18:29:06Z 2009-06-04T18:29:06Z <p>I have the same problem, the problem seems to be that my project files are on a shared network hard disk. Saving a file costs about 1-3 seconds. I don't have this problem on the older Eclipse versions. Something went wrong in the development :(</p>