Composer DAGs Pausing/Unpausing script
This document describes usage of composer_dags.py script.
The purpose of the script is to provide a tool to pause or unpause all the DAGs (except airflow_monitoring) of a Composer environment.
Prerequisites​
-
Make sure you are authorized through
gcloud auth login
before invoking the script . The script requires permissions to access the Composer environment (roles/composer.environmentAndStorageObjectAdmin role is sufficient) and its GKE cluster (container.*). -
Make sure that you can access GKE cluster of Composer environment through kubectl (e.g. if you are not able to successfully execute
kubectl get pods
, the script will fail). "Unable to connect to the server: dial tcp [IP ADDRESS]:443: connect: connection timed out" reported by kubectl indicates that kubectl can not connect to GKE cluster. Refer to the documentation about setting up access to private GKE cluster if you have private IP environment. -
Supported environment versions: all Composer versions
-
The script depends on Python 3.6 (or newer), gcloud and kubectl. Make sure you have all those tools installed.
-
Make sure that your Composer environment is healthy. Refer to this documentation for more information specific signals indicating good "Environment health" and "Database health". If your environment is not healthy, fix the environment before running this script.
Limitations​
-
The script currently does not have any error handling mechanism in case of failure in running gcloud commands.
-
The script does not perform any DAG validation after the operation.
Usage​
Pause/Unpause all the DAGs in an environment​
python3 composer_dags.py \
--project [PROJECT NAME] \
--environment [SOURCE ENVIRONMENT NAME] \
--location [REGION] \
--operation [OPERATION]
Example:
python3 composer_dags.py \
--project my-project \
--environment my-airflow-1-composer-environment \
--location europe-west4 \
--operation pause
python3 composer_dags.py \
--project my-project \
--environment my-airflow-1-composer-environment \
--location europe-west4 \
--operation unpause
Troubleshooting​
-
Make sure that all prerequisites are met - you have the right permissions and tools, you are authorized and the environment is healthy.
-
If the error seems to be related to required permissions, double check that you have permissions to access the Composer environment and its GKE cluster.
-
Follow up with support channels if you need additional help. When contacting Google Cloud Support, make sure to provide all relevant information including complete output from this script.