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

I am working on a Windows 2003 server (64-bit) with 8 GB ram. How can I increase the heap memory maximum? I am using the -Xmx1500m flag to increase the heap size to 1500 Mb. Can I increase the heap memory to 75% of physical memory (6 GB Heap)?

share|improve this question
1  
I presume you tried increasing the heap but failed? Are you using a 64 bit JVM? – Bart Kiers Oct 14 '09 at 10:15

7 Answers

up vote 35 down vote accepted

You can increase to 4GB on a 32 bit system. If you're on a 64 bit system you can go higher. No need to worry if you've chosen incorrectly, if you ask for 5g on a 32 bit system java will complain about an invalid value and quit.

As others have posted, use the cmd-line flags - e.g.

java -Xmx6g myprogram

You can get a full list (or a nearly full list, anyway) by typing java -X.

share|improve this answer
Thanks for comment – Sunil Oct 14 '09 at 14:22
It has been my experience that the actual heap size Java will accept using a 32b VM (on a 32b or 64b system -- the VM is the important part, here), is around 2G. Also, surprised asker did not first search and find: stackoverflow.com/questions/1596009/… and: stackoverflow.com/questions/37335/… – wsorenson Nov 11 '09 at 4:12
ah, you're right of course - on a 32 bit system you can only address 2 Gb of memory. – Steve B. Aug 14 '12 at 14:18

It is possible to increase heap size allocated by the JVM by using command line options Here we have 3 options

-Xms<size>        set initial Java heap size
-Xmx<size>        set maximum Java heap size
-Xss<size>        set java thread stack size

java -Xms16m -Xmx64m ClassName

In the above line we can set minimum heap to 16mb and maximum heap 64mb

share|improve this answer

On a 32-bit JVM, the largest heap size you can theoretically set is 4gb. To use a larger heap size, you need to use a 64-bit JVM. Try the following:

java -Xmx6144M -d64

The -d64 flag is important as this tells the JVM to run in 64-bit mode.

share|improve this answer
Thank you boss but it is not working in my system there is some thing else I am missing – Sunil Oct 14 '09 at 14:21
Define "not working". Does it not start and give you an error? Does it start but use a different heap size? – Kevin Oct 14 '09 at 14:50

Have you tried -Xmx6g ? Did this not work? What did you observe?

share|improve this answer
Thanks for comment but this is not working – Sunil Oct 14 '09 at 14:21
2  
Well - how do you know it isn't working? Does the JVM not start? – oxbow_lakes Oct 15 '09 at 6:56

I think @Steve B. is referring Zing JVM(Commercial JVM) developed by Azul Systems. I don't think Sun JVM supports more than 2GB heap size.

share|improve this answer

It is possible to increase heap size allocated by the JVM in eclipse directly In eclipse IDE goto

Run---->Run Configurations---->Arguments

Enter -Xmx1g(It is used to set the max size like Xmx256m or Xmx1g...... m-->mb g--->gb)

share|improve this answer

Can I increase the heap memory to 75% of physical memory(6GB Heap).

Yes you can. In fact, you can increase to more than the amount of physical memory, if you want to.

Whether it is a good idea to do this depends on how much else is running on your system. In particular, if the "working set" of the applications and services that are currently running significantly exceeds the available physical memory, your system is liable to "thrash", spending a lot of time moving virtual memory pages to and from disk. The net effect is that the system gets horribly slow.

share|improve this answer
Thanks for your comment But How can I increase.Plz can you give command. – Sunil Oct 14 '09 at 10:25
Try -Xmx6000m. It ought to work if you are using a 64bit version of Java. – Stephen C Oct 14 '09 at 12:01
Sorry Boss it still not working – Sunil Oct 14 '09 at 13:10
1  
Are you sure that you are running a 64bit version of Java? On a 64bit operating system? – Stephen C Oct 14 '09 at 13:55

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.