Memory leak SF BO with DevExpress ASPxDataGridView


Author
Message
ChanKK
ChanKK
Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)
Group: Forum Members
Posts: 190, Visits: 1.3K
Hi,

I am facing memory leak problem when using SF BusinessObject and DevExpress ASPxDataGridView.

I have simple test project, which only has one BO, bind to ASPxDataGridView. It does nothing complicated, just load all records in Page_Load if not IsPostBack.



I found that, the memory usage would become double when I just "refresh" the page. I also used dotTrace profiler and found that # of BO instances keep increasing. I suspect it is the same issue with the post http://forum.strataframe.net/Topic20903-8-1.aspx.



I have prepared sample project and the dotTrace memory profiler files for your reference. MemoryLeak1.dtm is first load memory snapshot and MemoryLeak2.dtm is 2nd snapshot after refresh.



As the file size > 30MB, please download it from http://www.visualsolutions.com.my/blog/chankk/WebApplication6.zip



Hope you could get back to me as soon as possible! It is very urgent!



Thank you
Replies
ChanKK
ChanKK
Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)
Group: Forum Members
Posts: 190, Visits: 1.3K
Sorry, one more week past. Any update?



Thank you
Trent Taylor
Trent Taylor
StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)
Group: StrataFrame Developers
Posts: 6.6K, Visits: 6.9K
Chan,

We have not reproduced your memory leak as we had mentioned in the previous comment on this topic.  In regards to your error posted about saving...I think that at this point you may be a little "gun-shy" as this has not changed in the framework in some type.  You are more than welcome to give me steps to reproduce this, but this hasn't changed, Chan.  As I mentioned in my previous post, we cannot reproduce a memory leak nor is there an issue with the transactional saves.  You may forget that we are not only framework developers, but also use the framework in developing a major medical application.  The version to which you are saying you are receiving an error regarding transactions is pushed out into the field and we use transactions heavily in all of our transaction posting.  So I am VERY confident in this code. I think that you have a cross section of assemblies from different versions or something with your structures or SPROCs that could potentially be cuasing this.  As you well know, StrataFrame is a framework for developers which means that many times when an error occurs it has nothing to do with the framework but something within the environment or code that has been developed.  This is always a balancing act to find out exactly where an issue may be occuring.  If you can provide steps to reproduce this then we will most definitely do so.  Otherwise there is nothing I can do to help.

ChanKK
ChanKK
Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)
Group: Forum Members
Posts: 190, Visits: 1.3K
Hi,

As mentioned in PM, the actual problem of Save transaction is "object reference is not set" during DataLayer.Save(). After some debugging, I found that if my web form contains more than one BO and I save all of them in a loop (within transaction), the 2nd BO.Save() will be failed.



It is caused by the connection and transaction object is null at the point of code as below.



'-- UpdateRow

'-- Set the connection

If Me.CanConnectDirectly Then

If QueryInfo.IsTransactional Then

loCommand.Transaction = CType(Me.Transactions(QueryInfo.TransactionKey), SqlTransaction)

loCommand.Connection = CType(Me.Transactions(QueryInfo.TransactionKey).Connection, SqlConnection)




The cause of both references are null, I suppose, is caused by this code





'-- Get a clone to avoid thread locking

loCommand = loCommand.Clone()



'-- Some code here



'-- Dispose of the cloned command

loCommand.Connection = Nothing

loCommand.Dispose()





As I see the cloned command object is assigned back to same variable. Then, the command.Connection is set to null as clean up.



What do you think? Please advice.



Thank you

ChanKK
ChanKK
Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)
Group: Forum Members
Posts: 190, Visits: 1.3K
Hi,

After further thinking, don't feel loCommand = loCommand.Clone() can cause this problem. hmmm...
Trent Taylor
Trent Taylor
StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)
Group: StrataFrame Developers
Posts: 6.6K, Visits: 6.9K
Agreed.  The Clone should not cause an issue as it creates a unique instance which is then fully autonomous from the other instance.
ChanKK
ChanKK
Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)Advanced StrataFrame User (622 reputation)
Group: Forum Members
Posts: 190, Visits: 1.3K
Hi,

