From 8bc205aaa46e8dadef974bd54ce71540f9485db0 Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Mon, 8 Sep 2025 21:09:33 +0900 Subject: [PATCH] cloudkitty: Cap [orchestrator] max_workers_reprocessing Depends-on: https://review.opendev.org/960034 Change-Id: I2aa5a5de33d51ecd45b7f3160c45285c056604c0 Signed-off-by: Takashi Kajinami --- manifests/cloudkitty.pp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/manifests/cloudkitty.pp b/manifests/cloudkitty.pp index fa40f317f..cfc95018e 100644 --- a/manifests/cloudkitty.pp +++ b/manifests/cloudkitty.pp @@ -91,9 +91,10 @@ class openstack_integration::cloudkitty { } class { 'cloudkitty::processor': } class { 'cloudkitty::orchestrator': - coordination_url => $openstack_integration::config::tooz_url, - max_workers => 2, - max_threads => 4, + coordination_url => $openstack_integration::config::tooz_url, + max_workers => 2, + max_workers_reprocessing => 2, + max_threads => 4, } class { 'cloudkitty::fetcher::keystone': auth_type => 'password',