Replies: 2 comments 5 replies
-
Nope. Dependency of tasks is denoted by
The set vs. List makes no difference there, I think you should be able to use both list and set, what matters is that this is iterable, of a number of tasks. |
Beta Was this translation helpful? Give feedback.
1 reply
-
To make my question clear. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I am new to
airflow
.I have a suggestion about the syntax of the way we define downstream tasks.
task_a >> [task_b, task_c]
When I am looking at the above code, I thought like after execution of
task_a
, there will betask_b
triggered and thentask_c
, which is misunderstanding.So how about the following code ?
task_a >> {task_b, task_c}
Plus,

Tree View
of a DAG in the Airflow web console shows non sequential order as well:Beta Was this translation helpful? Give feedback.
All reactions