将现有 innodb 表拆分为单独的文件
我想知道是否可以将现有的 InnoDB 表拆分为多个文件。据我所知,如果您在创建表之前指定innodb_file_per_table
;它们被分成单独的文件。但我现有的数据库有 150GB;我现在需要将一张桌子移到另一台机器上。
正常情况下不会有问题。但我注意到,当您使用 InnoDB 并尝试截断/删除表时;磁盘上的空间不会重新分配(即,ibdata1
的大小不会减小错误报告)。这是一个问题,因为我移动桌子的原因是由于我当前服务器上的空间问题。因此,为什么我尝试将这个现有的 ibdata1 文件拆分为单独的表文件。一旦我移动了表,这将使我能够灵活地重新分配磁盘空间。
I'm wondering if its possible to split an existing InnoDB table into multiple files. I understand that if you specify the innodb_file_per_table
prior to creating the tables; they are split into separate files. But I have an existing database that is 150GB; and I now need to move a table to another machine.
Normally it wouldn't be a problem. But I noticed that when you use InnoDB and try to truncate/drop a table; the space isn't reallocated on the disk (ie, the ibdata1
doesn't reduce in size bug report). This is a problem as the reason I'm moving the table is due to space issues on my current server. Hence why I'm trying to split this existing ibdata1
file into separate files for tables. This will then give me the flexibility to reallocate the space on disk once I have moved the table.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论