views:

319

answers:

4

Hi! I'm using ASANT to run a xml file which points to a NARS.jar file. (i do not have the project file of the NARS.jar)

I'm getting "java.lang.OutOfMemoryError: Java heap space.

I used VisualVM to look at the heap while running the NARS.jar, and it says that it max uses 50 MB of the heapspace.

I've set the initial and max size of heapspace to 512 MB.

Does anyone have an ide of what could be wrong?

I got 1 GB physical Memory and created a 5 GB pagefile (for test purpose).

Thanks in advance.

A: 

Try running with -Xmx1024.

thelost
I have tried it... have also tried -Xmx1500 (which i think was the max i could set it too).
A: 

Are you forking the process when running the NARS.jar file? Setting ANT_OPTS will only have effect on the VM running the ant system. If you use the java task to start/fork an additional VM process, the ANT_OPTS settings will not be inherited.

If this is the case, set either fork="false" in the java task (if you are not using any other options, which require fork to be enabled), or set maxmemory="512m".

jarnbjo
A: 

XML files are notorious memory hogs since the DOM representation can often require ten times their size on disk.

My guess is that this is where you hit the limit. Is there a stack trace with the out of memory exception?

Thorbjørn Ravn Andersen
Only when one uses DOM instead of SAX or VTD-XML to parse XML files.
BalusC
A: 

Your app may be trying to allocate memory that exceeds your 512m limit, thus you see an outofmemory error even though only 50m is being used. To test this, I would set:

-Xms512m -Xmx1024m

And see what happens. I would also try a smaller test file, say 1g. Keep reducing the file size until you stop seeing the error. If you succeed, then the trouble is that what you're trying to do and the way you're trying to do it takes too much memory. Time to look for an alternate approach.

Vanessa Williams