Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a request to install a Linux server (preferably Ubuntu 64bit server), and Java (64 bit) on the following machine:

  • Intel Core2Quad Q8200 - 2.33 GHz
  • 8gb DDR2 ram
  • 2x 320GB SATA HDD in soft RAID1 mirror (mirror)

The problem is how to configure system and Java because I need JVM to use more than 4gb of memory.

It cannot be distributed on many virtual machines. There is data more than 4GB large and it has to be in memory because HDD is slow and performance is critical.

This is a configuration and performance question and I am interested in comments if anyone has experience?

thank you very much for helping me on this...

share|improve this question
1  
Don't forget you need nto leave some memory for non-heap and the OS. 4 GB is probably the limit you can safely do on this machine. BTW: Memory is fairly cheap these days, you might consider getting more if you really needed it. i.e. performance really is critical. – Peter Lawrey Jun 29 '10 at 18:41
Aye, this spec is pretty conservative for a dev workstation, never mind a high-performance server. – skaffman Jun 29 '10 at 18:50

4 Answers

A 64 bit JVM should have no problem at all with giant heaps, certainly much larger than your available RAM. Just increase the heap size when you start the JVM, for example:

java -Xmx6g

You used to have to specify the 64bit flag (with -d64), but I don't think this is necessary any more.

32bit JVMs can manage something like 3GB of heap.

share|improve this answer
Minor nitpick: you mean 'java -Xmx6g' (or 'java -Xmx6144m'). Specifying the size as Gb will lead to an 'Invalid maximum heap size' error. – Confusion Jun 29 '10 at 18:38
@Confusion: Quite right, thanks for the correction. – skaffman Jun 29 '10 at 18:44
you thanked him for the correction an hour ago but didn't correct your answer? Shame. – Malfist Jun 29 '10 at 20:01
1  
@Malfist: Uh, yes, I did. I changed Xmx6Gb to Xmx6g. It's all there in the history. – skaffman Jun 29 '10 at 20:06

skaffman's answer which provides the required flag for allocating 6GB of memory is correct. If the 'g' does not do the trick you might want to try 6000m (check the link below for details on flags/platform)

For other options you can find useful information on all available options for the Java HotSpot VM here.

http://java.sun.com/javase/technologies/hotspot/vmoptions.jsp

(Behavioral and performance options are available. Platform specific links also available on this page)

share|improve this answer

JVM (especially 64bit) does not hesitate taking all the memory, and 4Gb is not a problem. Just install 64-bit Ubuntu and default-jre package will also be 64 bit.

Also take special care about how your data is stored in memory. Again, 64-bit JDK is very hungry for memory due to higher overhead for pointers etc. so if you distribute these 4Gb in small chunks in some data structure, 8Gb will not be enough.

share|improve this answer

If you install a 64-bit Ubuntu, I believe that

sudo apt-get install sun-java6-jdk

gives you a 64-bit Java.


EDIT: The 64 bit Java can give you as much memory as you need with the appropriate switches. The limit is with the 32-bit JVM's which cannot go over 2-4 Gb depending on operating system.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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