cavalcantelucas
cavalcantelucas

Reputation: 1382

How to run only a part of the DAG in Airflow?

Is it possible to run only a part of the DAG in Airflow?

I know one can run a single task. But is it possible to run a set of linked tasks within the DAG?

Upvotes: 0

Views: 3456

Answers (1)

strider
strider

Reputation: 702

Yes, it's possible. You can link different tasks, create conditions, loops, etc.

I recommend taking a look at this link. It's really well documented -> Tasks Airflow

Upvotes: 1

Related Questions