Finding memory leak in big app  
Author Message
Big D





PostPosted: 2003-12-13 4:38:00 Top

java-programmer, Finding memory leak in big app I have an application that uses a lot of memory (up to a gig) and I'm
trying to track a memory leak. The problem is that all of the tools I've
found can't handle such large heap sizes. They generally just run out of
memory themselves.

The bulk of the memory is taken up by double[] and char[], but I need to
know who owns these arrays so I can see why there are so many of them. Is
there any tool that will let me track object ownership, or just give me a
useful heap dump that I can parse myself?

I'm running this on red hat advanced server 4 proc/8gig ram.

I can work with any jdk that's version 1.4.0_01 or higher.

Thanks
 
Jose Rubio





PostPosted: 2003-12-13 12:04:00 Top

java-programmer >> Finding memory leak in big app Have you taken a look at JProbe? http://www.quest.com/jprobe/

Jose

"Big D" <email***@***.com> wrote in message
news:email***@***.com...
> I have an application that uses a lot of memory (up to a gig) and I'm
> trying to track a memory leak. The problem is that all of the tools I've
> found can't handle such large heap sizes. They generally just run out of
> memory themselves.
>
> The bulk of the memory is taken up by double[] and char[], but I need to
> know who owns these arrays so I can see why there are so many of them. Is
> there any tool that will let me track object ownership, or just give me a
> useful heap dump that I can parse myself?
>
> I'm running this on red hat advanced server 4 proc/8gig ram.
>
> I can work with any jdk that's version 1.4.0_01 or higher.
>
> Thanks