vote up 12 vote down star
3

Does anyone have experience with using very large heaps 12 gb or higher in Java?

  • Does the GC make the program ununable?
  • What GC params do you use?
  • Which jvm sun or bea would be better suited for this?
  • Which platform linux or windows performs better under such conditions?
  • In the case of windows is there any performance difference to be had between 64 bit vista and xp under such high memory loads?
flag

20% accept rate

10 Answers

vote up 1 vote down

A couple of years ago, I compared JRockit and the Sun JVM for a 12G heap. JRockit won, and Linux hugepages support made our test run 20% faster. YMMV as our test was very processor/memory intensive and was primarily single-threaded.

link|flag
vote up 0 vote down

You should try running visualgc against your app. It´s a heap visualization tool that´s part of the jvmstat download at http://java.sun.com/performance/jvmstat/

It is a lot easier than reading GC logs.

It quickly helps you understand how the parts (generations) of the heap are working. While your total heap may be 10GB, the various parts of the heap will be much smaller. GCs in the Eden portion of the heap are relatively cheap, while full GCs in the old generation are expensive. Sizing your heap so that that the Eden is large and the old generation is hardly ever touched is a good strategy. This may result in a very large overall heap, but what the heck, if the JVM never touches the page, it´s just a virtual page, and doesn´t have to take up RAM.

link|flag
vote up 0 vote down

here's an article on gc FROM one of Java Champions -- http://www.kodewerk.com/is_your_concurrent_collector_failing_you.htm

Kirk, the author writes "Send me your GC logs

I'm currently interested in studying Sun JVM produced GC logs. Since these logs contain no business relevent information it should be ease concerns about protecting proriatary information. All I ask that with the log you mention the OS, complete version information for the JRE, and any heap/gc related command line switches that you have set. I'd also like to know if you are running Grails/Groovey, JRuby, Scala or something other than or along side Java. The best setting is -Xloggc:. Please be aware that this log does not roll over when it reaches your OS size limit. If I find anything interesting I'll be happy to give you a very quick synopsis in return. "

link|flag
vote up 7 vote down

12Gb should be no problem with a decent JVM implementation such as Sun's Hotspot. I would advice you to use the Concurrent Mark and Sweep colllector ( -XX:+UseConcMarkSweepGC) when using a SUN VM.Otherwies you may face long "stop the world" phases, were all threads are stopped during a GC.

The OS should not make a big difference for the GC performance.

You will need of course a 64 bit OS and a machine with enough physical RAM.

link|flag
vote up 0 vote down

an article from sun on java 6 can help you : http://java.sun.com/developer/technicalArticles/javase/troubleshoot/

link|flag
vote up 0 vote down

sun has had an itanium 64-bit jvm for a while although itanium is not a popular destination. The solaris and linux 64-bit JVMs should be what you should be after.
Some questions

1) is your application stable ?
2) have you already tested the app in a 32 bit JVM ?
3) is it OK to run multiple JVMs on the same box ?

I would expect the 64-bit OS from windows to get stable in about a year or so but until then, solaris/linux might be better bet.

link|flag
vote up 1 vote down

If you switch to 64-bit you will use more memory. Pointers become 8 bytes instead of 4. If you are creating lots of objects this can be noticeable seeing as every object is a reference (pointer).

I have recently allocated 15GB of memory in Java using the Sun 1.6 JVM with no problems. Though it is all only allocated once. Not much more memory is allocated or released after the initial amount. This was on a Linux but I imagine the Sun JVM will work just as well on 64-bit Windows.

link|flag
vote up 0 vote down

The max memory that XP can address is 4 gig(here). So you may not want to use XP for that(use a 64 bit os).

link|flag
Or use the 64 bit version of XP. ;) – Tyler Millican Oct 18 '08 at 20:46
This isn't a limitation of XP, it's a limitation of any 32-bit OS that doesn't use PAE. – TM Oct 19 '08 at 2:14
vote up 2 vote down

I recommend also considering taking a heap dump and see where memory usage can be improved in your app and analyzing the dump in something such as Eclipse's MAT . There are a few articles on the MAT page on getting started in looking for memory leaks. You can use jmap to obtain the dump with something such as ...

jmap -heap:format=b pid
link|flag
...and how is this answering the actual question? – ddimitrov Oct 18 '08 at 3:12
because with a heap size that large, you should be looking to reduce the memory footprint as well as optimizing the JVM – jlintz Oct 18 '08 at 18:31
vote up 9 vote down

We have an application that we allocate 12-16 Gb for but it really only reaches 8-10 during normal operation. We use the Sun JVM (tried IBMs and it was a bit of a disaster but that just might have been ignorance on our part...I have friends that swear by it--that work at IBM). As long as you give your app breathing room, the JVM can handle large heap sizes with not too much GC. Plenty of 'extra' memory is key.
Linux is almost always more stable than Windows and when it is not stable it is a hell of a lot easier to figure out why. Solaris is rock solid as well and you get DTrace too :) With these kind of loads, why on earth would you be using Vista or XP? You are just asking for trouble. We don't do anything fancy with the GC params. We do set the minimum allocation to be equal to the maximum so it is not constantly trying to resize but that is it.

link|flag

Your Answer

Get an OpenID
or

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