Airflow jobs remain on execution but finish on Airflow side. The issue presents on jobs using configuration json and when json file contains multiple lines like this: { "dag_id": "my_simple_dag", "schedule_interval": "@daily", "default_args": { "owner": "airflow", "start_date": "XXXX-XX-XX" }, "tasks": [ { "task_id": "task1", "operator": "BashOperator", "bash_command": "echo 'Hello, World!'", "depends_on_past": false } ] } Such error is visible in the airflow log : AFL_DLL_TRACK_EVENT_.log 0606 10:43:41:749 AFL_DLL_TRACK_EVENT: [be_remoting.cpp:633] Raw Response: <html> |
Alternate solution :
|