MySQL表同步
我有一台服务器不断地将其执行的 SQL 查询写入文本文件。我希望第二个服务器读取该文本文件,在那里执行查询,然后从文本文件中删除它们。这样做是为了在不更改现有代码的情况下保持这两台服务器几乎彼此同步。
I have a server that constantly writes SQL queries it executes to a textfile. I want this textfile to be read by a second server, execute the queries there, and remove them from the textfile. This is done in an attempt to keep those 2 servers virtually synchronous with each other without changing existing code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
http://www.maatkit.org/doc/mk-table-sync。 html
但我认为像 mysql 复制这样的 Native 东西应该是首选
Try this one:
http://www.maatkit.org/doc/mk-table-sync.html
But I think that Native thing such as mysql replication should be preferred