Increase Apache thread limit for keystone

During integrated test of keystone with Apache we hit error while creating
volume types:
AH00484: server reached MaxRequestWorkers setting

To avoid that we increase values for threads.

Needed-By: https://review.opendev.org/c/openstack/openstack-ansible-os_keystone/+/817390
Change-Id: I82589cf9f1a77ca938fae2f913b15bce3b9f509b
This commit is contained in:
Dmitriy Rabotyagov 2021-11-20 19:34:52 +02:00
parent 92feb0805e
commit d7b5f6cda0
1 changed files with 2 additions and 2 deletions

View File

@ -46,8 +46,8 @@ repo_nginx_threads: 2
keystone_httpd_mpm_start_servers: 2
keystone_httpd_mpm_min_spare_threads: 1
keystone_httpd_mpm_max_spare_threads: 2
keystone_httpd_mpm_thread_limit: 2
keystone_httpd_mpm_thread_child: 1
keystone_httpd_mpm_thread_limit: 15
keystone_httpd_mpm_thread_child: 5
keystone_wsgi_threads: 1
keystone_wsgi_processes_max: 2