From 91315414d15121b1dd29a8168d96fb6a9dc41c21 Mon Sep 17 00:00:00 2001 From: Dmitriy Rabotyagov Date: Fri, 28 Oct 2022 16:27:09 +0200 Subject: [PATCH] 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 --- .../bootstrap-host/templates/user_variables.aio.yml.j2 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/roles/bootstrap-host/templates/user_variables.aio.yml.j2 b/tests/roles/bootstrap-host/templates/user_variables.aio.yml.j2 index 7d8e7b0bd4..fb7bfe824d 100644 --- a/tests/roles/bootstrap-host/templates/user_variables.aio.yml.j2 +++ b/tests/roles/bootstrap-host/templates/user_variables.aio.yml.j2 @@ -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