vote up 2 vote down star
1

Sql Server and Oracle have commercial products like Idera (Sql Safe) and Quest (LiteSpeed) that dramatically speed up backup and restores.

Does mysql have any commercial software like that?

I'm working with large amounts of data in mysql and if we have to restore it takes 8-10 hours. So I'm hoping to move to a commercial product that can do it faster.

Any thoughts?

flag
Not a programming question. – derobert Mar 18 at 17:03
@deobert - understand where you are coming from but as a developer supporting my application that stores a crap-ton of information, I thought it was a valid question... as I may have to change the application simply because of limitations on the db (due to necessary recovery limits). – csharp4me Mar 19 at 3:34

4 Answers

vote up 1 vote down check

If a commercial option works for you, check out InnoDB Hot Backup. They say that backup time is comparable to file copy time and recovery is faster.

link|flag
vote up 1 vote down

MySQL Backup & Restore Databases Software 7.0 is one, but Restoring a backup is mostly a long series of INSERT statements so you check here for tips on improving performance Speed of INSERT Statements

link|flag
vote up 0 vote down

You could check out xtrabackup. It is still alpha, but according to the last release announcement it "shows perfect stable results in our tests".

I have not tried it to know the performance, but it appears to be more low-level than the sql output that mysqldump generates.

link|flag
vote up 0 vote down

Online backups are not exactly what you are looking for. The tools out there that exist for MySQL don't provide a lot of functionality that other DBMS vendors have. If you enable MySQL binary logs you can have "point in time" recovery. However, the initial load will still take forever.

http://dev.mysql.com/doc/refman/5.1/en/binary-log.html

http://dev.mysql.com/doc/refman/5.1/en/point-in-time-recovery.html

link|flag

Your Answer

Get an OpenID
or

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