This is an automated email from the ASF dual-hosted git repository.
turbaszek pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/master by this push:
new 7e40a32 Add more info about dag_concurrency (#11300)
7e40a32 is described below
commit 7e40a325c574616f8966218fa17801a29485b82a
Author: Mário Hunka <[email protected]>
AuthorDate: Sun Oct 11 18:13:29 2020 +0200
Add more info about dag_concurrency (#11300)
---
airflow/config_templates/config.yml | 1 +
airflow/config_templates/default_airflow.cfg | 1 +
2 files changed, 2 insertions(+)
diff --git a/airflow/config_templates/config.yml
b/airflow/config_templates/config.yml
index 4325397..4867e10 100644
--- a/airflow/config_templates/config.yml
+++ b/airflow/config_templates/config.yml
@@ -165,6 +165,7 @@
- name: dag_concurrency
description: |
The number of task instances allowed to run concurrently by the
scheduler
+ in one DAG. Can be overridden by `concurrency` on DAG level.
version_added: ~
type: string
example: ~
diff --git a/airflow/config_templates/default_airflow.cfg
b/airflow/config_templates/default_airflow.cfg
index 61b9edf..87daaab 100644
--- a/airflow/config_templates/default_airflow.cfg
+++ b/airflow/config_templates/default_airflow.cfg
@@ -112,6 +112,7 @@ sql_alchemy_schema =
parallelism = 32
# The number of task instances allowed to run concurrently by the scheduler
+# in one DAG. Can be overridden by `concurrency` on DAG level.
dag_concurrency = 16
# Are DAGs paused by default at creation