“Handling signal: ttou” message while running DAG in airflow

前端 未结 2 530
故里飘歌
故里飘歌 2021-02-07 10:43

I have created sample DAG, where I had DAG config as below.

default_args = {
    \'owner\': \'airflow\',         
    \'depends_on_past\': False, 
    \'start_da         


        
2条回答
  •  再見小時候
    2021-02-07 11:06

    Those messages are expected. The ttou (and ttin) signals are used to refresh gunicorn workers of the webserver so that it picks up DAG changes. You can modify or disable this behavior with the worker_refresh_interval and worker_refresh_batch_size airflow config values.

提交回复
热议问题