Skip to content

Commit

Permalink
About innodb_log_file_size changing recommendation #408
Browse files Browse the repository at this point in the history
  • Loading branch information
jmrenouard committed Oct 3, 2019
1 parent 6aa887d commit 792b46b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions mysqltuner.pl
Original file line number Diff line number Diff line change
Expand Up @@ -5645,6 +5645,11 @@ sub mysql_innodb {
)
. ") if possible, so InnoDB total log files size equals to 25% of buffer pool size."
);
if (mysql_version_le(5 ,6 , 2)) {
push(
@adjvars,
"For MySQL 5.6.2 and lower, Max combined innodb_log_file_size should have a ceiling of (4096MB / log files in group) - 1MB.");
}
push( @generalrec,
"Before changing innodb_log_file_size and/or innodb_log_files_in_group read this: https://bit.ly/2TcGgtU"
);
Expand Down

0 comments on commit 792b46b

Please sign in to comment.