Remedy stuck finalizes without calling GC manually












-1















We have a certain set of actions in our C# application which causes the RAM to continue to grow until the form closes. This form is long lived and some users will not close this form for the entire day.



Basically, Form frmRelationalSearch calls Form frmCombinedSearch to search a person on, and Form frmCombinedSearch will return the person back to Form frmRelationalSearch when Form frmCombinedSearch closes. Form frmRelationalSearch is the long lived form here, while Form frmCombinedSearch seems to be the one causing problems.



For testing purposes, I've manually added in GC.Collect() and GC.WaitForPendingFinalizers() on each person search cycle to see if it is truly a memory leak. I've realized that the form frmCombinedSearch does indeed get collected by the GC and probably is only living long because of it being in the finalizer queue. What I don't get is how to remedy the problem of the growing RAM usage without manually calling GC.Collect() and GC.WaitForPendingFinalizers() in our code wince this is a bad practice.



I've confirmed this using dotMemory and ANTS memory profilers.



How should I handle this? Is it acceptable to call the GC manually in this case?



This is the code right now:



private void btnSearch_Click(object sender, EventArgs e)
{
// Without these three lines, the RAM will continue to grow until
// this form (frmRelationalSearch) is closed.

// GC.Collect();
// GC.WaitForPendingFinalizers();
// GC.Collect();

frmCombinedSearch frm = new frmCombinedSearch();
try
{
// Custom code which just shows the form in the current tab
frm.ShowInTab(this.ParentTabPage);
}
catch (Exception ex)
{
this.ShowException(ex);
}
}


In both analyzers, frmCombinedSearch gets retained because of the finalizer queue.



EDIT:
ShowInTab() is non-blocking so I can't use a using statement to dispose of it because it would just be disposed right after it's created.










share|improve this question

























  • Are you disposing frmCombinedSearch ?

    – Michael Randall
    Jan 3 at 1:24













  • Can't you move the frmCombinedSearch Form logic into a UserControl? Since you apparently want to show that Form inside a TabControl (is it?). So you just need to create the UC once and you can manage and dispose of its resources directly. Btw, you're not showing how/when you're disposing of the frm object(s).

    – Jimi
    Jan 3 at 1:26











  • frmCombineSearch has Dispose called on the forms close event from the designer file. I can't use a using statement because if I do, then I will dispose of the form entirely when it's still visible in the TabControl. I would just be opening it and closing it right after.

    – Jimenemex
    Jan 3 at 1:31











  • Yes, you can and no you cannot call dispose() inside the Form class. The class disposes of the resources it initializes, not of itself. You need to dispose of the frm object you create in the caller class (frmRelationalSearch).

    – Jimi
    Jan 3 at 1:36













  • frmRelationalSearch is Disposed when it's closed because it's shown with form.Show() inside the ShowInTab() method. After a search is done, then it will close.

    – Jimenemex
    Jan 3 at 1:48


















-1















We have a certain set of actions in our C# application which causes the RAM to continue to grow until the form closes. This form is long lived and some users will not close this form for the entire day.



Basically, Form frmRelationalSearch calls Form frmCombinedSearch to search a person on, and Form frmCombinedSearch will return the person back to Form frmRelationalSearch when Form frmCombinedSearch closes. Form frmRelationalSearch is the long lived form here, while Form frmCombinedSearch seems to be the one causing problems.



For testing purposes, I've manually added in GC.Collect() and GC.WaitForPendingFinalizers() on each person search cycle to see if it is truly a memory leak. I've realized that the form frmCombinedSearch does indeed get collected by the GC and probably is only living long because of it being in the finalizer queue. What I don't get is how to remedy the problem of the growing RAM usage without manually calling GC.Collect() and GC.WaitForPendingFinalizers() in our code wince this is a bad practice.



I've confirmed this using dotMemory and ANTS memory profilers.



How should I handle this? Is it acceptable to call the GC manually in this case?



This is the code right now:



private void btnSearch_Click(object sender, EventArgs e)
{
// Without these three lines, the RAM will continue to grow until
// this form (frmRelationalSearch) is closed.

// GC.Collect();
// GC.WaitForPendingFinalizers();
// GC.Collect();

frmCombinedSearch frm = new frmCombinedSearch();
try
{
// Custom code which just shows the form in the current tab
frm.ShowInTab(this.ParentTabPage);
}
catch (Exception ex)
{
this.ShowException(ex);
}
}


In both analyzers, frmCombinedSearch gets retained because of the finalizer queue.



EDIT:
ShowInTab() is non-blocking so I can't use a using statement to dispose of it because it would just be disposed right after it's created.










