From 40b17a8298a2baf76b501b57fc4c836a03d14db3 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Fri, 4 Aug 2023 10:54:00 +0900 Subject: [PATCH] Increase nova-api worker We've seen some tempest failures caused by 504 errors returned by nova api. Looking at the log files we could not find anything slow within the logic and it seems nova-api is not responding for some reason. This increases the number of workers as the workaround for the issue. Change-Id: Ic6d7154fe8f2e65900dc80db0025db2549ebf1e4 --- manifests/nova.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/nova.pp b/manifests/nova.pp index eb509af20..c811cef8b 100644 --- a/manifests/nova.pp +++ b/manifests/nova.pp @@ -176,7 +176,7 @@ class openstack_integration::nova ( ssl_key => "/etc/nova/ssl/private/${facts['networking']['fqdn']}.pem", ssl_cert => $::openstack_integration::params::cert_path, ssl => $::openstack_integration::config::ssl, - workers => 2, + workers => 4, } class { 'nova::wsgi::apache_metadata': bind_host => $::openstack_integration::config::host,