如果这个键已经是一个索引,是否值得在一个键上对 MySQL 表进行分区?
我有一个很大的 MySQL 表(大约 50 GB,数千万条记录),其中一个索引键(外键)有大约 2000 个可能的不同值,另一个索引键(VARCHAR(2))有 3 个可能的不同值价值观。
如果我根据其中一个(或两个)索引对表进行分区,性能是否会显着提高?
I have a big MySQL table (around 50 GB, tens of millions of records), with one index key (a foreign key) that has around 2000 possible different values, and another index key (a VARCHAR(2)) that has 3 possible values.
Can I expect a significant performance increase if I partition the table based on either (or both) indices?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您无法对不是索引(或其一部分)的列进行分区,所以是的......这是值得的。
You can't partition on a column that is not an index (or part of it), so yeah... it is worth it.
如果您遇到性能问题,您是否考虑过在存在三个可能值时对表进行反规范化?
Have you thought of de-normalising the table when there is three possible values if you have performance problems?