Gunicorn works better if temporary folder uses tmpfs (#9534)

This is discussed in the documentation of gunicorn.
You can find more information here: https://docs.gunicorn.org/en/stable/faq.html#how-do-i-avoid-gunicorn-excessively-blocking-in-os-fchmod

Since we are using docker, we always have shared memory
available (at least 64MB).

Closes #9379
This commit is contained in:
Jarek Potiuk 2020-06-26 16:41:21 +02:00 коммит произвёл GitHub
Родитель 529ba8fb36
Коммит 2cf167b047
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -348,6 +348,7 @@ RUN chmod a+x /entrypoint /clean-logs
USER airflow
ENV PATH="/home/airflow/.local/bin:${PATH}"
ENV GUNICORN_CMD_ARGS="--worker-tmp-dir /dev/shm"
WORKDIR ${AIRFLOW_HOME}