I defined three tasks T1
, T2
, and T3
, and then a task T4
as follows:
class T4(luigi.Task)
def requires(self):
return [T1(), T2(), T3()]
Is there a natural way to tell Luigi that I want these tasks T1
, T2
, and T3
to be executed in parallel?