zoukankan      html  css  js  c++  java
  • Using SHOW PROCESSLIST and mysqladmin debug Output in Conjunction with SHOW INNODB STATUS

    When InnoDB appears hung, I know the natural reaction is to check SHOW ENGINE INNODB STATUS.

    In fact, it’s the first thing I check when InnoDB tables are involved.

    However, I just want to iterate how valuable SHOW FULL PROCESSLIST and/or mysqladmin debug outputs can be even when it seems mysqld is hung on on InnoDB table.

    Two recent cases I’ve encountered illustrate why.

    Case #1:

    MySQL appeared hung on the following simple, single-row INSERT:

    ---TRANSACTION 0 2035648699, ACTIVE 76629 sec, process no 9047,
    OS thread id 3069426592, thread declared inside InnoDB 500
    mysql tables in use 1, locked 1
    ...
    INSERT INTO test (id, parent, text) VALUES (180370, 70122, 'test table')

    At least that’s what it seemed per the INNODB STATUS, but unfortunately, there wasn’t any further information to go on.

    The next time it occurred, SHOW FULL PROCESSLIST was captured at the time.

    Turns out, there was a *very* long SELECT running, but not from the same table, and no foreign keys (FKs) either. Turned out it was some crazy, auto-generated query that self-joined itself 548 times. So there were no locks, per se. This query itself held up everything, and thus also the INSERT.

    Case #2:

    This was a table that was also hanging on a certain, simple UPDATE. The UPDATE was based on te PK, so only one row was to be updated.

    Yet, it hung, and it hung, longer than wait_timeoutinteractive_timeout, and innodb_lock_wait_timeout. And there were no other transactions running in the INNODB STATUS.

    Turned out, another client had issued a LOCK TABLE command on the table. Since LOCK TABLE is handled outside of the InnoDB storage engine, the lock doesn’t appear in SHOW INNODB STATUS output.

    Using mysqladmin debug output, coupled with SHOW PROCESSLIST helped catch this offender.

    At any rate, hope this helps, and happy troubleshooting. 

    参考:

    http://www.chriscalender.com/using-show-processlist-and-mysqladmin-debug-output-in-conjunction-with-show-innodb-status/

  • 相关阅读:
    特NB的本地语音识别方案(转)
    海思MPP(转)
    单片机实现PT2262解码示例代码(转)
    海思HI35XX之----视频处理单元各通道间的关系(转)
    海思AI芯片(Hi3519A/3559A)方案学习(三)Ubuntu18.0.4上编译Hi3519AV100 uboot和kernel(转)
    Hi3519V101开发环境搭建(二)(转)
    Git 原理
    海思3531添加移远EC20 4g模块(转)
    将移远通信的EC20驱动移植到NUC972上(转)
    Shell 正则表达式
  • 原文地址:https://www.cnblogs.com/xiaotengyi/p/4202602.html
Copyright © 2011-2022 走看看