Replies: 1 comment
|
no a hack would be to have a "copy paste" of the dag , maybe without scheduling for this manual triggering for i in ["","manual"]:
schedule = "* * * * *" if i == "" else None
dag_id = "super_dag" if i == "" else "super_dag_"+i
With Dag(schedule=schedule,dag_id=dag_id,...) |
0 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.
Is it possible to manually trigger and run a DAG without enabling/unpausing it?
Is there any config to implement that?
Airflow version: 3.1.3
All reactions