Danny88
Active member
I'm wondering if you have large site consisting about 100GB mysql size , how do you guys do get the backup data in accurate way?Logical Mysql dump inconsistencies
One of the biggest downsides to mysqldump is its lack of parallelism. The tool starts at the first database, alphabetically, then dumps each table within, one at a time. Consider a transaction that inserts data into tables ‘alpha’, and ‘zeta’. Now the backup begins. When the backup reaches table ‘delta’, another transaction deletes from ‘zeta’. Your backup now has an inconsistency between ‘alpha’ and ‘zeta’.Direct copy from /mysql folder
My experience doing rsync backup into mysql (involves .frm and .ibd files) never gets accurates index numbers upon double checking in phpmyadmin between
I only get my backup data accurately using mysql replication where slave in separate server and from there upload to 3rd parties. For me this setup is costly and painful. I plan for downsizing and looking for cheaper backup solution but with accurate data.