自增id跳跃递增,没有按顺序递增

【 使用环境 】生产环境
【 使用版本 】4.2.0_CE
【问题描述】

  1. 自增主键id出现大跨度跳跃,没有按顺序自增:1->1000001->2000001->3000007
    image

  2. 使用dumper导出的结构:

drop TABLE if exists `email_send_log`;
create table if not exists `email_send_log` (
	`id` int(10) not null auto_increment,
	`create_time` int(11) not null,
	primary key (`id`)
)
default charset=utf8mb4
default collate=utf8mb4_general_ci;

参考自增列 OceanBase分布式数据库-海量数据 笔笔算数