Quote:
Originally Posted by The Prohacker
http://dev.mysql.com/books/hpmysql-excerpts/ch07.html
We have several database servers for our sites, so we have a single slave server called dbbackup. It runs multiple instances of Mysql all running as slaves replicating data from their respective master. From there we have a perl/shell script locks all tables on the slave process and copies all binary files and then unlocks all tables when done.
We actually have 6 master DB servers, so its rater interesting to get everything to replicate to a single server from which you can create backups.
This eliminates the table locking issue on the master server and possibly taking your sites offline for backups.
I highly recommend getting the book High Performance MySQL which the above chapter is from..
-Mat
|
All I can say is wow. That's a lot of master DB servers.