-
Notifications
You must be signed in to change notification settings - Fork 650
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Memory leaks while load new forms #485
Comments
I have an update. I narrowed down this issue to "Kitchen Sink" example. If I play with all other examples without ever opening "Kitchen Sink", there are no memory leaks. |
Here's more on this issue now with Firefox. I will really appreciate any help on getting to the bottom of this issue. Open demo site http://schemaform.io/examples/bootstrap-example.html. Select example "Array". Interact with form by entering name & email, observe that checkbox "Yes, I want spam" appears once valid email was entered. Interact with checkbox. Now, change example to "Simple" (so that checkbox is removed from DOM). Open a new tab with about:ccdump. Run CC Analysis. Filter by "checkbox". We now have 1 orphaned DOM element related to checkbox (specifically div that wraps checkbox, this is just to reduce the noise from all other orphan elements): Go back to example "Array" and interact with form some more. I will add 3 entries by clicking "New" button. Switch back to "Simple" example. After re-running ccdump, we can now see 4 orphan elements (1 earlier + 3 added recently) More interaction results in more orphan elements. Amount of memory retained by orphan dom elements only keeps growing: |
Hi @asednev, nice work! The first thing that springs into mind is if it's connected to the It could be that it's a leak in Angulars |
Might not be the |
...there are a lot of other ng-ifs in the templates though. So it's still worth investigating. |
@asednev I think i have it! Or at least something. I might have found two leaks. In both cases I don't know why it leaks though. Ok, so to test I use Firefox and ccdump. I load the Using this as a test I started reducing it down and down and finally I had it just adding and removing a single DOM node. Not doing a So I found if I change two things I no longer get any orphan nodes! (hurray!) The first thing is to remove the slots functionality by setting the }, slots, undefined, undefined, lookup); becomes }, undefined, undefined, undefined, lookup); Also https://github.com/Textalk/angular-schema-form/blob/development/src/services/builder.js#L167 The second thing is stranger. btw this doesn't apply to the new builder and the new bootstrap decorator. Anyways, I found that if I changed the name of the directive To change the name of the decorator just edit: https://github.com/Textalk/angular-schema-form/blob/development/src/directives/decorators/bootstrap/bootstrap-decorator.js#L4 The template Please try it yourself and see if it helps! |
Urgh.. I'm not getting any consistent results :) Still getting leaks when trying out the Sometimes it seems to leak, sometimes it doesn't. |
I hopped over to chrome to see if I get the same results and some good news. This is a timeline recording with me changing the example form on http://schemaform.io/examples/bootstrap-example.html, ending at "simple" and then finishing of with a forced GC. Look at all those DOM nodes! The same thing, but with my locally modified version (no slots, just "bootstrap" and "sfdecorator"). Ahhh... that's better :) Maybe not perfect, but much much better. |
Oh no. I might have jumped the gun just now. I can't seem to get the leak back, even if I revert back to the unpatched code (development branch). I only get the leak at http://schemaform.io/examples/bootstrap-example.html now. (When measuring with the timeline in chrome as per last post). Soo back to square one :) |
@davidlgj I have seen similar behavior when locally it will stop leaking. But than the problem re-surfaces. That was in Chrome. In Firefox, it leaks consistently. |
@asednev memory leaks are hard! Anyway. I got to get a small release out and then start transitioning to the new builder. If you can please try the things I did and test if it makes any difference. |
Thank you @davidlgj. I yet to try the things that you discovered but I will keep you posted. |
Any news here? |
ASF is breaking out its core, and is undergoing major changes for 1.0, if these issues persist in 1.0, please reopen. |
I discovered that Schema Form leaks memory. This might be similar to #200. Easiest way to reproduce the problem is to open demo.
If you examine individual heap snapshots, it's evident that memory retained by "Detached DOM Tree" and number of objects keeps growing. Something is holding on to DOM Nodes. In a bigger application this starts causing problems real fast. I will appreciate any help in isolating and fixing this issue.
The text was updated successfully, but these errors were encountered: