在 mysql 中使用 SOURCE 选择引擎
在mysql中使用SOURCE导入时如何将引擎更改为MyISAM?目前默认为 InnoDB。对于 5GB 的 .sql 文件,引擎之间的导入速度会有什么差异吗?
How do I change the engine to MyISAM when using a SOURCE import in mysql? It currently defaults to InnoDB. would there be any difference between the speed of the import between the engines for say a 5gb .sql file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
那么你只能编辑源文件。如果为
CREATE TABLE
显式指定了一个引擎(我敢打赌是这样),那么它是唯一的解决方案。导入到不同存储引擎的速度应该没有显着差异,但如果删除所有索引并在导入所有数据后立即重新创建它们,则可以节省 CPU 周期。
You could only edit a source file then. If an engine is explicitly specified for
CREATE TABLE
(and I bet it is) then it is the only solution.There should be no significant difference between speed of import to different storage engines, but you could save CPU cycles if you remove all indexes and recreate them right after you have imported all the data.