2008年11月18日 星期二

mysql的innodb_log_file_size的作用

  my.ini 內有一個innodb_log_file_size 的設定值,這個值是innodb log 檔的大小,其影響到 ib_logfile0,ib_logfile1.....等檔案的檔案大小。這個值越大則效率相對越高,但更大的值也意味當資料庫崩潰時恢復得更慢。
在small模式下,預設是 5M
在large模式下,預設是 64M

有時直接搬移mysql 的data file到另一個mysql的資料庫,若log file的實際大小與my.ini的設定不一致,可能會出現如下的訊息。而無法啟動資料庫。
InnoDB: Error: log file .\ib_logfile0 is of different size 0 10485760 bytes
InnoDB: than specified in the .cnf file 0 52428800 bytes!

解決的辦法就是去更改my.ini 的innodb_log_file_size,使其值與資料檔的大小一致。

  © Blogger templates Psi by Ourblogtemplates.com 2008

Back to TOP