Merge "Replace mysql invalid open_files_limit of -1 with 65536"

This commit is contained in:
Zuul 2019-01-24 23:30:41 +00:00 committed by Gerrit Code Review
commit 67267897ab
3 changed files with 3 additions and 3 deletions

View File

@ -154,7 +154,7 @@ class tripleo::profile::base::database::mysql (
'mysqld' => {
'bind-address' => $bind_address,
'max_connections' => $mysql_max_connections,
'open_files_limit' => '-1',
'open_files_limit' => '65536',
'innodb_buffer_pool_size' => $innodb_buffer_pool_size,
'innodb_file_per_table' => 'ON',
'innodb_log_file_size' => $innodb_log_file_size,

View File

@ -184,7 +184,7 @@ class tripleo::profile::pacemaker::database::mysql (
'query_cache_type' => '0',
'bind-address' => $bind_address,
'max_connections' => hiera('mysql_max_connections'),
'open_files_limit' => '-1',
'open_files_limit' => '65536',
'wsrep_on' => 'ON',
'wsrep_provider' => '/usr/lib64/galera/libgalera_smm.so',
'wsrep_cluster_name' => 'galera_cluster',

View File

@ -224,7 +224,7 @@ class tripleo::profile::pacemaker::database::mysql_bundle (
'query_cache_type' => '0',
'bind-address' => $bind_address,
'max_connections' => hiera('mysql_max_connections'),
'open_files_limit' => '-1',
'open_files_limit' => '65536',
'wsrep_on' => 'ON',
'wsrep_provider' => '/usr/lib64/galera/libgalera_smm.so',
'wsrep_cluster_name' => 'galera_cluster',