dstandish commented on code in PR #29299: URL: https://github.com/apache/airflow/pull/29299#discussion_r1098167088
########## airflow/config_templates/default_airflow.cfg: ########## @@ -1313,6 +1313,9 @@ worker_pods_queued_check_interval = 60 # You may want this higher if you have a very large cluster and/or use ``multi_namespace_mode``. worker_pods_pending_timeout_batch_size = 100 +# The number of lines (from the end) of the logs to read from the worker pod's base container. +read_log_lines = 100 Review Comment: maybe `running_pod_tail_lines`? because it seems pretty rare that you'd want to customize this, just to avoid another config param i'm tempted to suggest using a class constant that you could monkey patch in airflow local settings... but... i don't feel strongly about 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]
