Merge "Set connect_timeout in mysql"

This commit is contained in:
Zuul 2018-08-03 18:08:27 +00:00 committed by Gerrit Code Review
commit be5fa9744f
2 changed files with 7 additions and 0 deletions

View File

@ -240,6 +240,7 @@ tripleo::profile::base::database::mysql::mysql_server_options:
'mysqld':
bind-address: "%{hiera('controller_host')}"
innodb_file_per_table: 'ON'
connect_timeout: 60
mysql::server::restart: true
mysql::server::root_password: {{UNDERCLOUD_DB_PASSWORD}}

View File

@ -0,0 +1,6 @@
---
fixes:
- |
Set the connect_timeout to 60s for mysql connections. This helps fix an
issue where undercloud services lose the mysql connection if it takes more
than 10s to complete (eg under high load).