tanelk commented on issue #23361: URL: https://github.com/apache/airflow/issues/23361#issuecomment-1133260694
Are these logs from where you have set `use_row_level_locking` to `False`? The `use_row_level_locking` is used to avoid this sort of issues when running multiple schedulers - these logs indicate that two schedulers are scheduling the same DAG runs and end up getting deadlocked. With row locking enabled this situation should not happen because each scheduler picks different DAG runs to look at. The interesting situtuation is when `use_row_level_locking` is `True` and things still get deadlocked - that sounds like a bug on airflows part (or perhaps interaction with some other code you are running). -- 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]
