7704d94c74
This fix adds support to tune the apache MPM server settings in case more HTTP threads are needed. New overrides have been predefined in order to use the Ubuntu default settings: keystone_httpd_mpm_backend: event keystone_httpd_mpm_start_servers: 2 keystone_httpd_mpm_min_spare_threads: 25 keystone_httpd_mpm_max_spare_threads: 75 keystone_httpd_mpm_thread_limit: 64 keystone_httpd_mpm_thread_child: 25 keystone_httpd_mpm_max_requests: 150 keystone_httpd_mpm_max_conn_child: 0 Change-Id: Ieaad4d2b3c62a5b59e1fa597816ab1b4c2fc3cb1 Closes-Bug: #1576399
18 lines
584 B
YAML
18 lines
584 B
YAML
---
|
|
features:
|
|
- |
|
|
Apache MPM tunable support has been added to the os-keystone
|
|
role in order to allow MPM thread tuning.
|
|
Default values reflect the current Ubuntu default settings:
|
|
|
|
.. code-block:: yaml
|
|
|
|
keystone_httpd_mpm_backend: event
|
|
keystone_httpd_mpm_start_servers: 2
|
|
keystone_httpd_mpm_min_spare_threads: 25
|
|
keystone_httpd_mpm_max_spare_threads: 75
|
|
keystone_httpd_mpm_thread_limit: 64
|
|
keystone_httpd_mpm_thread_child: 25
|
|
keystone_httpd_mpm_max_requests: 150
|
|
keystone_httpd_mpm_max_conn_child: 0
|