Home Database Mysql Tutorial 查找MySQL线程中死锁的ID的方法

查找MySQL线程中死锁的ID的方法

Jun 01, 2016 am 09:57 AM
mysql deadlock

如果遇到死锁了,怎么解决呢?找到原始的锁ID,然后KILL掉一直持有的那个线程就可以了, 但是众多线程,可怎么找到引起死锁的线程ID呢? MySQL 发展到现在,已经非常强大了,这个问题很好解决。 直接从数据字典连查找。

我们来演示下。

线程A,我们用来锁定某些记录,假设这个线程一直没提交,或者忘掉提交了。 那么就一直存在,但是数据里面显示的只是SLEEP状态。

<code class="sql">mysql> set @@autocommit=0;
 
Query OK, 0 rows affected (0.00 sec)
 
mysql> use test;
 
Reading table information for completion of table and column names
 
You can turn off this feature to get a quicker startup with -A
 
Database changed
 
mysql> show tables;
 
+—————-+
 
| Tables_in_test |
 
+—————-+
 
| demo_test   |
 
| t3       |
 
+—————-+
 
2 rows in set (0.00 sec)
 
mysql> select * from t3;
 
+—-+——–+——–+————+—-+—-+—-+
 
| id | fname | lname | birthday  | c1 | c2 | c3 |
 
+—-+——–+——–+————+—-+—-+—-+
 
| 19 | lily19 | lucy19 | 2013-04-18 | 19 | 0 | 0 |
 
| 20 | lily20 | lucy20 | 2013-03-13 | 20 | 0 | 0 |
 
+—-+——–+——–+————+—-+—-+—-+
 
2 rows in set (0.00 sec)
 
mysql> update t3 set birthday = '2022-02-23' where id = 19;
 
Query OK, 1 row affected (0.00 sec)
 
Rows matched: 1 Changed: 1 Warnings: 0
 
mysql> select connection_id();
 
+—————–+
 
| connection_id() |
 
+—————–+
 
|       16 |
 
+—————–+
 
1 row in set (0.00 sec)
 
mysql> 
</code>
Copy after login

 

线程B, 我们用来进行普通的更新,但是遇到问题了,此时不知道是哪个线程把这行记录给锁定了?

<code class="sql">mysql> use test;
 
Reading table information for completion of table and column names
 
You can turn off this feature to get a quicker startup with -A
 
Database changed
 
mysql> select @@autocommit;
 
+————–+
 
| @@autocommit |
 
+————–+
 
|      1 |
 
+————–+
 
1 row in set (0.00 sec)
 
mysql> update t3 set birthday='2018-01-03' where id = 19;
 
ERROR 1205 (HY000): Lock wait timeout exceeded; try restarting transaction
 
mysql> select connection_id();
 
+—————–+
 
| connection_id() |
 
+—————–+
 
|       17 |
 
+—————–+
 
1 row in set (0.00 sec)
 
mysql> show processlist;
 
+—-+——+———–+——+———+——+——-+——————+
 
| Id | User | Host   | db  | Command | Time | State | Info       |
 
+—-+——+———–+——+———+——+——-+——————+
 
| 10 | root | localhost | NULL | Sleep  | 1540 |    | NULL       |
 
| 11 | root | localhost | NULL | Sleep  | 722 |    | NULL       |
 
| 16 | root | localhost | test | Sleep  | 424 |    | NULL       |
 
| 17 | root | localhost | test | Query  |  0 | init | show processlist |
 
| 18 | root | localhost | NULL | Sleep  |  5 |    | NULL       |
 
+—-+——+———–+——+———+——+——-+——————+
 
5 rows in set (0.00 sec)
 
mysql> show engine innodb status\G
 
————
 
TRANSACTIONS
 
————
 
Trx id counter 189327
 
Purge done for trx's n:o = 189325, sees </code>
Copy after login

上面的信息很繁多,也看不清楚到底哪里是哪里。

不过现在,我们只要从数据字典里面拿出来这部分信息就OK了。

<code class="sql">mysql> SELECT * FROM information_schema.INNODB_TRX\G
 
