What are the best JVM settings you have found for running Eclipse?
locked by George Stocker♦ Aug 9 '12 at 17:44
This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar questions here. This question and its answers are frozen and cannot be changed. More info: FAQ.
closed as not constructive by Daniel Fischer, Bill the Lizard♦ Apr 9 '12 at 12:28
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
It is that time of year again: "eclipse.ini take 3" the settings strike back! Eclipse Helios 3.6 and 3.6.x settings
After settings for Eclipse Ganymede 3.4.x and Eclipse Galileo 3.5.x, here is an in-depth look at an "optimized" eclipse.ini settings file for Eclipse Helios 3.6.x:
(by "optimized", I mean able to run a full-fledge Eclipse on our crappy workstation at work, some old P4 from 2002 with 2Go RAM and XPSp3. But I have also tested those same settings on Windows7) Eclipse.ini
WARNING: for non-windows platform, use the Sun proprietary option
Note: The following sections detail what are in this The dreaded Oracle JVM 1.6u21 (pre build 7) and Eclipse crashesAndrew Niefer did alert me to this situation, and wrote a blog post, about a non-standard vm argument ( The
(eclipse_home)/plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.0.v20100503 That's it. No setting to tweak here (again, only for Helios on Windows with a 6u21 pre build 7). The issue is based one a regression: JVM identification fails due to Oracle rebranding in java.exe, and triggered bug 319514 on Eclipse. Update u21b7, July, 27th: For now, I still keep the Implicit `-startup` and `--launcher.library`Contrary to the previous settings, the exact path for those modules is not set anymore, which is convenient since it can vary between different Eclipse 3.6.x releases:
Use JDK6The JDK6 is now explicitly required to launch Eclipse:
This SO question reports a positive incidence for development on Mac OS. +UnlockExperimentalVMOptionsThe following options are part of some of the experimental options of the Sun JVM.
They have been reported in this blog post to potentially speed up Eclipse. See also "Update your JVM":
Opening files in Eclipse from the command lineSee the blog post from Andrew Niefer reporting this new option:
See bug 301033 for reference. Originally bug 4922 (October 2001, fixed 9 years later). p2 and the Unsigned Dialog PromptIf you are tired of this dialog box during the installation of your many plugins:
, add in your
See this blog post from Chris Aniszczy, and the bug report 235526.
Additional optionsThose options are not directly in the The `user.home` issue on Windows7When eclipse starts, it will read its keystore file (where passwords are kept), a file located in Add in your
This has been tracked by bug 300577, it has been solve in this other SO question. Debug modeWait, there's more than one setting file in Eclipse.
, you enable the debug mode and Eclipse will look for another setting file: a
That comes from Bug 264924 - [reconciler] No diagnosis of dropins problems, which finally solves the following issue like:
Manifest ClasspathSee this blog post:
That means some of your projects might no longer compile in Helios.
See bug 305037, bug 313965 and bug 313890 for references. IPV4 stackThis SO question mentions a potential fix when not accessing to plugin update sites:
Mentioned here just in case it could help in your configuration. JVM1.7x64 potential optimizationsThis article reports:
|
|||||||||||||||||||
|
Eclipse Galileo 3.5 and 3.5.1 settingsCurrently (November 2009), I am testing with jdk6 update 17 the following configuration set of options (with Galileo -- eclipse 3.5.x, see below for 3.4 or above for Helios 3.6.x): Note: for eclipse3.5, replace
eclipse.ini 3.5.1
See also my original answer above for more information. Changes (from July 2009)
CaveatsThere was a bug with ignored breakpoints actually related to the JDK. MaxNote the usage of:
As documented in the Eclipse Wiki,
As detailed in this entry:
|
|||||||||||
|
Eclipse Ganymede 3.4.2 settingsFor more recent settings, see Eclipse Galileo 3.5 settings above. JDKThe best JVM setting always, in my opinion, includes the latest JDK you can find (so for now, jdk1.6.0_b07 up to b16, except b14 and b15) eclipse.iniEven with those pretty low memory settings, I can run large java projects (along with a web server) on my old (2002) desktop with 2Go RAM.
See GKelly's SO answer and Piotr Gabryanczyk's blog entry for more details about the new options. MonitoringYou can also consider launching:
As said in a previous question about memory consumption. |
|||||||||||||
|
Eclipse Indigo 3.7.2 settings (64 bit linux)Settings for Sun/Oracle java version "1.6.0_31" and Eclipse 3.7 running on x86-64 Linux:
Note that this uses only 200 MB for the heap and 150 MB for the non-heap. If you're using huge plugins, you might want to increase both the "-Xmx200m" and "-XX:MaxPermSize=150m" limits. The primary optimization target for these flags has been to minimize latency in all cases and as a secondary optimization target minimize the memory usage. |
|||||||||||||
|
|
-showlocation To make it easier to have eclipse running twice, and know which workspace you're dealing with Eclipse 3.6 adds a preferences option to specify what to show for the
|
||||
|
|
|
If you're going with jdk6 update 14, I'd suggest using using the G1 garbage collector which seems to help performance. To do so, remove these settings: -XX:+UseConcMarkSweepGC and replace them with these: -XX:+UnlockExperimentalVMOptions |
|||
|
|
|
If you are using Linux + Sun JDK/JRE 32bits, change the "-vm" to:
If you are using Linux + Sun JDK/JRE 64bits, change the "-vm" to:
That's working fine for me on Ubuntu 8.10 and 9.04 |
|||||
|
|
You can also try running with JRockit. It's a JVM optimized for servers, but many long running client applications, like IDE's, run very well on JRockit. Eclipse is no exception. JRockit doesn't have a perm-space so you don't need to configure it. It's possible set a pause time target(ms) to avoid long gc pauses stalling the UI.
I usually don't bother setting -Xmx and -Xms and let JRockit grow the heap as it sees necessary. If you launch your Eclipse application with JRockit you can also monitor, profile and find memory leaks in your application using the JRockit Mission Control tools suite. You download the plugins from this update site. Note, only works for Eclipse 3.3 and Eclipse 3.4 |
|||
|
|
|
Here's my own setting for my Eclipse running on i7 2630M 16GB RAM laptop, this setting has been using for a week, without a single crashing, and Eclipse 3.7 is running smoothly.
Calculations: For Win 7 x64
|
||||
|
|
And these setting have worked like a charm for me. I am running OS X10.6 , Eclipse 3.7 Indigo , JDK1.6.0_24 |
|||
|
|
My own settings (Java 1.7, modify for 1.6):
|
|||
|
|
|
If youre like me and had problems with the current Oracle release of 1.6 then you might want to update your JDK or set -XX:MaxPermSize. More information is available here: http://java.dzone.com/articles/latest-java-update-fixes |
|||
|
|
|
-vm To specify which java version you are using, and use the dll instead of launching a javaw process |
|||
|
|
|
Here's what I use (though I have them in the shortcut instead of the settings file): eclipse.exe -showlocation -vm "C:\Java\jdk1.6.0_07\bin\javaw.exe" -vmargs -Xms256M -Xmx768M -XX:+UseParallelGC -XX:MaxPermSize=128M |
|||
|
|



eclipse.inisettings for Helios 3.6 are here (below, in a new answer): stackoverflow.com/questions/142357/… – VonC Jul 18 '10 at 13:24