Solution to running out of MySQL's auto-increment ID (primary key)

Solution to running out of MySQL's auto-increment ID (primary key)

There are many types of auto-increment IDs used in MySQL, and each auto-increment ID has an initial value set. Generally, the initial value starts from 0 and then increases in a certain step size (usually by 1). Generally, we use int(11) as the auto-increment ID of a data table. In MySQL, as long as the byte length of this number is defined, there will be an upper limit.

What should I do if MySQL's auto-increment ID (primary key) is used up?

If we use int unsigned (int, 4 bytes), we can calculate the maximum currently declared auto-increment ID. Since int unsigned is defined here, the maximum value can reach 2 to the power of 32 - 1 = 4294967295.

Here is a little trick. When creating a table, you can directly declare the initial value of AUTO_INCREMENT as 4294967295.

create table `test` (
 `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
 PRIMARY KEY (`id`)
)ENGINE=InnoDB AUTO_INCREMENT=4294967295;

SQL Insert Statement

insert into `test` values ​​(null);

When I tried to insert another piece of data, I got the following abnormal result.

[SQL] insert into `test` values ​​(null);
[Err] 1062 - Duplicate entry '4294967295' for key 'PRIMARY'

It means that when the data is inserted again, the auto-increment ID used is still 4294967295, and a primary key conflict error is reported. This means that after the ID value reaches the upper limit, it will no longer change. 4294967295, this number can handle most scenarios. If your service frequently inserts and deletes data, there is still a risk of running out. It is recommended to use bigint unsigned, which is a large number.

bigint unsigned is an integer data (all numbers) ranging from -2^63 (-9223372036854775808) to 2^63-1 (9223372036854775807), and its storage size is 8 bytes.

However, there is another situation. What happens if the primary key is not explicitly declared when creating a table?

If this is the case, InnoDB will automatically create an invisible row_id of 6 bytes for you, and InnoDB maintains a global dictsys.row_id, so tables without a primary key defined share the row_id. Each time a piece of data is inserted, the global row_id is used as the primary key id, and then the global row_id is increased by 1.

The global row_id is implemented using the bigint unsigned type, but actually only 6 bytes are reserved for row_id. This design will have a problem: if the global row_id keeps increasing until it reaches 2 to the 48th power - 1, and then increases by 1, the lower 48 bits of row_id will all be 0. As a result, when a new row of data is inserted, the row_id obtained will be 0, and there is a possibility of a primary key conflict.

Therefore, in order to avoid this hidden danger, each table needs to have a primary key.

Summarize

After the auto-increment ID of the database table reaches the upper limit, its value will not change when it is applied again. Continuing to insert data will result in a primary key conflict error. Therefore, when designing a data table, try to choose the appropriate field type based on business needs.

The above is the detailed content of the solution to the problem that MySQL's auto-increment ID (primary key) has been used up. For more information about MySQL's auto-increment ID (primary key), please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • How to modify the starting value of mysql auto-increment ID
  • How to set mysql auto-increment id back to 0
  • Solution to the problem of self-increment ID in MySQL table
  • Troubleshooting and solutions for MySQL auto-increment ID oversize problem
  • What you need to know about MySQL auto-increment ID
  • Example of MySQL auto-increment ID exhaustion
  • Summary of some small issues about MySQL auto-increment ID
  • What to do if MySQL self-incrementing ID runs out

<<:  Vue's various implementation methods for modifying parent component props through child components

>>:  How to build a tomcat image based on Dockerfile

Recommend

How to use CSS style to vertically center the font in the table

The method of using CSS style to vertically cente...

How to install JDK and Mysql on Ubuntu 18.04 Linux system

Platform deployment 1. Install JDK step1. Downloa...

Linux kernel device driver system call notes

/**************************** * System call******...

Linux kernel device driver address mapping notes

#include <asm/io.h> #define ioremap(cookie,...

MYSQL database GTID realizes master-slave replication (super convenient)

1. Add Maria source vi /etc/yum.repos.d/MariaDB.r...

Tutorial on installing Pycharm and Ipython on Ubuntu 16.04/18.04

Under Ubuntu 18.04 1. sudo apt install python ins...

An article explains Tomcat's class loading mechanism

Table of contents - Preface - - JVM Class Loader ...

mysql replace part of the field content and mysql replace function replace()

[mysql] replace usage (replace part of the conten...

How to install a virtual machine with Windows services on Mac

1. Download the virtual machine Official download...

Comparison between Redis and Memcache and how to choose

I've been using redis recently and I find it ...

Mysql5.6.36 script compilation, installation and initialization tutorial

Overview This article is a script for automatical...

How to solve the problem that Seata cannot use MySQL 8 version

Possible reasons: The main reason why Seata does ...

How to migrate mysql storage location to a new disk

1. Prepare a new disk and format it with the same...

How to configure wordpress with nginx

Before, I had built WordPress myself, but at that...