有没有工具可以帮助解决 MySQL 复制过程中的冲突?
我能否了解是否有好的工具可以帮助解决复制过程中的冲突? 特别是MySQL。
Can I find out if there're good tools available for helping with conflict resolution during the replication process? Specifically MySQL.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您以某种方式遇到复制错误,则说明出现了问题。 Maatkit 工具包中的一些工具可以提供帮助,但一般来说,处理问题最简单、最可靠的方法就是重新同步(FLUSH TABLES WITH READ LOCK; mysqldump --all-databases --master-info; mysql <转储文件)
If you get a replication fault in some way, something's gone wrong. There's some tools in the Maatkit toolkit that can help out, but in general the easiest and most reliable way to deal with the problem is just to resync (FLUSH TABLES WITH READ LOCK; mysqldump --all-databases --master-info; mysql < dumpfile)