Replies: 1 comment
-
If I were you, I'd rather use Airflow API where the built-in features of Airlfow are not enough. Wriitng Python and using API is the first-class-citizen of Airflow usage. Airflow is really (especially with 2.0 and beyond) a programmable platform, that can be extended and USING API for that is likely a good idea. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
There is a dag with a dynamic task group containing:
Now, we need to backfill only some of them. We can not directly backfill them by the UI because there are tasks before the task group. And the tasks before the task group must be executed only and exactly once. The problem is:
Here is my answer to the question: https://github.com/da-tubi/pants-airflow
Hope to find a better one!
Beta Was this translation helpful? Give feedback.
All reactions