mhenc commented on a change in pull request #21181:
URL: https://github.com/apache/airflow/pull/21181#discussion_r803386232
##########
File path: airflow/jobs/scheduler_job.py
##########
@@ -1259,3 +1267,39 @@ def check_trigger_timeouts(self, session: Session =
None):
)
if num_timed_out_tasks:
self.log.info("Timed out %i deferred tasks without fired
triggers", num_timed_out_tasks)
+
+ @provide_session
+ def _find_zombies(self, session):
+ """
+ Find zombie task instances, which are tasks haven't heartbeated for
too long
+ and update the current zombie list.
+ """
+ self.log.info("Finding 'running' jobs without a recent heartbeat")
Review comment:
Sure, changed to debug.
--
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]