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)?
|
|
|||||
|
|
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.
You can get a full list (or a nearly full list, anyway) by typing java -X. |
|||||||
|
|
It is possible to increase heap size allocated by the JVM by using command line options Here we have 3 options
In the above line we can set minimum heap to 16mb and maximum heap 64mb |
||||
|
|
|
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:
The -d64 flag is important as this tells the JVM to run in 64-bit mode. |
|||
|
Have you tried |
|||||||
|
|
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. |
|||
|
|
|
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) |
||||
|
|
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. |
|||||||||||
|