I have system make to monitoring a multiport hardware and camera, those camera's thread receive data to save images. This system having problem with OutOfMemory, he going allocate memory and have a OutOfMemory in 2 hours, i have 256 MB of heap memory in tomcat.

Waiting ideias, Ty...

link|improve this question
feedback

1 Answer

Looks like you have a memory leak in your code, i.e. you are somewhere keeping references to object you no longer need and thereby prevent them from being garbage collected.

To find out which objects are causing the problem and where references to them are kept, use a heap or memory profiler.

The VisualVM tool that comes with newer JDK versions includes a heap profiler that is sufficient in most cases.

link|improve this answer
1  
What he says. In addition to that, 256M for a Web application is not that much. – Elijah Saounkine Jan 24 '11 at 11:14
i gona try this, Ty Michael... – Guilherme Henrique Oliveira Jan 24 '11 at 11:33
As @Michael and @Elijah, suggest you either have a memory leak, or you really need more memory. – Peter Lawrey Jan 24 '11 at 11:59
@Elijah, @Peter: It's possible but unlikely that a legitimate lack of memory would manifest only after 2 hours. – Michael Borgwardt Jan 24 '11 at 12:08
As a matter of fact, a "leak" is also a lack of memory. With the difference of being unplanned. But in case he actually needs all that memory for images, insufficient memory will not be visible straight away, it'll take some time to fill up 256M. – Elijah Saounkine Jan 24 '11 at 12:23
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

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