Any hint how to troubleshoot on this?



Thank you
Trent Taylor
Trent Taylor
StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)StrataFrame Developer (14K reputation)
Group: StrataFrame Developers
Posts: 6.6K, Visits: 6.9K
Well, this thread is getting a bit ambiguous.  I was just commenting on your Clone comment.  In regards to the core of your issue, are you referring the SqlTransaction error?  The error, which you have already learned, is going to be specific to something that you are doing within your code.  So the questions to work through are:

  • When are you creating a transaction?
  • Is it possible for the same code to be called at the same time?
  • Are the objects in question specific to a session or the application?
  • Are you using shared data tables?
  • If you turn off transactions do your issues go away?

These are types of things that you need to be asking yourself.  Only you know your exact code and what you have done at this point.  This code is going to be related to your specific application.  So I would begin to work through these questions.

GO

Merge Selected

Merge into selected topic...



Merge into merge target...



Merge into a specific topic ID...




Threaded View
Threaded View
ChanKK - 16 Years Ago
Trent L. Taylor - 16 Years Ago
ChanKK - 16 Years Ago
Trent L. Taylor - 16 Years Ago
ChanKK - 16 Years Ago
Trent L. Taylor - 16 Years Ago
                         Hi,
May I know any update? Do you think it could be solved in...
ChanKK - 16 Years Ago
                             We are looking at this right now and trying to reproduce. Should know...
Trent L. Taylor - 16 Years Ago
                                 Just FYI, your sample is missing the BusinessobjectLibrary6 project....
Trent L. Taylor - 16 Years Ago
                                     Hi,
I have attached the missing project.
Beside, I spent...
ChanKK - 16 Years Ago
                                     Sorry that this has taken so long, but in this instance, there is no...
Trent L. Taylor - 16 Years Ago
                                         Hi,
Shall you please test using DevExpress 8.2?
I will ask...
ChanKK - 16 Years Ago
                                         [quote][b]Trent L. Taylor (03/18/2009)[/b]

Finally, the...
ChanKK - 16 Years Ago
                                             That particular method doesn't play into this. However, we have made a...
Trent L. Taylor - 16 Years Ago
                                                 Hi,
I have tested with the fix you sent, but when refresh the...
ChanKK - 16 Years Ago
                                                     Sorry, this exception was easily reproducable and we already have a...
Trent L. Taylor - 16 Years Ago
                                                         Hi,
I tested it and it fixed the problem. I will release it to...
ChanKK - 16 Years Ago
                                         Hi,
After some more testing, I still found "memory leak". When I...
ChanKK - 16 Years Ago
                                             Chan, The screen shot you provided doesn't do me any good. We have...
Trent L. Taylor - 16 Years Ago
                                                 Hi,
OK, I will prepare sample for it.

However, I would...
ChanKK - 16 Years Ago
                                                     [quote]Does 1.6.6.9 include the memory leak fix as well?[/quote] Yes....
Trent L. Taylor - 16 Years Ago
                                                         Hi,
I have created sample project, which is exactly the same as...
ChanKK - 16 Years Ago
ChanKK - 16 Years Ago
Trent L. Taylor - 16 Years Ago
ChanKK - 16 Years Ago
ChanKK - 16 Years Ago
ChanKK - 16 Years Ago
                         Chan, We have looked at this from a number of angles. I am at a loss...
Trent L. Taylor - 16 Years Ago
                             Hi,
I hope you do not misunderstand me, I do appreciate SF help...
ChanKK - 16 Years Ago
                             Hi,
[quote]Some of your issues are coming from retrieving vast...
ChanKK - 16 Years Ago
                                 Chan, I appreciate your comments. We too appreciate you and your...
Trent L. Taylor - 16 Years Ago
                                     Hi,
