Skip to content
Snippets Groups Projects
Commit af820eb0 authored by jurgenhaas's avatar jurgenhaas
Browse files

Merge branch 'master' into 'master'

Master

See merge request ansible-roles/mysql!1
parents 3f497277 1d553b9f
No related branches found
No related tags found
1 merge request!1Master
......@@ -62,6 +62,12 @@ innodb_flush_log_at_trx_commit = {{ mysql_innodb_flush_log_at_trx_commit }}
innodb_log_file_size = {{ mysql_innodb_log_file_size }}
innodb_strict_mode = {{ mysql_innodb_strict_mode }}
join_buffer_size = {{ mysql_join_buffer_size }}
{% if mysql_innodb_io_capacity is defined %}
innodb_io_capacity = {{ mysql_innodb_io_capacity }}
{% endif %}
{% if mysql_innodb_io_capacity_max is defined %}
innodb_io_capacity_max = {{ mysql_innodb_io_capacity_max }}
{% endif %}
# This replaces the startup script and checks MyISAM tables if needed
# the first time they are touched
myisam-recover = BACKUP
......
......@@ -50,6 +50,12 @@ join_buffer_size = {{ mysql_join_buffer_size }}
max_allowed_packet = {{ mysql_max_allowed_packet }}
thread_stack = 192K
thread_cache_size = {{ mysql_thread_cache_size }}
{% if mysql_innodb_io_capacity is defined %}
innodb_io_capacity = {{ mysql_innodb_io_capacity }}
{% endif %}
{% if mysql_innodb_io_capacity_max is defined %}
innodb_io_capacity_max = {{ mysql_innodb_io_capacity_max }}
{% endif %}
# This replaces the startup script and checks MyISAM tables if needed
# the first time they are touched
myisam-recover-options = BACKUP
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment