I have a WCF service running over MSMQ. Memory gradually increases over time, indicating that there is some sort of memory leak. I ran the service locally and monitored some counters using PerfMon. Total CLR memory managed heap bytes remains relatively constant, while the process' private bytes increases over time. This leads me to believe that there is some sort of unmanaged memory leak. Assuming that unmanaged memory leak is the issue, how do I address the issue? Are there any tools I could use to give me hints as to what is causing the unmanaged memory leak? Also, all my service is doing is reading from the transactional queue and writing to a database, all as part of a DTC transaction (handled under the hood by requiring a transaction on the service contract). I am not doing anything explicitly with COM or DllImports.

Thanks in advance!

link|improve this question
feedback

5 Answers

This blog will help you if you are willing to learn about windbg (http://www.microsoft.com/whdc/devtools/debugging/default.mspx).

http://blogs.msdn.com/tess/default.aspx

link|improve this answer
feedback

You can use Windbg to analyze the process Heap. There are some articles and cheat sheets showing how to do this, like Memory Leak Detection Using Windbg

link|improve this answer
feedback

Ants Profiler is worth considering. As far as I can remember, you can download a trial version.

link|improve this answer
3  
ANTS Profiler does not support unmanaged memory profiling. – AB Kolan May 2 '11 at 13:00
feedback

Make sure that you close the service client after using it. something like

try {
... do work ...
Close();
} ... exception handling ... {
Abort();
}
link|improve this answer
feedback

Its hard to say if its a memory leak. I'm assuming you are wrapping any of your objects that implement IDisposable in a Using block?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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