potiuk commented on issue #32266: URL: https://github.com/apache/airflow/issues/32266#issuecomment-1613662675
This is some kind of customization of yours. which done outside of Airflow. Possibly those are some 3rd-party extensions or maintenance scripts you are using - they are definitely not part of airlfow and they are not guaranteed to work if they are accessign airflow DB database. As explained in https://airflow.apache.org/docs/apache-airflow/stable/public-airflow-interface.html#what-is-not-part-of-the-public-interface-of-apache-airflow DB structure is not public interface of airflow, so you cannot expect 3rd-party components accessing the DB to work. ``` WITH task_fails_to_remove ``` You need to replace whatever you were doing it with something that is included in Airflow (for example when people used 3rd party maintenance dags in the past, there is built-in `airflow db clean` command) or use REST API if you want to interact with Ariflow. -- 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]
