Complete the code to set the Airflow environment variable for the deployment environment.
export AIRFLOW_ENV=[1]Setting AIRFLOW_ENV to development configures Airflow for the dev environment.
Complete the code to select the correct Airflow configuration value for the staging environment.
airflow config get-value core [1]The executor setting defines how tasks are run, which can differ in staging.
Fix the error in the command to deploy Airflow DAGs to the production environment.
scp dags/ [1]:/usr/local/airflow/dags/Using user@prod-server correctly specifies the remote user and host for production deployment.
Fill both blanks to set the Airflow home directory and the environment variable for staging.
export AIRFLOW_HOME=[1] export AIRFLOW_ENV=[2]
Setting AIRFLOW_HOME to the staging directory and AIRFLOW_ENV to 'staging' configures the environment correctly.
Fill all three blanks to create a dictionary mapping environments to their Airflow executor types.
executors = {
'[1]': '[2]',
'[3]': 'LocalExecutor'
}This dictionary maps 'production' to 'CeleryExecutor' and 'development' to 'LocalExecutor', common Airflow setups.