You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The luigi scheduler doesn't seem to cope well with a huge amount (300,000 in my test) of scheduled tasks (siblings in the dependency graph). Scheduling becomes the bottleneck and load is not distributed over available workers.
Attempting to bypass this issue by grouping tasks in batches...
The text was updated successfully, but these errors were encountered:
This has been stalled for some time due to other priorities and depends on resolution of spotify/luigi#1750 (non-trivial); I hope to get time to dive into it soon..
proycon
added a commit
to proycon/luigi
that referenced
this issue
Jan 31, 2017
…ical sort, so next tasks can be obtained from the scheduler in O(1) instead of O(n). Deals with issue spotify#1750 for LanguageMachines/LuigiNLP#4. Still contains lots of debug statements and breaks certain stuff.
The above patch for Luigi works but needs further testing and may break other behaviour. Not merged into master yet. Waiting to see if further action is needed.
The luigi scheduler doesn't seem to cope well with a huge amount (300,000 in my test) of scheduled tasks (siblings in the dependency graph). Scheduling becomes the bottleneck and load is not distributed over available workers.
Attempting to bypass this issue by grouping tasks in batches...
The text was updated successfully, but these errors were encountered: