Just the other day I was investigating a memory leak that was ballooning the app from ~50MB to ~130MB in under two minutes. Turns out that the problem was with the ConcurrentQueue class. Internally, the class stores a linked list of arrays. When an item is dequeued from the ConcurrentQueue, the index in the array is bumped, but the item remains in the array (i.e. it's not set to null). The entire array node is dropped after enough enqueues/dequeues, so it's not technically a leak, but if putting large objects in the ConcurrentQueue, this can get out of hand fast. The documentation makes no note of this danger.

I was wondering what other potential memory pitfalls are in the Base Class Library? I know about the Substring one (that is, if you call substring and just hold onto the result, the whole string will still be in memory). Any others you've encountered?

link|improve this question
feedback

3 Answers

You are correct. The bug is located in the method System.Collections.Concurrent.ConcurrentQueue<T>+Segment.TryRemove(out T, ref ConcurrentQueue<T>.Segment).

If you look at this method in Reflector, you'll see the following line:

result = this.m_array[low];

There should be the following line after it:

this.m_array[low] = default(T);

For reference, you can see how this is correctly implemented in the method System.Collections.Generic.Queue<T>.Dequeue().

link|improve this answer
Yup; saw this in Reflector, too -- though I'm not sure if t would somehow break atomicity/threading? – Fraser Apr 21 '10 at 3:44
1  
No, it's definitely a bug. The bucket is protected in that region, and the code is designed to ensure that the value it contains is only ever read once. – 280Z28 Apr 21 '10 at 4:42
1  
BTW, I originally sent a report on this to someone at MS on Apr. 1. I just don't think they've had a chance to fix it yet. Unfortunately, the class is completely unusable until the issue is resolved. – 280Z28 Apr 21 '10 at 5:07
Reported to Microsoft: connect.microsoft.com/VisualStudio/feedback/details/552868/… – Fraser Apr 21 '10 at 5:09
1  
@Robert Fraser: I didn't file it at connect.microsoft.com because by the time I found it all I could do was drop a quick line to my superior and CC a contact at MS while I rewrote the code to use Queue<T> instead. – 280Z28 Apr 21 '10 at 5:16
show 2 more comments
feedback

Though not a direct memory leak or specific to .net/BCL, there is the string concatenation (using the += operator) issue. That's pretty CPU intensive in loops due to heavy garbage collecting.

link|improve this answer
Yup. Java solved this by converting it to use a StringBuilder; I don't know why .NET hasn't done the same. – Fraser Apr 20 '10 at 20:43
.NET does have the same it's just under System.Text – Aren Apr 20 '10 at 20:54
2  
The VS C# compiler is also smart enough to convert expressions like ("This " + "is" + " string #" + stringNumber) into StringBuilder internally, if it makes sense to do so. – Dan Bryant Apr 21 '10 at 0:13
1  
@Dan Bryant: Fortunately you are not correct. For the case you mention, the compiler would actually emit a call to string.Concat("This is string#", stringNumber). Literals are combined where possible, and the call is to string.Concat because it is faster than StringBuilder for a fixed number of append operations. – 280Z28 Apr 21 '10 at 5:10
@280Z28, excellent, it's even smarter than I realized. – Dan Bryant Apr 21 '10 at 13:24
feedback

The ConcurrentQueue will hold only a maximum of 31 dequeued objects. This shouldn't present a huge problem unless you're dealing with really large object graphs.

Anyway, it doesn't make sense using a ConcurrentQueue if you don't have enought space to allocate 32 objects...

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.