What's the best way to migrate DAGs between staging, prod environments?

0

I'm searching for a good way to automate migrating a DAG between multiple instances (staging/production) as part of a DevOps workflow. I would like to be able to run my DAGs in my staging environment with different configuration parameters (S3 bucket paths, etc.) and run the same DAG in my production environment without requiring a change to the DAG code (automate the migration).

Here is what I'm considering:

  1. Set an environment variable in Airflow/MWAA instance as part of initial setup (e.g. env=staging, env=prod)
  2. Create json configuration file with staging and production configuration parameters and store it with the DAGs
  3. Create a DAG that is a prerequisite for any DAGs which require configuration that checks Airflow environment variable and sets variables to staging/prod configuration parameters
  4. Use templated variables in DAGs requiring configuration

Is there a better way to approach this? Any advice is appreciated!

已提問 1 年前檢視次數 743 次
1 個回答
0

Hi, We've achieved this using the SSM Parameter store. created config in the parameter store and use plugins.py file to pull the configuration from SSM and set up environment variables.

https://docs.aws.amazon.com/mwaa/latest/userguide/samples-env-variables.html

已回答 1 年前
  • Thanks, your answer was helpful. Do the plugins, and subsequently the environment variables, get re-loaded only when the environment is built/re-built?

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南