MySql Data Loss - post mortem analysis - RackSpace Cloud Server

Posted by marfarma on Server Fault See other posts from Server Fault or by marfarma
Published on 2012-05-31T00:17:20Z Indexed on 2012/05/31 4:42 UTC
Read the original article Hit count: 504

After a recent 'emergency migration' of a RS cloud server, the mysql databases on our server snapshot image proved to be days out of date from the backup date. And yet files that were uploaded through the impacted webapp had been written to the file system. Related metadata that was written to the database was lost, but the files themselves were backed-up.

Once I was able to manually access the mysql data files before the mysql server started (server was configured to start mysql on boot), I was able to see that the update time for ib_logfile1, ib_logfile0 and ibdata1 was days old.

As with this poster, mysql data loss after server crash, it's as if some caching controller had told the OS / mysql server that it had committed data that was still in cache, and it was lost instead of flushed.

I can't quite wrap my head around how the uploaded files got written but the database data did not. I would have thought that any cache would have flushed system wide, rather than process by process.

Any suggestions as to how this might have happened?

© Server Fault or respective owner

Related posts about mysql

Related posts about cloud-computing