I have the following backup scheme on my server:
Every day I run "mysqladmin flush-logs".
Weekly I run "mysqldump --single-transaction --flush-logs --master-data=2 --delete-master-logs > ..."
Since recent, I've added a slave server with normal master-slave replication.
The question: may my backup scheme break the replication, if it deletes the bin-logs while not all changes have been synced out? Should I then delete bin-logs manually, after some decent time has passed?