How does Mysql InnoDB release disk space after data is deleted? mysqlinnodb

Source: Internet
Author: User

How does Mysql InnoDB release disk space after data is deleted? mysqlinnodb

The Innodb database only marks deleted data and does not actually release the occupied disk space, which leads to the increasing number of InnoDB database files.

If innodb_file_per_table = 1 is set during database creation, InnoDB creates a data file for each TABLE, and then only needs to run the optimize table command to release all deleted disk space.

After running the optimize table Table name, although TABLE does not support optimize, doing recreate + analyze instead will be reported at the end, it is actually successful :)

-------------------------------------------------------------

If you do not set this parameter and want to release the space and completely release the deleted data, you need to export the database, delete the InnoDB database file, and then import it.

The basic steps are as follows:

1. Use the mysqldump command to export the InnoDB Database

2. Stop MySQL

3. Delete All InnoDB database files and logs

4. Start MySQL and automatically recreate InnoDB database files and log files

5. Import the database files backed up earlier.

----------------------------------------------

Specific commands:
Copy codeThe Code is as follows:
# Back up a database:

Mysqldump-uroot-proot -- quick -- force -- all-databases> mysqldump. SQL
# Stopping a database

Service mysqld stop
# Delete these large files
Rm/usr/local/mysql/var/ibdata1
Rm/usr/local/mysql/var/ib_logfile *
# Manually delete all database folders except Mysql, and then start the database

Service mysqld start
# Restore Data

Mysql-uroot-proot <mysqldump. SQL

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.