share|improve this question

























  • Are you disposing frmCombinedSearch ?

    – Michael Randall
    Jan 3 at 1:24













  • Can't you move the frmCombinedSearch Form logic into a UserControl? Since you apparently want to show that Form inside a TabControl (is it?). So you just need to create the UC once and you can manage and dispose of its resources directly. Btw, you're not showing how/when you're disposing of the frm object(s).

    – Jimi
    Jan 3 at 1:26











  • frmCombineSearch has Dispose called on the forms close event from the designer file. I can't use a using statement because if I do, then I will dispose of the form entirely when it's still visible in the TabControl. I would just be opening it and closing it right after.

    – Jimenemex
    Jan 3 at 1:31











  • Yes, you can and no you cannot call dispose() inside the Form class. The class disposes of the resources it initializes, not of itself. You need to dispose of the frm object you create in the caller class (frmRelationalSearch).

    – Jimi
    Jan 3 at 1:36













  • frmRelationalSearch is Disposed when it's closed because it's shown with form.Show() inside the ShowInTab() method. After a search is done, then it will close.

    – Jimenemex
    Jan 3 at 1:48
















-1












-1








-1








We have a certain set of actions in our C# application which causes the RAM to continue to grow until the form closes. This form is long lived and some users will not close this form for the entire day.



Basically, Form frmRelationalSearch calls Form frmCombinedSearch to search a person on, and Form frmCombinedSearch will return the person back to Form frmRelationalSearch when Form frmCombinedSearch closes. Form frmRelationalSearch is the long lived form here, while Form frmCombinedSearch seems to be the one causing problems.



For testing purposes, I've manually added in GC.Collect() and GC.WaitForPendingFinalizers() on each person search cycle to see if it is truly a memory leak. I've realized that the form frmCombinedSearch does indeed get collected by the GC and probably is only living long because of it being in the finalizer queue. What I don't get is how to remedy the problem of the growing RAM usage without manually calling GC.Collect() and GC.WaitForPendingFinalizers() in our code wince this is a bad practice.



I've confirmed this using dotMemory and ANTS memory profilers.



How should I handle this? Is it acceptable to call the GC manually in this case?



This is the code right now:



private void btnSearch_Click(object sender, EventArgs e)
{
// Without these three lines, the RAM will continue to grow until
// this form (frmRelationalSearch) is closed.

// GC.Collect();
// GC.WaitForPendingFinalizers();
// GC.Collect();

frmCombinedSearch frm = new frmCombinedSearch();
try
{
// Custom code which just shows the form in the current tab
frm.ShowInTab(this.ParentTabPage);
}
catch (Exception ex)
{
this.ShowException(ex);
}
}


In both analyzers, frmCombinedSearch gets retained because of the finalizer queue.



EDIT:
ShowInTab() is non-blocking so I can't use a using statement to dispose of it because it would just be disposed right after it's created.










share|improve this question
















We have a certain set of actions in our C# application which causes the RAM to continue to grow until the form closes. This form is long lived and some users will not close this form for the entire day.



Basically, Form frmRelationalSearch calls Form frmCombinedSearch to search a person on, and Form frmCombinedSearch will return the person back to Form frmRelationalSearch when Form frmCombinedSearch closes. Form frmRelationalSearch is the long lived form here, while Form frmCombinedSearch seems to be the one causing problems.



For testing purposes, I've manually added in GC.Collect() and GC.WaitForPendingFinalizers() on each person search cycle to see if it is truly a memory leak. I've realized that the form frmCombinedSearch does indeed get collected by the GC and probably is only living long because of it being in the finalizer queue. What I don't get is how to remedy the problem of the growing RAM usage without manually calling GC.Collect() and GC.WaitForPendingFinalizers() in our code wince this is a bad practice.



I've confirmed this using dotMemory and ANTS memory profilers.



How should I handle this? Is it acceptable to call the GC manually in this case?



This is the code right now:



private void btnSearch_Click(object sender, EventArgs e)
{
// Without these three lines, the RAM will continue to grow until
// this form (frmRelationalSearch) is closed.

// GC.Collect();
// GC.WaitForPendingFinalizers();
// GC.Collect();

frmCombinedSearch frm = new frmCombinedSearch();
try
{
// Custom code which just shows the form in the current tab
frm.ShowInTab(this.ParentTabPage);
}
catch (Exception ex)
{
this.ShowException(ex);
}
}


In both analyzers, frmCombinedSearch gets retained because of the finalizer queue.



EDIT:
ShowInTab() is non-blocking so I can't use a using statement to dispose of it because it would just be disposed right after it's created.







c# winforms memory-leaks garbage-collection






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 3 at 14:21







Jimenemex

















asked Jan 3 at 1:10









JimenemexJimenemex

2,1071525




