The InnoDB log file is the transactional log, it captures
all the transactions. The transaction log size is a very
important factor in determining the performance of a
database engine. The
variable innodb_log_file_size represents the
transactional log size. This log size can be changed as
follows:
Set the required log file size in the MySQL configuration
file.
[mysqld]
innodb_log_file_size=xG
Perform the clean shutdown. This can be verified with the help of MySQL error log. A clean shutdown is also known as slow shutdown. This process will perform a full purge of InnoDB buffer pool. The value of the …
[Read more]