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!

gefragt vor einem Jahr743 Aufrufe
1 Antwort
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

beantwortet vor einem Jahr
  • Thanks, your answer was helpful. Do the plugins, and subsequently the environment variables, get re-loaded only when the environment is built/re-built?

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen