Airflow - pause/unpause individual dagruns of the same DAG running in parallel

前端 未结 1 1489
一个人的身影
一个人的身影 2021-01-28 23:07

We are currently evaluating airflow for a project. I was wondering if there is a way to stop/start individual dagruns while running a DAG multiple times in parallel. Pause/unpau

相关标签:
1条回答
  • 2021-01-28 23:59

    There's nothing "baked" into Airflow to support this but you could (ab)use the state of the DagRun by changing it to "failed" to pause and then back to "running" to resume; you won't be able to blanket unpause but for testing it should be workable.

    0 讨论(0)
提交回复
热议问题