pragnareddye commented on code in PR #32313: URL: https://github.com/apache/airflow/pull/32313#discussion_r1262018026
########## airflow/config_templates/default_airflow.cfg: ########## @@ -1195,6 +1195,11 @@ job_heartbeat_sec = 5 # how often the scheduler should run (in seconds). scheduler_heartbeat_sec = 5 +# The frequency (in seconds) at which the LocalTaskJob should send heartbeat signals to the +# scheduler to notify it's still alive. If this value is set to 0, the heartbeat interval will default +# to scheduler's `scheduler_zombie_task_threshold` config. +local_task_job_heartbeat_sec = 0 Review Comment: I definitely considered -1 but if someone sets the value as 0 then we would have to consider that. Since value 0 as a heartbeat value doesn't work, I think 0 makes sense. What do you think? -- 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]
