Database connection exhaustion in dcmanager during sync

When a data sync is triggered for large number of subclouds (~100),
the sync fails for some subclouds due to database connection exhaustion.
In order to fix this issue, the limit on the number of database
connections has been increased.

Story: 2007267
Task: 38956
Change-Id: I88ed37ba3a143e3abee78a9f5584b16f17becc76
Signed-off-by: Jessica Castelino <jessica.castelino@windriver.com>
This commit is contained in:
Jessica Castelino 2020-04-08 11:12:00 -04:00
parent 7d943888c9
commit 7134a06250
1 changed files with 2 additions and 2 deletions

View File

@ -22,8 +22,8 @@
class dcmanager (
$database_connection = '',
$database_idle_timeout = 3600,
$database_max_pool_size = 5,
$database_max_overflow = 10,
$database_max_pool_size = 1,
$database_max_overflow = 100,
$control_exchange = 'openstack',
$rabbit_host = '127.0.0.1',
$rabbit_port = 5672,