KaYunKIM commented on issue #50866: URL: https://github.com/apache/airflow/issues/50866#issuecomment-2903698720
> > I'm using celery executor > > hm its strange, its working for me in local with celery executor. looks like some host issue. It was an issue with: 1. worker not able to execute the task: Leaves log file, but an empty one. And it was because the task got killed by I assume the next reason, 2. scheduler not able to find DAG: DAG 'init_test_3.0.1' for task instance <TaskInstance: init_test_3.0.1.print_time manual__2025-05-23T01:11:24.335987+00:00 [queued]> not found in serialized_dag table. => which i checked with metadata DB, the dag being present in the serialized_dag table. I solved with adding /execution/ for `execution_api_server_url` in `airflow.cfg`. So for example, `execution_api_server_url = http://airflow-webserver.airflow.local:8080/execution/` Previously, I forgot to add /execution/ at the end. In this way, both scheduler and worker can connect to webserver api. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
