This is an automated email from the ASF dual-hosted git repository.
uranusjr pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new fcc9f3dc0e Rephrase max_tis_per_query config docs (#41448)
fcc9f3dc0e is described below
commit fcc9f3dc0eb0b9c53f59bbe6619a175779db2cbc
Author: Ryan Hatter <[email protected]>
AuthorDate: Wed Aug 14 02:12:01 2024 -0400
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 782c5217c7..71bcf0abbd 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