A classic solution for this problem is to deploy a binlog server - an intermediate proxy server that sits between the master and its slaves. The binlog server is set up as a slave to the master, and in turn, acts as a master to the original set of slaves. It receives binary log events from the master, does not apply these events, but serves them to all the other slaves. This way, the load on the master is tremendously reduced, and at the same time, the binlog server serves the binlogs more efficiently to slaves since it does not have to do any other database server processing. Read the full post: Exploring MySQL Binlog Server - Ripple
from DZone.com Feed https://ift.tt/3eEdk80
No comments:
Post a Comment