切换MySql复制格式

发布于 2024-09-03 07:33:37 字数 180 浏览 6 评论 0原文

我目前正在使用基于语句的复制。升级到 MySql 5.1 后,我正在考虑使用基于行的复制。

阅读文档后,您似乎可以动态更改母版的格式。

从站会自动适应发送的任何类型的二进制日志吗?

我是否必须对从站或主站进行任何更改才能准备好切换,或者我可以简单地修改主站上的 binlog_format 变量吗?

I'm currently using statement-based replication. After upgrading to MySql 5.1, I'm considering using row-based replication.

After reading the docs it seems that you can change the format of the master on the fly.

Will the slave automatically adapt to whatever type of binary log it is sent?

Do I have to make any changes to the slave or master to get ready for switching or can I simply modify the binlog_format variable on the master?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ぶ宁プ宁ぶ 2024-09-10 07:33:37

只需使用 binlog_format 变量在主服务器上更改二进制日志格式。主服务器不需要启动新的二进制日志,因为日志文件可以包含 STATMENT 和 ROW 格式的事件。当从机在获取的二进制日志中遇到任一格式的事件时,都会自动切换。

The binary log format only needs to be changed on the master using the binlog_format variable. The master does not need to start new binary logs as the log file can contain both events in STATEMENT and ROW format. The slave will automatically switch when encountering the events in either format in the fetched binary log.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文