Are there any tricks for speeding up mySQL dumps and imports? This would include my.cnf settings, using ramdisks, etc.
|
|
http://www.maatkit.org/ has a mk-parallel-dump and mk-parallel-restore
There are also various potential options in mysqldump such as not making indexes while the dump is being imported - but instead doing them en-mass on the completion. |
||
|
|
|
|
turn off foreign key checks and turn on auto-commit. |
||
|
|
|
|
|
||
|
|
|
|
if you are importing to innodb the single most effective thing you can do is to put innodb_flush_log_at_trx_commit = 2 in your my.cnf, temporarily while the import is running. you can put it back to 1 if you need ACID |
||
|
|
|
|
Using extended inserts in dumps should make imports faster. |
||
