Using Amazon's EBS for MySQL hot backup - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T00:56:08Zhttp://stackoverflow.com/feeds/question/613908http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/613908/using-amazons-ebs-for-mysql-hot-backup0Using Amazon's EBS for MySQL hot backupflybywire2009-03-05T07:55:16Z2009-10-25T12:11:28Z
<p>What are your experiences using Amazons EBS snapshot features for MySql hot backups.</p>
<p>I have a database running a batch processing job in ec2. I backup with EBS snapshot. So far the backups looks consistent. But I am afraid they "will stop being consistent as soon as I stop checking" (Uncertainty principle).</p>
<p>What are your experiences with backuping relational databases (and mysql in particular) with ebs snapshot?</p>
http://stackoverflow.com/questions/613908/using-amazons-ebs-for-mysql-hot-backup/1620732#16207320Answer by Shlomo Swidler for Using Amazon's EBS for MySQL hot backupShlomo Swidler2009-10-25T12:11:28Z2009-10-25T12:11:28Z<p>I've been using EBS snapshots to back up my MySQL data dir for more than a year. It's been working perfectly. I've never had a problem using these snapshots as the basis for a replacement (or cloned) MySQL setup.</p>
<p>Best practice is to format the EBS volume with a filesystem that allows freezing, such as XFS. This allows you to get a consistent snapshot: flush MySQL's memory to disk, freeze the filesystem, snapshot, and then unfreeze. The whole process takes less than 10 seconds (but can take longer when the DB is in heavy use).</p>
<p>See <a href="http://alestic.com/2009/09/ec2-consistent-snapshot" rel="nofollow" title="EBS Consistent Snapshot">this article</a> by Eric Hammond for a script that does all this for you. </p>