File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,9 @@ auth_manager = airflow.providers.fab.auth_manager.fab_auth_manager.FabAuthManage
23
23
[dag_processor]
24
24
# How long before timing out a DagFileProcessor, which processes a dag file
25
25
dag_file_processor_timeout = 600
26
+ # We don't really need it based on how we deploy dags.
27
+ # But set it to a large enough 60 * 24 (1 day) to avoid high CPU usage
28
+ min_file_process_interval = 1440
26
29
27
30
[database]
28
31
# The SqlAlchemy connection string to the metadata database.
@@ -34,7 +37,8 @@ external_db_managers = airflow.providers.fab.auth_manager.models.db.FABDBManager
34
37
35
38
[api]
36
39
# Number of workers to run the Gunicorn web server
37
- workers = 2
40
+ # WARNING:: DO NOT increase this number. Due to our limited resources, increasing it to 2 breaks API server
41
+ workers = 1
38
42
39
43
# Number of seconds the gunicorn webserver waits before timing out on a worker
40
44
worker_timeout = 600
You can’t perform that action at this time.
0 commit comments