vote up 5 vote down star
1

I'm developing a program that would require huge amount of memory, and I want to catch when out-of-memory exception happens. I had heard this is not possible to do, but curious if there is any development on this end.

flag

7 Answers

vote up 12 vote down check

It's not an exception; it's an error: java.lang.OutOfMemoryError

You can catch it as it descends from Throwable:

try {
    // create lots of objects here and stash them somewhere
} catch (OutOfMemoryError E) {
    // release some (all) of the above objects
}

However, unless you're doing some rather specific stuff (allocating tons of things within a specific code section, for example) you likely won't be able to catch it as you won't know where it's going to be thrown from.

link|flag
1  
Plus, there's likely no easy way for you to recover from it if you do catch it. – matt b Nov 7 at 6:45
@matt b - in the specific case where you're able to catch it you're presumably trying to control your memory consumption and thus would be able to release some / all of it. But generally speaking you're right, of course. – ChssPly76 Nov 7 at 6:48
vote up 5 vote down

It's possible:

try {
   // tragic logic created OOME, but we can blame it on lack of memory
} catch(OutOfMemoryError e) {
   // but what the hell will you do here :)
} finally {
   // get ready to be fired by your boss
}
link|flag
There is at least one reasonable thing which you could be doing which causes an OOME and is recoverable: Loading a very large image. The only thing in the try block is a call to ImageIO.read(), and you're showing the user a dialog telling them that the image is too large in the catch block. Just saying... – uckelman Nov 7 at 10:18
@uckleman....i guess you are right, but my system architects don't leave any scope fo arguments....hence the "get ready to be fired by your boss" stuff :) – Null Pointer Nov 13 at 12:59
vote up 4 vote down

You can catch and attempt to recover from OutOfMemoryError (OOM) exceptions, but it is probably a bad idea ... especially if your aim is for the application to "keep going".

There are a number of reasons for this:

  1. As others have pointed out, there are better ways to manage memory resources than explicitly freeing things; i.e. using SoftReference and WeakReference for objects that could be freed if memory is short.

  2. If you wait until you actually run out of memory before freeing things, your application is likely to spend more time running the garbage collector. Depending on your JVM version and on your GC tuning parameters, the JVM can end up running the GC more and more frequently as it approaches the point at which will throw an OOM. The slowdown (in terms of the application doing useful work) can be significant. You probably want to avoid this.

  3. If the root cause of your problem is a memory leak, then the chances are that catching and recovering from the OOM will not reclaim the leaked memory. You application will keep going for a bit then OOM again, and again, and again at ever reducing intervals.

So my advice is NOT attempt to keep going from an OOM ... unless you know why it happened and know that your recovery will release enough memory to continue.

link|flag
vote up 1 vote down

It is possible, but if you run out of heap its not very useful. If there are resources which can be freed you better off using SoftReference or WeakReference to such resources and their clean-up will be automatic.

I have found it useful if you run out of direct memory before this doesn't trigger a GC automatically for some reason. So I have had cause to force a gc if I fail to allocate a direct buffer.

link|flag
vote up 0 vote down

Sure, catching OutOfMemoryError is allowed. Make sure you have a plan for what to do when it happens. You will need to free up some memory (by dropping references to objects) before allocating any more objects, or you will just run out of memory again. Sometimes the mere act of unwinding the stack a few frames will do that for you, some times you need to do something more explicit.

link|flag
vote up 0 vote down

It is possible to catch Any exception. Just write

try{
   // code which you think might throw exception
}catch(java.lang.Throwable t){
   // you got the exception. Now what??
}

Ideally you are not supposed to catch java.lang.Error exceptions. Not catching such exceptions, and letting the application to terminate might be the best solution when they occur. If you think that you can very well handle such Error's, then go ahead.

link|flag
vote up 0 vote down

As a digression - why does your application run out of memory?

Why not post a follow up question asking how to restructure the application to use less memory?

link|flag

Your Answer

Get an OpenID
or
never shown

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