2,1071525













  • Are you disposing frmCombinedSearch ?

    – Michael Randall
    Jan 3 at 1:24













  • Can't you move the frmCombinedSearch Form logic into a UserControl? Since you apparently want to show that Form inside a TabControl (is it?). So you just need to create the UC once and you can manage and dispose of its resources directly. Btw, you're not showing how/when you're disposing of the frm object(s).

    – Jimi
    Jan 3 at 1:26











  • frmCombineSearch has Dispose called on the forms close event from the designer file. I can't use a using statement because if I do, then I will dispose of the form entirely when it's still visible in the TabControl. I would just be opening it and closing it right after.

    – Jimenemex
    Jan 3 at 1:31











  • Yes, you can and no you cannot call dispose() inside the Form class. The class disposes of the resources it initializes, not of itself. You need to dispose of the frm object you create in the caller class (frmRelationalSearch).

    – Jimi
    Jan 3 at 1:36













  • frmRelationalSearch is Disposed when it's closed because it's shown with form.Show() inside the ShowInTab() method. After a search is done, then it will close.

    – Jimenemex
    Jan 3 at 1:48





















  • Are you disposing frmCombinedSearch ?

    – Michael Randall
    Jan 3 at 1:24













  • Can't you move the frmCombinedSearch Form logic into a UserControl? Since you apparently want to show that Form inside a TabControl (is it?). So you just need to create the UC once and you can manage and dispose of its resources directly. Btw, you're not showing how/when you're disposing of the frm object(s).

    – Jimi
    Jan 3 at 1:26











  • frmCombineSearch has Dispose called on the forms close event from the designer file. I can't use a using statement because if I do, then I will dispose of the form entirely when it's still visible in the TabControl. I would just be opening it and closing it right after.

    – Jimenemex
    Jan 3 at 1:31











  • Yes, you can and no you cannot call dispose() inside the Form class. The class disposes of the resources it initializes, not of itself. You need to dispose of the frm object you create in the caller class (frmRelationalSearch).

    – Jimi
    Jan 3 at 1:36













  • frmRelationalSearch is Disposed when it's closed because it's shown with form.Show() inside the ShowInTab() method. After a search is done, then it will close.

    – Jimenemex
    Jan 3 at 1:48



















Are you disposing frmCombinedSearch ?

– Michael Randall
Jan 3 at 1:24







Are you disposing frmCombinedSearch ?

– Michael Randall
Jan 3 at 1:24















Can't you move the frmCombinedSearch Form logic into a UserControl? Since you apparently want to show that Form inside a TabControl (is it?). So you just need to create the UC once and you can manage and dispose of its resources directly. Btw, you're not showing how/when you're disposing of the frm object(s).

– Jimi
Jan 3 at 1:26





Can't you move the frmCombinedSearch Form logic into a UserControl? Since you apparently want to show that Form inside a TabControl (is it?). So you just need to create the UC once and you can manage and dispose of its resources directly. Btw, you're not showing how/when you're disposing of the frm object(s).

– Jimi
Jan 3 at 1:26













frmCombineSearch has Dispose called on the forms close event from the designer file. I can't use a using statement because if I do, then I will dispose of the form entirely when it's still visible in the TabControl. I would just be opening it and closing it right after.

– Jimenemex
Jan 3 at 1:31





frmCombineSearch has Dispose called on the forms close event from the designer file. I can't use a using statement because if I do, then I will dispose of the form entirely when it's still visible in the TabControl. I would just be opening it and closing it right after.

– Jimenemex
Jan 3 at 1:31













Yes, you can and no you cannot call dispose() inside the Form class. The class disposes of the resources it initializes, not of itself. You need to dispose of the frm object you create in the caller class (frmRelationalSearch).

– Jimi
Jan 3 at 1:36







Yes, you can and no you cannot call dispose() inside the Form class. The class disposes of the resources it initializes, not of itself. You need to dispose of the frm object you create in the caller class (frmRelationalSearch).

– Jimi
Jan 3 at 1:36















frmRelationalSearch is Disposed when it's closed because it's shown with form.Show() inside the ShowInTab() method. After a search is done, then it will close.

– Jimenemex
Jan 3 at 1:48







frmRelationalSearch is Disposed when it's closed because it's shown with form.Show() inside the ShowInTab() method. After a search is done, then it will close.

– Jimenemex
Jan 3 at 1:48














2 Answers
2






active

oldest

votes


















0














WinForms need to be closed or disposed (link). I recommend using using.



private void btnSearch_Click(object sender, EventArgs e)
{
using (frmCombinedSearch frm = new frmCombinedSearch())
{
try
{
// Custom code which just shows the form in the current tab
frm.ShowInTab(this.ParentTabPage);
}
catch (Exception ex)
{
this.ShowException(ex);
}
}
}





