From 5f2f6647e1352242f1ba4414d3af9451eb154eb2 Mon Sep 17 00:00:00 2001 From: Ryan Hatter <25823361+RNHTTR@users.noreply.github.com> Date: Wed, 14 Aug 2024 02:12:01 -0400 Subject: [PATCH] Rephrase max_tis_per_query config docs (#41448) --- airflow/config_templates/config.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/airflow/config_templates/config.yml b/airflow/config_templates/config.yml index 782c5217c7dc..71bcf0abbdaa 100644 --- a/airflow/config_templates/config.yml +++ b/airflow/config_templates/config.yml @@ -2472,11 +2472,8 @@ scheduler: default: "True" max_tis_per_query: description: | - This changes the batch size of queries in the scheduling main loop. - This should not be greater than ``[core] parallelism``. - If this is too high, SQL query performance may be impacted by - complexity of query predicate, and/or excessive locking. - Additionally, you may hit the maximum allowable query length for your db. + This determines the number of task instances to be evaluated for scheduling + during each scheduler loop. Set this to 0 to use the value of ``[core] parallelism`` version_added: ~ type: integer