-
Why assert default is not True for BoolParameter? This breaks tasks with some_parameter = BoolParameter(default=True)
Code:
https://github.com/spotify/luigi/commit/bba1ef2e93747d14db449bd94c49a2c0262…
-
The old graph looks like this:
![selection_079](https://cloud.githubusercontent.com/assets/294349/10395674/844577b6-6e9e-11e5-91ab-1a80cd0347ee.png)
and the new one looks like this:
![selection_081…
-
If I have a task that raises an error on run that can't be unpickled, it kills the whole worker immediately. Example code:
```
import luigi
class MyError(BaseException):
def __init__(self, a, b)…
-
I'm getting errors on most runs lately after shutting down the keep-alive thread. Example trace:
```
File "/usr/lib/python2.7/runpy.py", line 162, in _run_module_as_main
"__main__", fname, loade…
-
When I use a luigi.cfg file with parallel_scheduling turned on and run example1.py the log file shows:
```
2015-09-08 13:48:00 | INFO | -----------------------------------------------------------…
-
This would make error handling much simpler because the return code of a workflow would indicate whether it completed successfully. Workflows could then be run in a shell script which could check the …
boosh updated
9 years ago
-
From https://github.com/spotify/luigi/pull/1086
> The sidebar has two titles but neither one is informative and the link in the top one duplicates the Task List link. They can probably be safely remo…
-
From https://github.com/spotify/luigi/pull/1086
> First, I have a couple thousand pending tasks but only 367 show up as pending on the main page. The worker page shows more than that. Did the interna…
-
When I run the last step of the analytics devstack, I get this error:
```
$ remote-task --vagrant-path ~/Dropbox/code/analyticstack --remote-name devstack --override-config ${PWD}/config/devstack.cfg…
natea updated
9 years ago
-
See if Luigi can correctly order/handle dags that spit out interdependent nodes in the `requires` fn. This will make the tasks more reusable.