Lecture 74: MySQL Database InnoDB Storage Engine Transactions: Core Concepts of Redo Log and Undo Logo

1.Logical storage structure in the InnoDB engine

The logical structure of the InnoDB storage engine is divided into the following layers:

  • TableSpace: table space

    • Table space is the highest level in the logical structure of the InnoDB storage engine. If the innodb_file_per_table parameter is turned on, then each table will have a table space file (xxx.ibd), which can correspond to multiple table spaces in a MySQL instance. The table space uses Used to store row data and index data.
    • A table space can contain multiple Segment segments.
  • Segment: segment

    • The table space is composed of many segments, divided into data segments, index segments,

Guess you like

Origin blog.csdn.net/weixin_44953658/article/details/134823961