Managing incremental backup is VERY complex to say the least and VERY timeconsuming to restore ecc
A quick option is mark a table as append only, store the max id before the start of the backup and pass the where condition to [mysql|mariadb]dump like
mysqldump --opt --quick --where="id between X AND Y"
Managing incremental backup is VERY complex to say the least and VERY timeconsuming to restore ecc
A quick option is mark a table as append only, store the max id before the start of the backup and pass the where condition to [mysql|mariadb]dump like
mysqldump --opt --quick --where="id between X AND Y"