pragnareddye commented on code in PR #32313: URL: https://github.com/apache/airflow/pull/32313#discussion_r1249695827
########## airflow/config_templates/default_airflow.cfg: ########## @@ -1173,6 +1173,12 @@ job_heartbeat_sec = 5 # how often the scheduler should run (in seconds). scheduler_heartbeat_sec = 5 +# The heartbeat frequency (in seconds) at which the scheduler will check the state of the LocalTaskJob. +# A high value could lead to the scheduler not noticing a "zombie" LocalTaskJob quickly, +# while a low value could mean more frequent database queries. +# This setting is used to detect tasks that hang or tasks that have been erroneously marked as running but are not actually running. +local_task_job_heartbeat_sec = 5 Review Comment: Thank you for pointing that out. @pankajkoti I have now added it -- 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]