share|improve this answer































    0














    Are frmCombinedSearch and frmRelationalSearch disposable? If it is you can implement a using so it is collected once closed.



    something like below:



    using(frmCombinedSearch frm = new frmCombinedSearch()){
    try {
    frm.ShowInTab(this.ParentTabPage); }
    catch(Exception ex) {
    this.ShowException(ex); } }





    share|improve this answer
























      Your Answer






      StackExchange.ifUsing("editor", function () {
      StackExchange.using("externalEditor", function () {
      StackExchange.using("snippets", function () {
      StackExchange.snippets.init();
      });
      });
      }, "code-snippets");

      StackExchange.ready(function() {
      var channelOptions = {
      tags: "".split(" "),
      id: "1"
      };
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function() {
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled) {
      StackExchange.using("snippets", function() {
      createEditor();
      });
      }
      else {
      createEditor();
      }
      });

      function createEditor() {
      StackExchange.prepareEditor({
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: true,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      bindNavPrevention: true,
      postfix: "",
      imageUploader: {
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      },
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      });


      }
      });














      draft saved

      draft discarded


















      StackExchange.ready(
      function () {
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54015151%2fremedy-stuck-finalizes-without-calling-gc-manually%23new-answer', 'question_page');
      }
      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      0














      WinForms need to be closed or disposed (link). I recommend using using.



      private void btnSearch_Click(object sender, EventArgs e)
      {
      using (frmCombinedSearch frm = new frmCombinedSearch())
      {
      try
      {
      // Custom code which just shows the form in the current tab
      frm.ShowInTab(this.ParentTabPage);
      }
      catch (Exception ex)
      {
      this.ShowException(ex);
      }
      }
      }





      share|improve this answer




























        0














        WinForms need to be closed or disposed (link). I recommend using using.



        private void btnSearch_Click(object sender, EventArgs e)
        {
        using (frmCombinedSearch frm = new frmCombinedSearch())
        {
        try
        {
        // Custom code which just shows the form in the current tab
        frm.ShowInTab(this.ParentTabPage);
        }
        catch (Exception ex)
        {
        this.ShowException(ex);
        }
        }
        }





        share|improve this answer


























          0












          0








          0







          WinForms need to be closed or disposed (link). I recommend using using.



          private void btnSearch_Click(object sender, EventArgs e)
          {
          using (frmCombinedSearch frm = new frmCombinedSearch())
          {
          try
          {
          // Custom code which just shows the form in the current tab
          frm.ShowInTab(this.ParentTabPage);
          }
          catch (Exception ex)
          {
          this.ShowException(ex);
          }
          }
          }





          share|improve this answer













          WinForms need to be closed or disposed (link). I recommend using using.



          private void btnSearch_Click(object sender, EventArgs e)
          {
          using (frmCombinedSearch frm = new frmCombinedSearch())
          {
          try
          {
          // Custom code which just shows the form in the current tab
          frm.ShowInTab(this.ParentTabPage);
          }
          catch (Exception ex)
          {
          this.ShowException(ex);
          }
          }
          }






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Jan 3 at 1:28









          John WuJohn Wu

          31.4k42754




          31.4k42754

























              0














              Are frmCombinedSearch and frmRelationalSearch disposable? If it is you can implement a using so it is collected once closed.



              something like below:



              using(frmCombinedSearch frm = new frmCombinedSearch()){
              try {
              frm.ShowInTab(this.ParentTabPage); }
              catch(Exception ex) {
              this.ShowException(ex); } }





              share|improve this answer




























                0














                Are frmCombinedSearch and frmRelationalSearch disposable? If it is you can implement a using so it is collected once closed.



                something like below:



                using(frmCombinedSearch frm = new frmCombinedSearch()){
                try {
                frm.ShowInTab(this.ParentTabPage); }
                catch(Exception ex) {
                this.ShowException(ex); } }





                share|improve this answer


























                  0












                  0








                  0







                  Are frmCombinedSearch and frmRelationalSearch disposable? If it is you can implement a using so it is collected once closed.



                  something like below:



                  using(frmCombinedSearch frm = new frmCombinedSearch()){
                  try {
                  frm.ShowInTab(this.ParentTabPage); }
                  catch(Exception ex) {
                  this.ShowException(ex); } }





                  share|improve this answer













                  Are frmCombinedSearch and frmRelationalSearch disposable? If it is you can implement a using so it is collected once closed.



                  something like below:



                  using(frmCombinedSearch frm = new frmCombinedSearch()){
                  try {
                  frm.ShowInTab(this.ParentTabPage); }
                  catch(Exception ex) {
                  this.ShowException(ex); } }






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Jan 3 at 1:30









                  SlipochSlipoch

                  417313




                  417313






























                      draft saved

                      draft discarded




















































                      Thanks for contributing an answer to Stack Overflow!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid



                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.


                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function () {
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54015151%2fremedy-stuck-finalizes-without-calling-gc-manually%23new-answer', 'question_page');
                      }
                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      MongoDB - Not Authorized To Execute Command

                      Npm cannot find a required file even through it is in the searched directory

                      in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith