vote up 1 vote down star

I have an MDI which has a child form. The child form has a datagridview in it. I load huge amount of data in the datagrid view. When I close the child form the disposing method is called in which I dispose the datagridview

this.dataGrid.Dispose(); this.dataGrid = null;

When i close the form the memory doesnt go down. I use the .net mem profiler to track the memory usage. I see that the memory usage goes high when i initially load the data grid (as expected) and then becomes constant when the loading is complete. When i close the form it still remains constant however when i take snapshot of the memory using the mem profiler, it down to what it was before loading the file. Taking memory snapshot causes it to forcelly run garbage collector.

Any idea what is going on is there a memory leak or do i need to run garbage collector forcefully? Any help is much appreciated.

  • More info

When i am closing the form i no longer need the information that is why I am not holding a reference to the data.

flag

40% accept rate
Where are you loading the data from/what sort of object are you binding to? – RichardOD Aug 27 at 7:37
I am binding it to a DataView – SA Aug 27 at 7:48

5 Answers

vote up 3 vote down

This is normal. The garbage collector runs on it's own time, as needed. The fact that it returns to normal when the garbage collector is forced means there's no leak or permanent references keeping things around.

The real question is: Does the garbage collector need to be run? Are you using more RAM than you have physically? If not, does it really matter if you're using a bunch of physical RAM that nothing else needs?

Another really good question is, do you really need to load all the data into your application at once? But there's no way of answering that without more information.

link|flag
vote up 3 vote down

Setting a variable to null doesn't magically force the garbage collector to be invoked. GC'ing is an expensive process and should be avoided unless absolutely necessary, hence the collector only runs as and when it's scheduled to or if there is a need.

If you really need to ensure that memory is freed, manually invoke the garbage collector after you've nulled out your DataGrid:

this.dataGrid.Dispose();
this.dataGrid = null;
GC.Collect();

However, as Matthew Scharley noted, does it really matter if the CLR holds onto that memory? If you force it to be freed, then next time your DataGrid is populated the CLR needs to re-allocate the same amount of memory - which is slow.

Unless your DataGrid is consuming close to or more than the physical memory on your computer, leave the CLR alone - it almost certainly knows best when it comes to memory management.

link|flag
The other thing is, even holding on to the memory, if nothing references it, it will (eventually) simply get paged out and sit on your harddrive anyway till the GC runs and collects it. – Matthew Scharley Aug 27 at 7:52
vote up 1 vote down

Garbage collection does not happen just because you null the reference. If you object is no longer reference it will be collected at some point. Just because it is still around for a little while does not mean you have a memory leak. Furthermore even if you do garbage collect the memory will not necessarily be release to the OS immediately, so you may not see a drop in memory usage for the application.

link|flag
vote up 0 vote down

This is a useful tool for tracking down memory leaks:

SysInternals Process Explorer

link|flag
vote up 0 vote down

It is a requirement for me to load all the data at once. The memory usage goes really high when there is alot of data so I am wondering if I am doing something wrong and the garbage collector is not being run but on the other hand when I look at the profiler it does show that when it takes a snapshot the memory usage decreases. So I am unable to understand what is going on.

link|flag
Please edit your original question to provide more info. If you're loading all the data, you're probably also holding a reference to it (why else would you load it). As long as you hold references to the data it will not be collected. When you no long reference the data it will be collected at some point. – Brian Rasmussen Aug 27 at 7:56

Your Answer

Get an OpenID
or

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