Manage logs¶
You have a number of options when it comes to managing your Airflow logs.
No persistence¶
With this option, Airflow will log locally to each pod. As such, the logs will only be available during the lifetime of the pod.
Celery worker log persistence¶
If you are using CeleryExecutor
, workers persist logs by default to a volume claim created with a volumeClaimTemplate
.
You can modify the template:
Note with this option only task logs are persisted, unlike when log persistence is enabled which will also persist scheduler logs.
Log persistence enabled¶
This option will provision a PersistentVolumeClaim
with an access mode of ReadWriteMany
. Each component of Airflow will
then log onto the same volume.
Not all volume plugins have support for ReadWriteMany
access mode.
Refer Persistent Volume Access Modes
for details.
Externally provisioned PVC¶
In this approach, Airflow will log to an existing ReadWriteMany
PVC. You pass in the name of the volume claim to the chart.
Elasticsearch¶
If your cluster forwards logs to Elasticsearch, you can configure Airflow to retrieve task logs from it. See the Elasticsearch providers guide for more details.