浏览 4478 次
锁定老帖子 主题:MySql数据库点对点复制
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2006-10-11
MySQL features support for one-way, asynchronous replication, in which one server acts as the master, while one or more other servers act as slaves. This is in contrast to the synchronous replication which is a characteristic of MySQL Cluster (see Chapter 15, MySQL Cluster). In single-master replication, the master server writes updates to its binary log files and maintains an index of those files to keep track of log rotation. The binary log files serve as a record of updates to be sent to any slave servers. When a slave connects to its master, it informs the master of the position up to which the slave read the logs at its last successful update. The slave receives any updates that have taken place since that time, and then blocks and waits for the master to notify it of new updates. A slave server can itself serve as a master if you want to set up chained replication servers. 在我的blog里我给出了一个实现方案,大家有其他好的方案么? 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |
发表时间:2006-10-12
没有试过双向的,楼主这个方案的负载能力如何?
其实以你的应用需求,做成单向的M/S结构就可以了 |
|
返回顶楼 | |
发表时间:2006-10-12
to bluemeteor .
是的,呵呵,主要想验证一下自己的想法。 接下去去试验一下clustering, 那个应该有LB地考虑。 |
|
返回顶楼 | |