Added mysql_innodb_log_file_size option to the mysql role
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/pr Build is failing Details

Makes it possible to have larger binary entries when replicating.
This commit is contained in:
Patrick Marchand 2020-01-15 15:58:29 +01:00
parent b86341c731
commit d90209ad69
2 changed files with 5 additions and 2 deletions

View File

@ -30,6 +30,7 @@ mysql_query_cache_limit: Null
mysql_query_cache_size: Null
mysql_max_allowed_packet: Null
mysql_force_custom_config: 'no'
mysql_innodb_log_file_size: Null
mysql_cron_optimize: True
mysql_cron_optimize_frequency: weekly
@ -51,3 +52,4 @@ mysql_binlog_format: mixed
mysql_server_id: null
mysql_bind_address: null
mysql_repl_password: ''

View File

@ -35,5 +35,6 @@ max_allowed_packet = {{ mysql_max_allowed_packet }}
{% if mysql_lower_case_table_names %}
lower_case_table_names = {{ mysql_lower_case_table_names }}
{% endif %}
{% if mysql_innodb_log_file_size %}
innodb_log_file_size = {{ mysql_innodb_log_file_size }}
{% endif %}