I am working with a server side application on Java 5 update 09. I am using basically XSL transformation to show some reports in pdf format.

My problem is the performance of my system is worse and worse, and at the end I get a "OutOfMemory" I incresed my heap memory from 1 to 2Gb and try to reboot everynight but it is not enough.

I have no experience managing this kind of problems. Any ideas?

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

I found Antorcha Light Memory Leak Plumber, a Lucierna Antorcha APM free tool. It automatically identifies where the memory leaks are. An the most important it is production ready, so you do not have to wait for the leak to appear. Just follow the instruction on this post:

http://ctoblog.lucierna.com/ultimate-weapon-lucierna-kill-memory-leaks/

link|improve this answer
Thanks Pedro, I will try to use it. But isn't it a profiler. is it? – user871828 Jul 31 '11 at 19:16
It is not a profiler, it is a light solution, production ready, that is the magic. Give it a try and let me know how it goes. – pedro Jul 31 '11 at 19:22
I used it, and I found the root cause! The tool pinpointed a hashmap in XMLReaderManager. It was a reported problem of XALAN: issues.apache.org/jira/browse/XALANJ-2195. Thank you so much, Pedro. – user871828 Jul 31 '11 at 21:49
feedback

Tools: VisualVM, JProfiler, YourKit. Make a repro of the problem running from an ordinary main class if you can, if not attach one of these to your app server.

link|improve this answer
Thanks, But to use this kind of tools in production enviroment will reduce the performance of it too much, Am I right ? – user871828 Jul 31 '11 at 19:11
Nope. I monitor production all the time. It's a matter of picking the right options. – bmargulies Jul 31 '11 at 20:45
feedback

Your Answer

 
or
required, but never shown

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