mirror of
https://github.com/ansible/awx.git
synced 2026-03-02 17:28:51 -03:30
AAP-66379 Include scaledown fix from dispatcherd (#16305)
Include scaledown fix from dispatcherd
This commit is contained in:
@@ -27,6 +27,10 @@ def get_dispatcherd_config(for_service: bool = False, mock_publish: bool = False
|
|||||||
"pool_kwargs": {
|
"pool_kwargs": {
|
||||||
"min_workers": settings.JOB_EVENT_WORKERS,
|
"min_workers": settings.JOB_EVENT_WORKERS,
|
||||||
"max_workers": max_workers,
|
"max_workers": max_workers,
|
||||||
|
# This must be less than max_workers to make sense, which is usually 4
|
||||||
|
# With reserve of 1, after a burst of tasks, load needs to down to 4-1=3
|
||||||
|
# before we return to min_workers
|
||||||
|
"scaledown_reserve": 1,
|
||||||
},
|
},
|
||||||
"main_kwargs": {"node_id": settings.CLUSTER_HOST_ID},
|
"main_kwargs": {"node_id": settings.CLUSTER_HOST_ID},
|
||||||
"process_manager_cls": "ForkServerManager",
|
"process_manager_cls": "ForkServerManager",
|
||||||
|
|||||||
@@ -116,7 +116,7 @@ cython==3.1.3
|
|||||||
# via -r /awx_devel/requirements/requirements.in
|
# via -r /awx_devel/requirements/requirements.in
|
||||||
daphne==4.2.1
|
daphne==4.2.1
|
||||||
# via -r /awx_devel/requirements/requirements.in
|
# via -r /awx_devel/requirements/requirements.in
|
||||||
dispatcherd[pg-notify]==2026.01.27
|
dispatcherd[pg-notify]==2026.02.26
|
||||||
# via -r /awx_devel/requirements/requirements.in
|
# via -r /awx_devel/requirements/requirements.in
|
||||||
distro==1.9.0
|
distro==1.9.0
|
||||||
# via -r /awx_devel/requirements/requirements.in
|
# via -r /awx_devel/requirements/requirements.in
|
||||||
|
|||||||
Reference in New Issue
Block a user