Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions chart/newsfragments/27625.significant.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Default ``dags.gitSync.wait`` reduced to ``5`` seconds

The default for ``dags.gitSync.wait`` has been reduced from ``60`` seconds to ``5`` seconds to reduce the likelihood of DAGs
becoming inconsistent between Airflow components. This will, however, increase traffic to the remote git repository.
4 changes: 2 additions & 2 deletions chart/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -5233,9 +5233,9 @@
"default": "tests/dags"
},
"wait": {
"description": "Interval between git sync attempts in seconds.",
"description": "Interval between git sync attempts in seconds. High values are more likely to cause DAGs to become out of sync between different components. Low values cause more traffic to the remote git repository.",
"type": "integer",
"default": 60
"default": 5
},
"containerName": {
"description": "Git sync container name.",
Expand Down
5 changes: 4 additions & 1 deletion chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1824,8 +1824,11 @@ dags:
# knownHosts: |
# <host1>,<ip1> <key1>
# <host2>,<ip2> <key2>

# interval between git sync attempts in seconds
wait: 60
# high values are more likely to cause DAGs to become out of sync between different components
# low values cause more traffic to the remote git repository
wait: 5
containerName: git-sync
uid: 65533

Expand Down