Try to adjust Apache directives for AIO

We started seing tempest failing on keystone quite frequently since
moved keystone behind Apache instead of nginx. At the same time we see
no issues. Also there are no issues logged which points towards too
small amount of threads/connection available for normal work and even
serial tempest tests. We try to minorly increase amount of threads for
Apache to see if that helps.

Change-Id: I6ce27125d2fa670bb0f240195a59f8ea242369d9
This commit is contained in:
Dmitriy Rabotyagov 2022-10-28 16:27:09 +02:00 committed by Dmitriy Rabotyagov
parent 7eebc69e8a
commit 91315414d1
1 changed files with 3 additions and 3 deletions

View File

@ -44,10 +44,10 @@ repo_nginx_threads: 2
## Keystone
keystone_httpd_mpm_start_servers: 2
keystone_httpd_mpm_min_spare_threads: 1
keystone_httpd_mpm_max_spare_threads: 2
keystone_httpd_mpm_min_spare_threads: 5
keystone_httpd_mpm_max_spare_threads: 10
keystone_httpd_mpm_thread_limit: 15
keystone_httpd_mpm_thread_child: 5
keystone_httpd_mpm_thread_child: 15
keystone_wsgi_threads: 1
keystone_wsgi_processes: 1