mirror of
https://github.com/HanXHX/ansible-mysql.git
synced 2026-02-24 10:13:30 +07:00
Proper comment on why changing innodb_log_file_size breaks the system
This commit is contained in:
@@ -63,11 +63,13 @@ thread_concurrency = {{ mysql_thread_concurrency }}
|
||||
# InnoDB settings.
|
||||
innodb_file_per_table = {{ mysql_innodb_file_per_table }}
|
||||
innodb_buffer_pool_size = {{ mysql_innodb_buffer_pool_size }}
|
||||
{# It craches after install (mysql 5.5)... TODO: FIX -> http://dev.mysql.com/doc/refman/5.6/en/innodb-data-log-reconfiguration.html #}
|
||||
#innodb_log_file_size = {{ mysql_innodb_log_file_size }}
|
||||
#innodb_log_buffer_size = {{ mysql_innodb_log_buffer_size }}
|
||||
innodb_log_buffer_size = {{ mysql_innodb_log_buffer_size }}
|
||||
innodb_flush_log_at_trx_commit = {{ mysql_innodb_flush_log_at_trx_commit }}
|
||||
innodb_lock_wait_timeout = {{ mysql_innodb_lock_wait_timeout }}
|
||||
{# If this setting changes on a running system, you will break it! #}
|
||||
{# See how tho change it here: http://dev.mysql.com/doc/refman/5.6/en/innodb-data-log-reconfiguration.html #}
|
||||
{# TODO FIX -> Maybe detect a change and fail, just to be safe? #}
|
||||
innodb_log_file_size = {{ mysql_innodb_log_file_size }}
|
||||
|
||||
[mysqldump]
|
||||
quick
|
||||
|
||||
Reference in New Issue
Block a user