I have an app which calls web worker after the button click. The calculations are moved to worker to relieve UI and make it responsive to user actions while calculations are being made.

Everything goes okay and after about 0.8-1.5s the worker sends a response. In worker.onmessage i perform all the needed DOM actions. But after this GC appears and practically blocks the UI for 2 or more seconds depending on CPU. This is really confusing me, because UI blocking is what i want to prevent.

Here's the screenshot of timeline/memory console tab: http://i.imgur.com/zUoHa.jpg

As you can see GC events happen just after all DOM manipulations. Actually there's only one repaint event (DocumentFragment is used).

main js code:

var sortWorker = new Worker('js/contactsorter.js');
sortWorker.onmessage = function(e) {
    var messages = [];
    e.data.forEach(function(userDoc) {
        var contactSection = _drawContact(userDoc);
        messages.push(contactSection);
    });

    meta.append(messages); // this actually appends document fragment as a child
};

sortWorker.postMessage(postMessageData);

contactsorter.js (worker):

onmessage = function(e) {
    var uid, output = [], usersStat = {};

    // calculations...

    postMessage(output);
    close();
};

Is there any way to avoid these GC events in this place or not?

UPD: it seems to me that GC event(s) time depends on data amount that was sent to worker. UPD2: After shutdown and boot GC events happen only twice thus blocking UI for less than a second. Hm?

link|improve this question

62% accept rate
How big are the objects? How many? What sort of numbers are we talking? What DOM nodes are you creating? Do the GC event scale linearly with the number of contacts that are sorted? – Paul Grime Sep 14 '11 at 21:02
JSON.stringify says it's about 2M.These are objects which have objects as their children. After worker response (it outputs an array) i create DocumentFragment and append approx. 400 "div" elements to it. Afterwards i append fragment to DOM. Regarding the last question - i need to rewrite my code to make the test, so i'll comment this a bit later. Btw: new UPD – Dmitry Sorin Sep 15 '11 at 4:37
Regarding the last question: no, GC event doesn't scale according to data amount. Moreover, i can't even find it on the timeline i.imgur.com/psGpr.png though for this period of time the UI is being clocked. – Dmitry Sorin Sep 15 '11 at 13:10
Strange. What are the effects on other browsers supporting web workers? Is it worth deleting your browser install and trying again? For the record I've tried a couple of heavy workers and DOM manipulations myself and not recreated your graphs - though I do get pauses and GCs. – Paul Grime Sep 15 '11 at 13:30
You might benefit by using about:memory in firefox... It not only lets you see exactly how memory is allocated, but also allows you to trigger GC. (Click the GC button at the bottom of the page.) More recent (beta/nightly) versions of Firefox will have better analysis, though it might not matter at all for your purposes. – starwed Sep 26 '11 at 17:19
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.