Does Prefect's ConcurrentTaskRunner enables task t...
# prefect-getting-started
e
Does Prefect's ConcurrentTaskRunner enables task to be run simultaneously similar to the following airflow dag? t1 >> [t2, t3]
n
hi @Eric Yoo yes! for example, this gives you something like this
its just that in prefect, you don't need to define the structure of the graph (maybe a DAG) up front, the structure of the graph emerges according to your python code
e
Got it, thanks! Works like charm