I have a Dag
in air-flow
looks like that:
start >> [task1,task2,....task16] >> end
I want to limit the tasks that running simultaneously in this dag to be 4 for example.
I know there is 'max_active_tasks_per_dag'
parameters, but it affects on all dags and in my case I want to define it only for my dag.
how can I do so? it is even possible?