From 3f18ffcdfd1db60f6a69d0e94e32984eddaf0853 Mon Sep 17 00:00:00 2001 From: Kevin Date: Mon, 7 Mar 2022 11:44:24 -0500 Subject: [PATCH] Update best-practices.rst (#22053) --- docs/apache-airflow/best-practices.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/apache-airflow/best-practices.rst b/docs/apache-airflow/best-practices.rst index 6baa468ba76da..d62020319704a 100644 --- a/docs/apache-airflow/best-practices.rst +++ b/docs/apache-airflow/best-practices.rst @@ -337,7 +337,7 @@ want to optimize your DAGs there are the following actions you can take: * Make your DAG generate simpler structure. Every task dependency adds additional processing overhead for scheduling and execution. The DAG that has simple linear structure ``A -> B -> C`` will experience - less delays in task scheduling that DAG that has a deeply nested tree structure with exponentially growing + less delays in task scheduling than DAG that has a deeply nested tree structure with exponentially growing number of depending tasks for example. If you can make your DAGs more linear - where at single point in execution there are as few potential candidates to run among the tasks, this will likely improve overall scheduling performance.