在 LOAD DATA INFILE 之前或之后定义 PK
我需要将超过 10 亿行加载到空的 MyISAM 表中。我确信文件中的所有条目都是唯一的。是先将数据加载到定义了 PK 的表中,还是稍后添加 PK 更好?
我有 8GB RAM 和 SAS 磁盘工作站,限制为 5GB RAM 来存储索引。当索引必须从磁盘而不是内存中查找时,速度会明显下降(从约 200k 条目/秒到 10-20k 条目/秒)。
I neet to load >1 billion rows into empty MyISAM table. I'm sure all entries in the file are unique. Is it better to load the data into table with PK defined, or add PK later?
I have got 8GB RAM and SAS disc workstation with 5GB RAM limit to store indexes. There is noticeable slow down (from ~200k entries/s to 10-20k entries/s) when index has to be seek from the disc and not from memory.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
前。如果您之后添加 PK,MySQL 将创建一个临时表来执行此操作。
Before. If you add a PK afterwards then MySQL will create a temporary table to do so.