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:
parent
7d943888c9
commit
7134a06250
@ -22,8 +22,8 @@
|
|||||||
class dcmanager (
|
class dcmanager (
|
||||||
$database_connection = '',
|
$database_connection = '',
|
||||||
$database_idle_timeout = 3600,
|
$database_idle_timeout = 3600,
|
||||||
$database_max_pool_size = 5,
|
$database_max_pool_size = 1,
|
||||||
$database_max_overflow = 10,
|
$database_max_overflow = 100,
|
||||||
$control_exchange = 'openstack',
|
$control_exchange = 'openstack',
|
||||||
$rabbit_host = '127.0.0.1',
|
$rabbit_host = '127.0.0.1',
|
||||||
$rabbit_port = 5672,
|
$rabbit_port = 5672,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user