Sometime between 1.7.0 and 1.7.1 (revision 262) the following line was added to ConnectionBase.MainLoop in the RabbitMQ .NET driver:<br><br>� Thread.GetDomain().DomainUnload += new EventHandler(HandleDomainUnload);<br><br>
I&#39;ve found no place in the code where this event is unregistered, leading to a memory leak every time a connection is disposed.� The following reference chain compounds this problem if you send large messages and create/dispose a large number of connections:<br>
<br>� DomainUnload -&gt; Connection -&gt; SocketFrameHandler -&gt; NetworkBinaryReader/Writer -&gt; BufferedStream<br><br>We&#39;re currently seeing the symptoms of this in our production environment where one of our processes (which usually settles in around 300mb) grows upwards of 4gig over a 12 to 18 hour period.<br>
<br>I believe you can work around this by either rolling back to the 1.7.0 driver, or commenting out that line of code.� We&#39;re currently pushing out a custom build of the driver to verify this fix, but it will be a few hours until I know for sure.<br>
<br>Thanks,<br>Bryan<br>