jscheffl commented on code in PR #64326:
URL: https://github.com/apache/airflow/pull/64326#discussion_r3034292445
##########
airflow-core/src/airflow/config_templates/config.yml:
##########
@@ -1826,6 +1826,17 @@ api:
type: string
example: "/etc/airflow/certs/client.key"
default: ~
+ dag_version_cache_size:
+ description: |
+ Maximum number of DAG versions to keep in the API server's in-memory
LRU cache.
+ The API server may serve historical run views so it benefits from
retaining older
+ versions. When the limit is reached the least-recently-used version is
evicted.
+ The scheduler does not use this setting — its cache is naturally
bounded by the
+ number of active DAGs.
+ version_added: 3.2.0
Review Comment:
Need to be 3.2.1 as we are a bit too late for 3.2.0
```suggestion
version_added: 3.2.1
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]