vote up 2 vote down star
2

I've been getting some OutOfMemory errors lately in my application. Is it possible to detect ahead of time when the virtual machine is running low on memory? In other words to preemptively deal with OutOfMemory errors before they actually occur?

flag

0% accept rate

3 Answers

vote up 4 vote down

Java (as of Java 5) now has a standard JMX bean that can be used to receive low memory notification. See java.lang.management.MemoryMXBean.

link|flag
vote up 1 vote down

Have a look at the freeMemory method of Runtime (see http://java.sun.com/javase/6/docs/api/java/lang/Runtime.html for details)

In short: do

Runtime.getRuntime().freeMemory()

link|flag
Notably, that value is only memory consumed in Java. Any memory used by linked native libraries is not counted. – Chris Dolan Oct 25 '08 at 3:58
vote up 3 vote down

I suggest that a better question is "Why is my application running out of memory?"

You may need to increase the memory available to the JVM at startup; You may have a memory leak (objects that aren't getting released when they're no longer needed.)

More information on the application might also be helpful

  • Does it run continuously, 24x7x365?
  • Does it run once and exit?

Using performance monitoring/profiling tools to find the cause of the memory problem is really your best bet.

link|flag

Your Answer

Get an OpenID
or

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