vote up 5 vote down star
1

Are there any tricks for speeding up mySQL dumps and imports? This would include my.cnf settings, using ramdisks, etc.

flag

40% accept rate

5 Answers

vote up 7 vote down check

http://www.maatkit.org/ has a mk-parallel-dump and mk-parallel-restore

If you’ve been wishing for multi-threaded mysqldump, wish no more. This tool dumps MySQL tables in parallel. It is a much smarter mysqldump that can either act as a wrapper for mysqldump (with sensible default behavior) or as a wrapper around SELECT INTO OUTFILE. It is designed for high-performance applications on very large data sizes, where speed matters a lot. It takes advantage of multiple CPUs and disks to dump your data much faster.

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.

link|flag
vote up 3 vote down

turn off foreign key checks and turn on auto-commit.

link|flag
vote up 2 vote down
  1. Get a copy of High Performance MySQL. Great book.
  2. Extended inserts in dumps
  3. Dump with --tab format so you can use mysqlimport, which is faster than mysql < dumpfile
  4. Import with multiple threads, one for each table.
  5. Use a different database engine if possible. importing into a heavily transactional engine like innodb is awfully slow. Inserting into a non-transactional engine like MyISAM is much much faster.
  6. Look at the table compare script in the Maakit toolkit and see if you can update your tables rather than dumping them and importing them. But you're probably talking about backups/restores.
link|flag
vote up 2 vote down

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

link|flag
vote up 1 vote down

Using extended inserts in dumps should make imports faster.

link|flag
if you do that there is a good chance you will not be able to import back if the dump is even moderately big – Jonathan Feb 21 at 20:33
How come MySQL client isn't able to process even moderately big dumps with extended inserts? – che Feb 21 at 22:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.