NOTE

InnoDB Tablespaces

Logical and physical storage of InnoDB pages across system, file-per-table, undo, and temporary tablespaces.

DatabasesCreated Updated 1 min readhistorical

This is a historical learning note and may contain outdated or incomplete understanding.

InnoDB stores data in tablespaces, which contain fixed-size pages used for indexes and other engine structures. Depending on configuration and object type, storage may reside in the system tablespace, file-per-table tablespaces, general tablespaces, undo tablespaces, or temporary storage.

A tablespace is not equivalent to one SQL table in every configuration. Operational work such as backups, space reclamation, and file growth should be reasoned about from the actual tablespace layout and MySQL version/configuration.

Loading helpful count