1. IntroductionThe reason for raising this question is that I found at work that the id of the user table in MySQL is auto-incremented by default, but the results stored in the database are not continuous. User table structure: CREATE TABLE `user` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Increment id', `name` varchar(20), `create_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT 'Creation time', `update_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT 'Update time', PRIMARY KEY (`id`), UNIQUE KEY `idx_name` (`name`)) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COMMENT='user table' The user table stores: 2. Self-increment storage description1.1 The auto-increment value of the MyISAM engine is stored in the data file. 1.2 The self-increment value of the InnoDB engine is actually stored in the memory. It was not until MySQL 8.0 that the ability of "self-increment persistence" was achieved, that is, "if a restart occurs, the self-increment value of the table can be restored to the value before MySQL restarted". The specific situation is:
Three self-value-added modification mechanismsIn MySQL, if the field id is defined as AUTO_INCREMENT, when inserting a row of data, the behavior of the auto-increment is as follows:
The result of changing the auto-increment value will vary depending on the relationship between the value to be inserted and the current auto-increment value. Suppose the value to be inserted is X and the current auto-increment value is Y.
The new auto-increment generation algorithm is: starting from auto_increment_offset, with auto_increment_increment as the step length, continue to add until the first value greater than X is found as the new auto-increment. Among them, auto_increment_offset and auto_increment_increment are two system parameters, which are used to represent the initial value and step size of the auto-increment respectively, and the default value is 1. 4. Time to modify the self-valued valueinsert into user values(null, '张三'); 1 When the above SQL is executed, the executor calls the InnoDB engine interface to write a row. The value of this row passed in is (0,"张三"); 2 InnoDB finds that SQL does not specify the value of the auto-increment id, and obtains the current auto-increment value 2 of the user table; 3 Change the value of the incoming row to (2,"张三"); 4 Change the table's auto-increment value to 3; 5 Continue to insert data. 5. Reasons for discontinuous self-increment5.1 Unique Key ConflictAssume that when the SQL is executed, the user table id = 10, and the auto-increment id in the memory is 11. A unique key conflict occurs and the write to the database fails. The user table does not have the record with id = 10. After that, ids are written starting from 11, so the ids are discontinuous. 5.2 Transaction RollbackAssume that the user and staff tables need to be written to the database at the same time. When the SQL is executed, the user table id = 10, and the auto-increment id in the memory is 11; the staff table id = 20, and the auto-increment id in the memory is 21. Once the transaction fails, the transaction rolls back and the write operation fails, the user table does not have the record with id = 10, and the staff table does not have the record with id = 20. The user table starts writing from 11, and the staff table starts writing from 21, resulting in discontinuous ids. 5.3 Batch write operationFor statements that insert data in batches, MySQL has a strategy for applying for auto-increment IDs in batches: 1. During statement execution, if you apply for an auto-increment id for the first time, 1 will be allocated; 2. After 1 is used up, this statement applies for the auto-increment id for the second time, and 2 will be allocated; 3. After the two are used up, the same statement is used to apply for the third self-increment id, and 4 will be allocated; Similarly, when the same statement is used to apply for auto-increment IDs, the number of auto-increment IDs applied for each time is twice the number of the previous one. Assume that four records are written to the user table in batches, then these four records will be divided into three application IDs. The first time it is assigned to id = 1, the second time it is assigned to id = 2, 3, and the third time it is assigned to id = 4, 5, 6, 7. After four records are written in batches, id = 1, 2, 3, 4 will be stored, but id = 5, 6, 7 will be discarded, and the next id starts from 8. 6. Reference Documentshttps://time.geekbang.org/column/intro/139 This is the end of this article about why MySQL auto-increment primary keys are not continuous. For more relevant content about MySQL auto-increment primary keys, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Introduction to the use of HTML element noscript
>>: How to use Nginx to carry rtmp live server
Table of contents Preface Function Overloading Ma...
Table of contents 1. Nginx implements load balanc...
Preface The default database file of the MySQL da...
1. Create users and authorize Creating users and ...
This article example shares the specific code of ...
Table of contents Preface 1. Basic knowledge of d...
Execute the command to install the plugin postcss...
Although W3C has established some standards for HT...
Each of these 16 sites is worth reading carefully,...
1. Introduction to inode To understand inode, we ...
Preface During the development process, we often ...
Installation Environment WIN10 VMware Workstation...
DTD is a set of grammatical rules for markup. It i...
Table of contents 1. Differences between the two ...
This status code provides information about the s...