vote up 1 vote down star

Hi all,

I run a Java code with the following command:

$ java -Xms4G -Xmx4G myjavacode

My cpu's RAM capacity is 6GB.

However it always fail to execute giving me this error message:

Invalid initial heap size: -Xms5G
The specified size exceeds the maximum representable size.
Could not create the Java virtual machine

Is there any way to set up Java option so that we can execute the code?

flag

Which JVM are you using? – __roland__ May 26 at 5:14
@roland: jdk1.6.0_14/bin/java – foolishbrat May 26 at 5:50
2  
Are you sure you're running the 64 bit JVM? That much memory can't be addressed in 32 bit. – diciu May 26 at 5:50
@diciu: how can I check whether I use 32bit/64bit JVM? My linux machine is 64bit though. – foolishbrat May 26 at 5:55
2  
There's usually a "-d64" arg to the JVM that instructs it to start in 64 bit if possible. Just run the JVM on the command line, it will list all of the possible args. – diciu May 26 at 6:00

3 Answers

vote up 3 vote down check

You've exceeded the maximum heap size of your JVM. This is both JVM and OS dependent. In most 32-bit systems the maximum value will be 2Gb, regardless of the physical memory available.

link|flag
1  
On windows 32-bit the limit is closer to 1.3 GB – Peter Lawrey May 26 at 6:15
vote up 1 vote down

Actually, the maximum memory size on 32-bit systems can vary, being anything up to 4 GB, but 2 GB is a common value. It's often possible to re-link your kernel to increase this to 3 or 3.5 GB. The issue, of course, is that you just don't have the address space to map more memory. Have you tried a 64-bit machine?

Also, remember to set your ulimit higher before you do this.

link|flag
vote up 1 vote down

By default Java will run in 32 bit mode. Be sure to give it the -d64 option to put it into 64 bit mode. Once in 64-bit mode, you shouldn't have any trouble allocating a 6GB JVM.

link|flag

Your Answer

Get an OpenID
or

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