Update advisory rule: apply 'not be set much higher than 256' from the text to the rule
This commit is contained in:
parent
5077788029
commit
98dbe20cb4
@ -435,7 +435,7 @@ rule 'Is InnoDB disabled?' [!PMA_DRIZZLE && PMA_MYSQL_INT_VERSION < 50600]
|
||||
|
||||
rule 'InnoDB log size' [innodb_buffer_pool_size > 0]
|
||||
innodb_log_file_size / innodb_buffer_pool_size * 100
|
||||
value < 20
|
||||
value < 20 && innodb_log_file_size / (1024 * 1024) < 256
|
||||
The InnoDB log file size is not an appropriate size, in relation to the InnoDB buffer pool.
|
||||
Especially on a system with a lot of writes to InnoDB tables you should set {innodb_log_file_size} to 25% of {innodb_buffer_pool_size}. However the bigger this value, the longer the recovery time will be when database crashes, so this value should not be set much higher than 256 MiB. Please note however that you cannot simply change the value of this variable. You need to shutdown the server, remove the InnoDB log files, set the new value in my.cnf, start the server, then check the error logs if everything went fine. See also <a href="http://mysqldatabaseadministration.blogspot.com/2007/01/increase-innodblogfilesize-proper-way.html">this blog entry</a>
|
||||
Your InnoDB log size is at %s% in relation to the InnoDB buffer pool size, it should not be below 20% | round(value,1)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user