Any status?

Beside, as promised I have downloaded...
ChanKK - 16 Years Ago
                                         Hi,
BTW, the error posted just now happen to all page that...
ChanKK - 16 Years Ago
                                             Sorry, one more week past. Any update?

Thank you
ChanKK - 16 Years Ago
                                                 Chan, We have not reproduced your memory leak as we had mentioned in...
Trent L. Taylor - 16 Years Ago
                                                     Hi,
As mentioned in PM, the actual problem of Save transaction is...
ChanKK - 16 Years Ago
                                                         Hi,
After further thinking, don't feel loCommand =...
ChanKK - 16 Years Ago
                                                             Agreed. The Clone should not cause an issue as it creates a unique...
Trent L. Taylor - 16 Years Ago
                                                                 Hi,
Any hint how to troubleshoot on this?

Thank you
ChanKK - 16 Years Ago
                                                                     Well, this thread is getting a bit ambiguous. I was just commenting on...
Trent L. Taylor - 16 Years Ago
                                     Hi,
After some further testing, I think I found the root cause of...
ChanKK - 16 Years Ago
                                         Glad you found a solution. We will take this post into consideration...
Trent L. Taylor - 16 Years Ago
ChanKK - 15 Years Ago
Trent L. Taylor - 15 Years Ago
Trent L. Taylor - 15 Years Ago
Trent L. Taylor - 15 Years Ago
ChanKK - 15 Years Ago
Trent L. Taylor - 15 Years Ago
ChanKK - 15 Years Ago
ChanKK - 15 Years Ago
Ivan George Borges - 15 Years Ago
ChanKK - 15 Years Ago
Ivan George Borges - 15 Years Ago
                         Hi Could you reproduce the memory leak issue? I need solution ASAP....
ChanKK - 15 Years Ago
                             Sorry Chan, not yet.
Ivan George Borges - 15 Years Ago
ChanKK - 15 Years Ago
ChanKK - 15 Years Ago
Ivan George Borges - 15 Years Ago
ChanKK - 15 Years Ago
Ivan George Borges - 15 Years Ago
                         [quote][b]Ivan George Borges (10/29/2010)[/b][hr]Hi Chan. Well,...
ChanKK - 15 Years Ago
                             Thanks for posting, Chan. I will reproduce here just in case we loose...
Ivan George Borges - 15 Years Ago
ChanKK - 15 Years Ago
Ivan George Borges - 15 Years Ago
ChanKK - 15 Years Ago
             Not yet, Chan.
Ivan George Borges - 15 Years Ago
ChanKK - 15 Years Ago
ChanKK - 15 Years Ago
Ivan George Borges - 15 Years Ago
ChanKK - 15 Years Ago
Ivan George Borges - 15 Years Ago
     any updates??
ChanKK - 15 Years Ago
             No Chan, not yet.
Ivan George Borges - 15 Years Ago
ChanKK - 15 Years Ago
Ivan George Borges - 15 Years Ago
Trent L. Taylor - 14 Years Ago
ChanKK - 14 Years Ago
Trent L. Taylor - 14 Years Ago
ChanKK - 14 Years Ago
ChanKK - 14 Years Ago
Trent L. Taylor - 14 Years Ago
ChanKK - 14 Years Ago
ChanKK - 14 Years Ago
ChanKK - 14 Years Ago
Trent L. Taylor - 14 Years Ago
ChanKK - 14 Years Ago
ChanKK - 14 Years Ago
Trent L. Taylor - 14 Years Ago
ChanKK - 14 Years Ago
Trent L. Taylor - 14 Years Ago
ChanKK - 14 Years Ago
Trent L. Taylor - 14 Years Ago
Peter Jones - 14 Years Ago
ChanKK - 14 Years Ago
ChanKK - 14 Years Ago
ChanKK - 14 Years Ago

Similar Topics

Reading This Topic

Login

Explore
Messages
Mentions
Search