725d636da5
Fixes bug 1160442 The defualt parameters are used unless otherwise configured. This is applicable for: - pool_size - max_overflow - pool_timeout By increasing the pool_size and the max_overflow and lowering the timeout the issue reported in the bug is resolved. NOTE: the configuration values enable the user to make use of the default QueuePool tuning values. Change-Id: Ic258442531a2caf2db4f05c4ddd6fbfb0c180f17
55 lines
1.6 KiB
INI
55 lines
1.6 KiB
INI
[SWITCH]
|
|
# username = <mgmt admin username>
|
|
# password = <mgmt admin password>
|
|
# address = <switch mgmt ip address>
|
|
# ostype = NOS
|
|
#
|
|
# Example:
|
|
# username = admin
|
|
# password = password
|
|
# address = 10.24.84.38
|
|
# ostype = NOS
|
|
|
|
[DATABASE]
|
|
# sql_connection = sqlite://
|
|
# Enable the use of eventlet's db_pool for MySQL. The flags sql_min_pool_size,
|
|
# sql_max_pool_size and sql_idle_timeout are relevant only if this is enabled.
|
|
# sql_dbpool_enable = False
|
|
# Minimum number of SQL connections to keep open in a pool
|
|
# sql_min_pool_size = 1
|
|
# Maximum number of SQL connections to keep open in a pool
|
|
# sql_max_pool_size = 5
|
|
# Timeout in seconds before idle sql connections are reaped
|
|
# sql_idle_timeout = 3600
|
|
# Maximum number of SQL connections to keep open in a QueuePool in SQLAlchemy
|
|
# Example sqlalchemy_pool_size = 5
|
|
# Maximum number of overflow connections in a QueuePool in SQLAlchemy
|
|
# Example sqlalchemy_max_overflow = 10
|
|
# Timeout of the open connections QueuePool in SQLAlchemy
|
|
# Example sqlalchemy_pool_timeout = 30
|
|
#
|
|
# Example:
|
|
# sql_connection = mysql://root:pass@localhost/brcd_quantum?charset=utf8
|
|
|
|
[PHYSICAL_INTERFACE]
|
|
# physical_interface = <physical network name>
|
|
#
|
|
# Example:
|
|
# physical_interface = physnet1
|
|
|
|
[VLANS]
|
|
# network_vlan_ranges = <physical network name>:nnnn:mmmm
|
|
#
|
|
# Example:
|
|
# network_vlan_ranges = physnet1:1000:2999
|
|
|
|
[AGENT]
|
|
# Example:
|
|
# root_helper = sudo /usr/local/bin/quantum-rootwrap /etc/quantum/rootwrap.conf
|
|
|
|
[LINUX_BRIDGE]
|
|
# physical_interface_mappings = <physical network name>:<local interface>
|
|
#
|
|
# Example:
|
|
# physical_interface_mappings = physnet1:em1
|