Merge "Raise the mysql max connection limit"

This commit is contained in:
Jenkins 2015-09-13 01:56:37 +00:00 committed by Gerrit Code Review
commit 6423d4ba05
2 changed files with 7 additions and 5 deletions

View File

@ -19,11 +19,12 @@ if count(hiera('ntp::servers')) > 0 {
# TODO Galara
class { 'mysql::server':
override_options => {
'mysqld' => {
'bind-address' => hiera('controller_host'),
'max_connections' => 500,
}
override_options => {
'mysqld' => {
'bind-address' => hiera('controller_host'),
'max_connections' => hiera('mysql_max_connections'),
'open_files_limit' => '-1',
}
}
}

View File

@ -117,6 +117,7 @@ mysql_innodb_buffer_pool_size: 0
mysql_root_password: ''
mysql_cluster_name: unset
mysql::server::manage_config_file: true
mysql_max_connections: 4096
# Neutron
neutron::bind_host: {{LOCAL_IP}}