Replies: 1 comment
-
Make them as fast and as little overhead as you can https://airflow.apache.org/docs/apache-airflow/stable/best-practices.html#top-level-python-code
This is coming in Airflow 3 in the form of DAG bundles: https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=294816356
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Current Setup & Challenge
I have a dynamic DAG generation system where DAGs are created from configurations stored in a database table. The main issue I'm facing is DAG parsing performance as I scale to 1000+ dynamic DAGs.
The Problem
Current Process
Questions
What's the recommended approach to handle DAG parsing for large numbers of dynamically generated DAGs?
Are there built-in mechanisms in Airflow to partition DAG file processing to improve parsing performance?
How do other organizations handle similar scale with dynamic DAG generation?
Beta Was this translation helpful? Give feedback.
All reactions