Configuration Reference¶
This page contains the list of all available Airflow configurations for the
apache-airflow-providers-daskexecutor
provider that can be set in the airflow.cfg
file or using environment variables.
Note
The configuration embedded in provider packages started to be used as of Airflow 2.7.0. Previously the configuration was described and configured in the Airflow core package - so if you are using Airflow below 2.7.0, look at Airflow documentation for the list of available configuration options that were available in Airflow core.
Note
For more information see Setting Configuration Options.
Sections:
[dask]¶
This section only applies if you are using DaskExecutor.
cluster_address¶
The IP address and port of the Dask cluster’s scheduler.
- Type
string
- Default
127.0.0.1:8786
- Environment Variable
AIRFLOW__DASK__CLUSTER_ADDRESS
tls_ca¶
Path to a CA certificate file encoded in PEM format to access a secured Dask scheduler.
- Type
string
- Default
''
- Environment Variable
AIRFLOW__DASK__TLS_CA
tls_cert¶
Path to a certificate file for the client, encoded in PEM format.
- Type
string
- Default
''
- Environment Variable
AIRFLOW__DASK__TLS_CERT
tls_key¶
Path to a key file for the client, encoded in PEM format.
- Type
string
- Default
''
- Environment Variable
AIRFLOW__DASK__TLS_KEY