Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(691)

Issue 507873003: [Blink-Worker] WorkerThread fires idleHandler only at the end of processing all tasks. (Closed)

Created:
6 years, 3 months ago by Mayur Kankanwadi
Modified:
3 years, 3 months ago
CC:
blink-reviews, falken, horo+watch_chromium.org, kinuko+worker_chromium.org, lgombos
Base URL:
https://chromium.googlesource.com/chromium/blink.git@master
Project:
blink
Visibility:
Public.

Description

[Blink-Worker] WorkerThread fires idleHandler only at the end of processing all tasks. This CL allows Workerthread to keep a count of tasks queued up. Once all the tasks are run, only then the idleHandler is triggered once to GC. The idleHandler is then only trigerred once any new task is posted. BUG=401057

Patch Set 1 #

Patch Set 2 : Removed spurious new line deletion. #

Total comments: 13

Patch Set 3 : Review comments incorporated. #

Patch Set 4 : Rebased on top of shared timer duplicate task CL. #

Patch Set 5 : WIP upload. Most of the logic implemented, but still firing too many idlehandlers. #

Patch Set 6 : Implemented new idleHandler firing logic. #

Total comments: 11

Patch Set 7 : Updated logic to cancel events and other nits. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+130 lines, -40 lines) Patch
M Source/core/workers/WorkerThread.h View 1 2 3 4 5 6 4 chunks +36 lines, -0 lines 0 comments Download
M Source/core/workers/WorkerThread.cpp View 1 2 3 4 5 6 4 chunks +94 lines, -40 lines 0 comments Download

Messages

Total messages: 31 (7 generated)
Mayur Kankanwadi
mayurk.vk@samsung.com changed reviewers: + jochen@chromium.org
6 years, 3 months ago (2014-08-28 14:38:22 UTC) #1
Mayur Kankanwadi
Hi, This is the implementation which avoids firing idlehandler routinely. Please review this. Regards.
6 years, 3 months ago (2014-08-28 14:38:22 UTC) #2
jochen (gone - plz use gerrit)
some initial comments. While trying to phrase my comments and reading through the code, I ...
6 years, 3 months ago (2014-09-02 10:14:14 UTC) #3
Mayur Kankanwadi
On 2014/09/02 10:14:14, jochen wrote: > some initial comments. > > While trying to phrase ...
6 years, 3 months ago (2014-09-02 14:03:21 UTC) #4
jochen (gone - plz use gerrit)
On 2014/09/02 at 14:03:21, mayurk.vk wrote: > On 2014/09/02 10:14:14, jochen wrote: > > some ...
6 years, 3 months ago (2014-09-02 14:41:34 UTC) #5
Mayur Kankanwadi
Incorporated the comments. Will upload the new patch soon. https://codereview.chromium.org/507873003/diff/20001/Source/core/workers/WorkerThread.cpp File Source/core/workers/WorkerThread.cpp (right): https://codereview.chromium.org/507873003/diff/20001/Source/core/workers/WorkerThread.cpp#newcode171 Source/core/workers/WorkerThread.cpp:171: ...
6 years, 3 months ago (2014-09-03 11:26:22 UTC) #6
Mayur Kankanwadi
Hi jochen, Please review the latest patch. Regards.
6 years, 3 months ago (2014-09-03 11:29:02 UTC) #7
jochen (gone - plz use gerrit)
can we first fix the shared timer before proceeding with this patch?
6 years, 3 months ago (2014-09-04 10:22:23 UTC) #8
Mayur Kankanwadi
On 2014/09/04 10:22:23, jochen wrote: > can we first fix the shared timer before proceeding ...
6 years, 3 months ago (2014-09-04 12:02:30 UTC) #9
jochen (gone - plz use gerrit)
now that the timer issue is fixed, should we continue on this CL?
6 years, 2 months ago (2014-10-07 14:32:36 UTC) #10
Mayur Kankanwadi
On 2014/10/07 14:32:36, jochen wrote: > now that the timer issue is fixed, should we ...
6 years, 2 months ago (2014-10-07 14:54:14 UTC) #11
jochen (gone - plz use gerrit)
+ross we're trying to make the scheduling of the idle task on a worker thread ...
6 years, 2 months ago (2014-10-08 14:11:47 UTC) #13
jochen (gone - plz use gerrit)
so here's what I'd like to have on a high level. when the last task ...
6 years, 2 months ago (2014-10-09 11:21:35 UTC) #14
Mayur Kankanwadi
Hi Jochen, I have updated the idleHandler firing logic as per your suggestions. PTAL. Thanks.
6 years, 2 months ago (2014-10-13 12:23:29 UTC) #15
jochen (gone - plz use gerrit)
hum, so now if I post a task at 0s, it'll schedule a idle task ...
6 years, 2 months ago (2014-10-14 13:46:03 UTC) #16
Mayur Kankanwadi
On 2014/10/14 13:46:03, jochen (OOO) wrote: > hum, so now if I post a task ...
6 years, 1 month ago (2014-11-04 06:36:40 UTC) #17
Mayur Kankanwadi
https://codereview.chromium.org/507873003/diff/100001/Source/core/workers/WorkerThread.cpp File Source/core/workers/WorkerThread.cpp (right): https://codereview.chromium.org/507873003/diff/100001/Source/core/workers/WorkerThread.cpp#newcode466 Source/core/workers/WorkerThread.cpp:466: OwnPtr<WorkerThreadTask> idleHandlerTask = WorkerThreadTask::create(*this, On 2014/10/14 13:46:03, jochen (OOO) ...
6 years, 1 month ago (2014-11-04 06:36:58 UTC) #18
Mayur Kankanwadi
Hi jochen, I have updated the logic as per your comments. PTAL. Thanks.
6 years, 1 month ago (2014-11-05 09:00:28 UTC) #19
jochen (gone - plz use gerrit)
+sullivan who I talked to about this patch last week. Sorry for the long delay ...
6 years, 1 month ago (2014-11-09 22:39:26 UTC) #21
Sami
Hi Mayur, It looks like your patch has some overlap with the idle GC tasks ...
6 years, 1 month ago (2014-11-10 11:42:37 UTC) #23
rmcilroy
On 2014/11/10 11:42:37, Sami wrote: > Hi Mayur, > > It looks like your patch ...
6 years, 1 month ago (2014-11-10 11:57:55 UTC) #26
Sami
On 2014/11/10 11:57:55, rmcilroy wrote: > Sami: Just in case you don't realise, this is ...
6 years, 1 month ago (2014-11-10 13:42:05 UTC) #27
jochen (gone - plz use gerrit)
On 2014/11/04 at 06:36:40, mayurk.vk wrote: > Hi jochen, > What would be the effect ...
6 years, 1 month ago (2014-11-10 13:57:03 UTC) #28
Mayur Kankanwadi
6 years, 1 month ago (2014-11-13 14:34:42 UTC) #29
On 2014/11/10 13:57:03, jochen (slow) wrote:
> On 2014/11/04 at 06:36:40, mayurk.vk wrote:
> > Hi jochen,
> > What would be the effect of letting the gc fire too close to the completion
of
> the last task?
> > Would it be too aggressive GC?
> > Regards.
> 
> GC can take some time, and if we're not idle for an extended period of time,
we
> have to assume that the worker is busy doing something else.

Hi All,
Sorry for the delay in updates.
I am currently stuck with some other matters.
Hope to resolve them soon.
So please bear with me.
Best regards,
Mayur Kankanwadi.

Powered by Google App Engine
This is Rietveld 408576698