I have an application running on Jelastic and I'm searching for a backup solution. I found this doc about Master-Slave replication.
From what I understand I can have a secondary environment whit a copy of my database in either synchronous or asynchronous way, meaning that the changes to my database will happen at the same time, or queued up and written later.
But let's say I accidentally screwed up and deleted a database or my host has a problem and has to restore a backup, and the only one available is from yesterday (happened to me this week...).
If i delete the database and the changes happen at the same time, I'll lose everything on both environments, or should I use a cron and DUMP to backup my slave database hourly?
If anyone has a better backup solution I'll take it gladly.