If you’re coming to the MySQL User’s Conference next week, be sure to attend the sessions on backup and recovery, especially the session on the MySQL backup roadmap and the Online Backup BOF that will be hosted by the members of the MySQL Backup team.
I got a chance this week to kick the tires of our new online backup that the team has been working on, and I’m excited about the things I see. For a quick test, I did a backup of a 9 million row archive table in one session while I fired off several inserts into that same table in another session:
*** first session - running backup ***
mysql> select count(*) from t1; +----------+ | count(*) | +----------+ | 8964018 | +----------+ mysql> backup database bkp to 'bkp.txt'; …[Read more]