vote up 1 vote down star

Possible Duplicate:
setting heap size

I've been asked this question. My knee-jerk reaction was NO in Java you cannot increase heap after your process is running, but then I would guess it really depends on JVM implementation. So, the actual question is (probably) - is there a JVM that will allow me at run the time (within my code) request more memory

flag

Dup: stackoverflow.com/questions/763295/… – skaffman Aug 26 at 21:10
Also stackoverflow.com/questions/1091566/… – skaffman Aug 26 at 21:11
stackoverflow.com/questions/763295/… has your answer. Of course a different JVM implementation could do it differently, but then it would have to provide you with an API to do it. There is nothing in the standard Java API. – Yishai Aug 26 at 21:36

closed as exact duplicate by skaffman, Michael Borgwardt, Yishai, Mark, Oscar Reyes Aug 26 at 21:52

3 Answers

vote up -1 vote down

Why don't you just set the max when starting the JVM? Sounds like you have other problems if you think that you need to ask for more heap space as the application runs.

link|flag
Please read the question. I know that I can preset the memory, reasons aside - can I do it dynamically – DroidIn.net Aug 26 at 21:14
vote up 0 vote down

No I think the last answer is on point. The JVM automatically increases the heap size if it thinks the heap is full enough after a GC. It will keep increasing it until the max heap size is reached. Setting a max heap size (-Xmx) does not cause the heap to start out at that size. That's a different flag (-Xms). If you're asking if you can increase the max heap size -- no. If you mean, can your application request more memory or heap at runtime -- the answer is, well, no not directly but it's not something you ever need to manage.

link|flag
vote up 0 vote down

I don't think there is a JVM implementation that allows you to change max heap size after it has started.

Max. Heap size is like a hard disk partition limit on your disk drive. You can set up a very large partition (i.e. heap size by -Xmx), and let usage grow and fit it up slowly. However, once the max limit is set, you can't change it.

I image resizing heap space max limit is like repartitiong disk space. While it is possible to be done, it will be so slow. is it worth it?

On a side note, I had a long GC delay issue in the earlier version of JVM when max heap size because gc does not kick in often enough when the heap size is bigger. When it does, it tries to clean up everything (full gc) at one short, and everything pause for a few seconds. I think the incremental gc fixes it to some degree, but i didn't monitor closely to confirm it.

link|flag

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