Skip to content
Advertisement

What is the reason for OutOfMemoryError: Java heap space in the following case?

The following code sample is inside a for loop that runs about 2 million times.

JavaScript

stack trace:

JavaScript

Please let me know if more information is required.

Thank you.

Thanks everyone for the answers. I will accept BalusC’s answer since he answered first. Unfortunately I cant upvote any other answers due to not enough reputation 🙁

Just a side note to all who suggested to increase memory heap. Increasing the memory heap is something you should never do unless you are 100 % sure that is the only solution to your problem. For example in my problem increasing the heap might ‘solve’ the problem, but the underlying blunder still remains.

Advertisement

Answer

Based on the comments, you seem to be creating the Statement and ResultSet inside the loop but never closing them. You need to close them in the loop as well. This will free up internal resources.

Also, you are not really taking benefit of the DB cache of the prepared statement. Right now you are string-concatenating the parameter in the SQL string which causes 2M String objects being created instead of 1 String object. Better prepare the statement before the loop.

JavaScript

Alternatively, you can also consider to use an IN clause instead. E.g.

JavaScript

This is however trickier with placeholders. See also: What is the best approach using JDBC for parameterizing an IN clause?

Or as a completely different alternative, if necessary with help of a more experienced DB admin / SQL ninja, rewrite the entire thing so that you get exactly the results you need with only one SQL query. Ask if necessary a separate question about that on here on SO.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement