2023-03-06 08:58:53 -08:00
|
|
|
# Airflow Environment Variables for ingestion service
|
|
|
|
AIRFLOW__API__AUTH_BACKENDS="airflow.api.auth.backend.basic_auth,airflow.api.auth.backend.session"
|
|
|
|
AIRFLOW__CORE__EXECUTOR="LocalExecutor"
|
|
|
|
AIRFLOW__OPENMETADATA_AIRFLOW_APIS__DAG_GENERATED_CONFIGS="/opt/airflow/dag_generated_configs"
|
|
|
|
# MySQL Environment Variables for ingestion service
|
2023-06-13 23:08:32 +05:30
|
|
|
AIRFLOW_DB_HOST="mysql"
|
|
|
|
AIRFLOW_DB_PORT="3306"
|
2023-06-14 10:25:37 +05:30
|
|
|
AIRFLOW_DB="airflow_db"
|
2023-03-06 08:58:53 -08:00
|
|
|
AIRFLOW_DB_SCHEME="mysql+pymysql"
|
2023-07-12 13:25:18 +02:00
|
|
|
AIRFLOW_DB_USER="airflow_user"
|
2023-12-06 13:13:49 +05:30
|
|
|
AIRFLOW_DB_PASSWORD="airflow_pass"
|
|
|
|
AIRFLOW_DB_PROPERTIES=""
|