MySQL 5 复制查询
我有一个包含大量数据的表......数以千计的行。我打算拥有这张桌子的复制品。我可以只在副本上建立索引而不在原始表上建立索引吗,这样在原始表中插入会很快。
I have a table which contains a large volume of data...thousands of million of rows. I am planning to have a replica of this table. Can I have an index on replica only not on the original table, so that insertion in the orignal table will be fast.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是可能的。您甚至可以更改复制表的底层引擎(常见的情况是将 InnoDB 表复制到另一台服务器,将引擎更改为 MyISAM 并向相应的表列添加全文索引)。
Yes that's possible. You can even change the underlying engine of the replicated table (a common scenario is to replicate a InnoDB table to another server, change the engine to MyISAM and add a full-text-index to the appropriate table columns).