Which of the following statements correctly describes a key advantage of using Managed Airflow services like MWAA, Cloud Composer, or Astronomer?
Think about what 'managed' means in cloud services.
Managed Airflow services handle the setup, scaling, and maintenance of Airflow infrastructure, so you can focus on writing workflows.
You run the AWS CLI command to list MWAA environments:
aws mwaa list-environments --region us-east-1
What is the expected output format of this command?
Check AWS CLI documentation for MWAA list-environments output keys.
The AWS CLI returns a JSON object with the key "Environments" containing a list of environment names.
Which of the following is the correct way to add a new connection to Airflow in Google Cloud Composer using the gcloud CLI?
Remember the syntax for running Airflow CLI commands through gcloud composer environments run.
The correct syntax uses double dashes before the Airflow command and its arguments, with spaces separating flags and values.
You deployed a new DAG to Astronomer, but it does not appear in the Airflow UI. Which of the following is the most likely cause?
Think about what happens if Airflow cannot parse a DAG file.
If a DAG file has syntax errors, Airflow will skip loading it, so it won't show up in the UI.
You want to automate updating the Airflow configuration options in an MWAA environment using AWS CLI. Which sequence of commands correctly updates the environment's Airflow configuration options and then triggers the environment update?
Check the correct JSON format and quoting for the --airflow-configuration-options parameter.
The --airflow-configuration-options parameter expects a JSON string with keys and string values properly quoted.