1. What is deadlock? The official definition is as follows: two transactions hold locks required by the other party and are waiting for the other party to release them, and neither party will release their own locks. This is like you have a hostage and the other party has a hostage, and the two of you go to negotiate to exchange people. You ask the other side to release the player, and the other side asks you to release the player. 2. Why does deadlock occur? Seeing this, you may have such a question. Transactions are different from negotiations. Why can't transactions release the lock immediately after using it? Do you have to hold the lock after the operation is completed? This involves MySQL's concurrency control. There are two ways of concurrency control in MySQL, one is MVCC and the other is two-phase locking protocol. So why do we need concurrency control? This is because when multiple users operate MySQL at the same time, in order to improve concurrency performance, it is required that the requests from multiple users be executed serially (serializable scheduling). The specific concurrency control will not be expanded here. Let's continue to discuss the two-phase locking protocol in depth. Two-Phase Locking Protocol (2PL) Official definition: The two-phase locking protocol means that all transactions must lock and unlock data in two phases. Before reading or writing any data, the transaction must first obtain a lock on the data; after releasing a lock, the transaction no longer applies for or obtains any other locks. Corresponding to MySQL, it is divided into two stages:
That is to say, only by following the two-stage lock protocol can serializable scheduling be achieved. However, the two-phase locking protocol does not require that a transaction must lock all the data it needs to use at one time, and there is no order requirement in the locking phase, so this concurrency control method will cause deadlock. 3. How does MySQL handle deadlock? MySQL has two deadlock handling methods:
Due to performance reasons, deadlock detection is generally used to handle deadlocks. Deadlock Detection The principle of deadlock detection is to construct a directed graph with transactions as vertices and locks as edges, and determine whether there is a cycle in the directed graph. If there is a cycle, there is a deadlock. rollback After a deadlock is detected, the transaction with the least number of inserted, updated, or deleted rows is selected for rollback, based on the trx_weight field in the INFORMATION_SCHEMA.INNODB_TRX table. 4. How to avoid deadlock Collect deadlock information:
Reduce deadlock:
The above is a detailed explanation of how MySQL (InnoDB) handles deadlocks. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! You may also be interested in:
|
<<: How does Vue download non-same-origin files based on URL
>>: Several scenarios for using the Nginx Rewrite module
Sometimes we need to control whether HTML elements...
01. Overview Absolute paths and relative paths ar...
Table of contents 1. Introduction 2. Usage Statel...
This tutorial shares the installation and configu...
Table of contents 1. v-on directive 1. Basic usag...
Two parameters of Mysql paging select * from user...
This article shares the specific code of jQuery t...
Table of contents 1. Stored Procedure 1.1. Basic ...
Table of contents Chain calls A small case Chain ...
Preface As we all know, the nginx configuration f...
Table of contents Preface: 1. Default value relat...
An index is a sorted data structure! The fields t...
illustrate This article was written on 2017-05-20...
1. Why write this article? You must have read a l...
Table of contents Prototype chain We can implemen...