*************************** 1. row ***************************
 
          trx_id: 189324
 
        trx_state: RUNNING
 
       trx_started: 2013-04-18 17:48:14
 
  trx_requested_lock_id: NULL
 
     trx_wait_started: NULL
 
        trx_weight: 3
 
   trx_mysql_thread_id: 16
 
        trx_query: NULL
 
   trx_operation_state: NULL
 
    trx_tables_in_use: 0
 
    trx_tables_locked: 0
 
     trx_lock_structs: 2
 
  trx_lock_memory_bytes: 376
 
     trx_rows_locked: 3
 
    trx_rows_modified: 1
 
 trx_concurrency_tickets: 0
 
   trx_isolation_level: REPEATABLE READ
 
    trx_unique_checks: 1
 
  trx_foreign_key_checks: 1
 
trx_last_foreign_key_error: NULL
 
trx_adaptive_hash_latched: 0
 
trx_adaptive_hash_timeout: 10000
 
     trx_is_read_only: 0
 
trx_autocommit_non_locking: 0
 
1 row in set (0.01 sec)
 
mysql> </code>
Copy after login

原来是线程16忘掉COMMIT了。

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1666
14
PHP Tutorial
1273
29
C# Tutorial
1253
24
Laravel Introduction Example Laravel Introduction Example Apr 18, 2025 pm 12:45 PM

Laravel is a PHP framework for easy building of web applications. It provides a range of powerful features including: Installation: Install the Laravel CLI globally with Composer and create applications in the project directory. Routing: Define the relationship between the URL and the handler in routes/web.php. View: Create a view in resources/views to render the application's interface. Database Integration: Provides out-of-the-box integration with databases such as MySQL and uses migration to create and modify tables. Model and Controller: The model represents the database entity and the controller processes HTTP requests.

MySQL and phpMyAdmin: Core Features and Functions MySQL and phpMyAdmin: Core Features and Functions Apr 22, 2025 am 12:12 AM

MySQL and phpMyAdmin are powerful database management tools. 1) MySQL is used to create databases and tables, and to execute DML and SQL queries. 2) phpMyAdmin provides an intuitive interface for database management, table structure management, data operations and user permission management.

MySQL vs. Other Programming Languages: A Comparison MySQL vs. Other Programming Languages: A Comparison Apr 19, 2025 am 12:22 AM

Compared with other programming languages, MySQL is mainly used to store and manage data, while other languages ​​such as Python, Java, and C are used for logical processing and application development. MySQL is known for its high performance, scalability and cross-platform support, suitable for data management needs, while other languages ​​have advantages in their respective fields such as data analytics, enterprise applications, and system programming.

Solve database connection problem: a practical case of using minii/db library Solve database connection problem: a practical case of using minii/db library Apr 18, 2025 am 07:09 AM

I encountered a tricky problem when developing a small application: the need to quickly integrate a lightweight database operation library. After trying multiple libraries, I found that they either have too much functionality or are not very compatible. Eventually, I found minii/db, a simplified version based on Yii2 that solved my problem perfectly.

Laravel framework installation method Laravel framework installation method Apr 18, 2025 pm 12:54 PM

Article summary: This article provides detailed step-by-step instructions to guide readers on how to easily install the Laravel framework. Laravel is a powerful PHP framework that speeds up the development process of web applications. This tutorial covers the installation process from system requirements to configuring databases and setting up routing. By following these steps, readers can quickly and efficiently lay a solid foundation for their Laravel project.

Solve MySQL mode problem: The experience of using the TheliaMySQLModesChecker module Solve MySQL mode problem: The experience of using the TheliaMySQLModesChecker module Apr 18, 2025 am 08:42 AM

When developing an e-commerce website using Thelia, I encountered a tricky problem: MySQL mode is not set properly, causing some features to not function properly. After some exploration, I found a module called TheliaMySQLModesChecker, which is able to automatically fix the MySQL pattern required by Thelia, completely solving my troubles.

Explain the purpose of foreign keys in MySQL. Explain the purpose of foreign keys in MySQL. Apr 25, 2025 am 12:17 AM

In MySQL, the function of foreign keys is to establish the relationship between tables and ensure the consistency and integrity of the data. Foreign keys maintain the effectiveness of data through reference integrity checks and cascading operations. Pay attention to performance optimization and avoid common errors when using them.

Compare and contrast MySQL and MariaDB. Compare and contrast MySQL and MariaDB. Apr 26, 2025 am 12:08 AM

The main difference between MySQL and MariaDB is performance, functionality and license: 1. MySQL is developed by Oracle, and MariaDB is its fork. 2. MariaDB may perform better in high load environments. 3.MariaDB provides more storage engines and functions. 4.MySQL adopts a dual license, and MariaDB is completely open source. The existing infrastructure, performance requirements, functional requirements and license costs should be taken into account when choosing.

See all articles