dagrun_operator in Airflow Version 1.10.10 ERRORS _run_raw_task result = task_copy.execute(context=context) #18532
Replies: 4 comments
-
Thanks for opening your first issue here! Be sure to follow the issue template! |
Beta Was this translation helpful? Give feedback.
-
Please advise as to what could be the work around. The DAG code perfectly works fine in our production with CC: @ashb |
Beta Was this translation helpful? Give feedback.
-
There is no Would it work if you extracted |
Beta Was this translation helpful? Give feedback.
-
@svetli-n : Please refer to the conversation at #7324 (comment) |
Beta Was this translation helpful? Give feedback.
-
On Migrating Airflow from V1.10.2 to V1.10.10 One of our DAG have a task which is of dagrun_operator type.
Code snippet of the task looks something as below. Please assume that DAG
dag_process_pos
existsThe DAG runs all fine. In fact the python callable of the task mentioned until the last line. Then it errors out.
After which the
on_failure_callback
of that task is executed and all code of that callable runs perfectly ok as is expected. The query here is why did the dagrun_operator fail after the python callable.P.S : The DAG that is being triggered by the
TriggerDagRunOperator
, in this casedag_process_pos
starts with task of typedummy_operator
. Also that the target dag that is invoked actually gets triggered. However the the Airflow task that triggers the DAG fails. [ There is no Dag dependency in this case ]Beta Was this translation helpful? Give feedback.
All reactions