从表中删除数据行后,MySQL InnoDB 不释放磁盘空间

MySQL InnoDB not releasing disk space after deleting data rows from table(从表中删除数据行后,MySQL InnoDB 不释放磁盘空间)
本文介绍了从表中删除数据行后,MySQL InnoDB 不释放磁盘空间的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个使用 InnoDB 存储引擎的 MySQL 表;它包含大约 2M 数据行.当我从表中删除数据行时,它没有释放分配的磁盘空间.运行优化表命令后,ibdata1文件的大小也没有减少.

I have one MySQL table using the InnoDB storage engine; it contains about 2M data rows. When I deleted data rows from the table, it did not release allocated disk space. Nor did the size of the ibdata1 file reduce after running the optimize table command.

有没有办法从 MySQL 回收磁盘空间?

Is there any way to reclaim disk space from MySQL?

我的处境很糟糕;该应用程序在大约 50 个不同的位置运行,现在几乎所有位置都出现了磁盘空间不足的问题.

I am in a bad situation; this application is running in about 50 different locations and now problem of low disk space is appearing at almost all of them.

推荐答案

MySQL 不会减小 ibdata1 的大小.曾经.即使您使用优化表从已删除的记录中释放使用的空间,它也会在以后重复使用.

MySQL doesn't reduce the size of ibdata1. Ever. Even if you use optimize table to free the space used from deleted records, it will reuse it later.

另一种方法是将服务器配置为使用 innodb_file_per_table,但这需要备份、删除数据库和恢复.积极的一面是表的 .ibd 文件在 优化表格.

An alternative is to configure the server to use innodb_file_per_table, but this will require a backup, drop database and restore. The positive side is that the .ibd file for the table is reduced after an optimize table.

这篇关于从表中删除数据行后,MySQL InnoDB 不释放磁盘空间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)
SQL/MySQL: split a quantity value into multiple rows by date(SQL/MySQL:按日期将数量值拆分为多行)