`
yeshaoting
  • 浏览: 684139 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

[mysql bug]Failed to read auto-increment value from storage engine

 
阅读更多

[mysql bug]Failed to read auto-increment value from storage engine

 

mysql版本:5.5.19

 

据说这是mysql很早的一个bug,看来到目前这个版本还是没能彻底解决掉。

 

bug讨论地址:http://bugs.mysql.com/bug.php?id=52193

引用:

[18 Mar 2010 19:56] Louis Breda van

Description:

Hello,

 

The bug "Failed to read auto-increment value from storage engine" as reported earlier, is not / not completely fixed.

It is causing me a serieus problem. Need to work arround it, do not yet know how.

Below a futher explanation.

 

Sincerely,

Louis

 

How to repeat:

Envirement:

VISTA64, ODBC 5.1.6, STUDIO2010 RC with patches, 6.x (latest) .NET driver, Server 5.5.2. Using VB.NET with ADODB

 

Error Message

"[MySQL][ODBC 5.1 Driver][mysqld-5.5.2-m2-community]Failed to read auto-increment value from storage engine"

 

Occurs(1):

1) insert a record having an autonumber as PK (.AddNew ..... .Update)

- no explicit commits

- recordset is opend dynamic

- server or client site does not seems to matter (using serverside now)

- lock pessimistic or optimistic does not seem te matter (using optimistic now)

- having an unique index (in my case a string) "Unique Second Key" next to the PK

- error handler in place, on error goto xyz

 

2) try to add an record causing an "Unique Second Key" violation

- the code jumps to the error handler

- in a lot of cases the mentioned error will occur and not the expected duplicate key error

 

Occurs(2) I think I also noticed the following situation

3) insert a new record (no key violation) is OK

 

4) perform a requery (to make sure the new record is in the actual set)

 

5) try to fetch the generated autonumber PK

(By the way, I would love to get the generated autonumber PK back in case of an auto number)

I noticed that the problem temporarely disapears after truncating the related table. But that is hardly a solution :>

 

Louis

 

 

 

 

解决方案

在进行数据的插入时,系统提示Failed to read auto-increment value from storage engine(从存储引擎读取自增字段失败)错误,经查阅资料,解决方法如下:

1)把涉及数据表的自增字段的自增选项去掉,保存一下

2)重新将这个字段设置为自增字段

参考:http://blog.csdn.net/lhjtianji/article/details/6836451

 

 

 

 

解决:“Failed to read auto-increment value from storage engine”

今天遇到个问题,从其它平台上注册过来的用户经常出现“Failed to read auto-increment value from storage engine”错误。

 

自己尝试了下,重现了这个错误,查了下日志:

2008-11-26 13:45:12,815 ERROR [TP-Processor3] GoGoAction.createUser(368) | User 'lefteye123' already exists! Hibernate operation: could not insert: [game.joycube.common.model.User]; uncategorized SQLException for SQL [insert into user (address, city, country, postal_code, province, comment, createDate, account_enabled, joycube, joycube2, password, platform, registerDate, totalJoycube, totalJoycube2, usedJoycube, usedJoycube2, username, version) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)]; SQL state [HY000]; error code [1467]; Failed to read auto-increment value from storage engine; nested exception is java.sql.SQLException: Failed to read auto-increment value from storage engine

game.joycube.common.service.UserExistsException: User 'lefteye123' already exists! Hibernate operation: could not insert: [game.joycube.common.model.User]; uncategorized SQLException for SQL [insert into user (address, city, country, postal_code, province, comment, createDate, account_enabled, joycube, joycube2, password, platform, registerDate, totalJoycube, totalJoycube2, usedJoycube, usedJoycube2, username, version) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)]; SQL state [HY000]; error code [1467]; Failed to read auto-increment value from storage engine; nested exception is java.sql.SQLException: Failed to read auto-increment value from storage engine

 

从日志上来看,可能是mysql的BUG,不太可能是程序上的问题。

 

搜索找到一篇文件:

Bug #35602 "Failed to read auto-increment value from storage engine" with Innodb http://bugs.mysql.com/bug.php?id=35602

 

其中有以下几句:

[21 Aug 20:00] Bugs SystemPushed into 5.1.28 (revid:timothy.smith@sun.com-20080820004056-g05a56h7y8n0zczb) (version

source revid:azundris@mysql.com-20080821081500-f2d61fh4u61owz3p) (pib:3)[25 Aug 22:19] Paul DuBoisNoted in 5.1.28 changelog.大意是这个BUG已经在5.1.28修改了,并加入到了changelog.

 

然后查了下现在系统运行的mysql版本:5.1.28-rc。

 

呵呵,看来是由msyql的BUG引起的,更新到最新版本就可以解决

参考:http://hi.baidu.com/zhukunqian_/item/84bd01342d27995e81f1a719

 

分享到:
评论

相关推荐

    数据插入异常

    在进行MySQL数据库操作时,可能会遇到“Failed to read auto-increment value from storage engine”这样的错误提示。此错误通常发生在尝试向设置了自动增长(AUTO_INCREMENT)属性的字段插入数据时。 #### 二、...

    前端开源库-mongoose-auto-increment

    **mongoose-auto-increment** 是一个前端开源库,专为Mongoose设计,用于在数据库操作中实现自增字段的功能。Mongoose是Node.js中流行的Object Data Modeling (ODM) 库,它提供了对MongoDB数据库的强大支持。这个...

    MySQL AUTO_INCREMENT 主键

    ### MySQL AUTO_INCREMENT 主键详解 在数据库设计与应用中,主键是确保数据表每一行记录唯一性的关键机制之一。而`AUTO_INCREMENT`属性则是在MySQL数据库系统中为某些整数类型的主键自动分配唯一值的功能。下面我们...

    主键自增长(AUTO-INCREMENT)

    主键自增长(AUTO_INCREMENT)

    MySQL查询和修改auto_increment的方法

    在MySQL数据库中,`auto_increment` 是一个非常重要的特性,它允许系统自动为新插入的行生成唯一的标识符,通常用于主键字段。这个特性在处理大量数据时尤其有用,因为它消除了手动设置唯一ID的需求。下面我们将深入...

    mongoose_auto_increment:Mongoose 自动增长列插件

    mongoose_auto_increment 创建一个Counter用来记录所有Collections增长数,以Mongoose plugin的方式与对应的Scheme相关联,以此实现Mongoose自动增长列

    MySQL 序列 AUTO_INCREMENT详解及实例代码

    MySQL 序列 AUTO_INCREMENT详解及实例代码 MySQL序列是一组整数:1, 2, 3, …,由于一张数据表只能有一个字段自增主键, 如果你想实现其他字段也实现自动增加,就可以使用MySQL序列来实现。 本章我们将介绍如何使用...

    python mysql自增字段AUTO_INCREMENT值的修改方式

    在处理MySQL数据库时,经常需要操作自增字段(AUTO_INCREMENT),尤其是当需要调整自增起始值的时候。在Python中与MySQL交互时,了解如何修改AUTO_INCREMENT的值是十分重要的。本文将深入探讨如何在使用Python操作...

    利用keepalived构建高可用的MySQL

    - **配置自增字段**: 为了防止自增字段冲突,可以设置`auto-increment-increment=2`和`auto-increment-offset=2`。 示例配置文件(Master 1): ```ini [mysqld] log-bin=mysql-bin server-id=1 binlog-do-db=mysql ...

    mongoose-autoincrement:用于自动递增编号ID的Mongoose插件

    猫鼬自动递增 Mongoose插件,用于自动递增编号ID。 安装 npm install --save mongoose-autoincrement 用法 var mongoose = require ( 'mongoose' ) ; var autoincrement = require ( 'mongoose-autoincrement' ) ;...

    Laravel开发-increment-decrement .zip

    在本压缩包文件“Laravel开发-increment-decrement .zip”中,可能包含了一些关于如何在Laravel项目中使用这两个方法的示例、代码片段或者教程。 1. **increment() 方法** - `increment()` 方法用于将指定列的值...

    gh-action-increment-value

    如何使用如果您在foobar/baz目录中具有以下build-number.json文件: {"buildNumber":3}.github/workflows目录中的increment.yaml .github/workflows YAML文件的.github/workflows如下: name : Increment value test...

    beego-self-increment代码.zip

    1. 数据库自增:在大多数关系型数据库(如MySQL、PostgreSQL等)中,可以设置某个字段为自增主键,每次插入新记录时,数据库会自动递增该字段的值。这是最常见且简单的方法,但依赖于数据库。 2. 应用程序内自增:...

    teleport双机1

    - `auto-increment-increment` 和 `auto-increment-offset`: 配合使用,确保主键在两台服务器上的增长互不冲突。 4. **配置MySQL主从关系** - 在一台服务器上创建复制用户并授权,例如在teleport-1上: ```sql ...

    Laravel开发-increment-decrement

    在Laravel框架中,`increment()` 和 `decrement()` 是两个非常实用的方法,它们用于方便地更新数据库中记录的数值字段。这两个方法主要用于处理计数器或者评分等需要增减的场景,使得开发者无需编写复杂的SQL语句就...

    magic-increment:字符串的递增和递减

    魔法增量 字符串的递增和递减。 安装 在浏览器中: < script src =" magic-increment.js " > </ script > ... script src =" magic-increment.min.js ... @param {string}里value要增量。 @return { strin

    MySQL高可用负载均衡集群部署

    auto-increment-increment=2 auto-increment-offset=1 replicate-do-db=scm_base 在 scm-node2 主机上修改 mysql 配置文件: sudo vi /etc/my.cnf 在 /etc/my.cnf 中的 [mysqld] 后添加内容: server-id=2 log-...

    MYSQL高可用-KEEPALIVED+双主安装文档-20200416.docx

    auto-increment-increment=2 ``` - **节点2**: ``` auto-increment-offset=2 auto-increment-increment=2 ``` ##### 5. 安装Keepalived 在所有节点上安装Keepalived,并配置相关参数以实现高可用切换。 ###...

Global site tag (gtag.js) - Google Analytics