Issues with locking in MySQL

Issues with locking in MySQL

Lock classification:

From the granularity of data operations:

Table lock: When operating, the entire table will be locked. Row lock: When operating, the current operation row will be locked.

According to the type of data operation:

Read lock (shared lock): Multiple read operations can be performed simultaneously on the same data without affecting each other. Write lock (exclusive lock): It blocks other clients from writing until the current operation is completed.

insert image description here


Row table lock features:

insert image description here


MyISAM table locks:

How to add table lock
MyISAM automatically adds read locks to all tables involved before executing a query statement (SELECT).
INSERT, etc.), the write lock will be automatically added to the table involved. This process does not require user intervention. Therefore, users generally do not need to use LOCK directly.
TABLE command explicitly locks a MyISAM table.

insert image description here

In short, read locks block writes but do not block reads. A write lock will block both reading and writing.

In addition, MyISAM's read-write lock scheduling is write-first, which is why MyISAM is not suitable as a storage engine for write-dominant tables. Because other threads cannot perform any operations after the write lock is obtained, a large number of updates will make it difficult for the query to obtain the lock, resulting in permanent blocking.


InnoDB row locks

Introduction to row locks Row lock features: biased towards the InnoDB storage engine, high overhead, slow locking; deadlock may occur; minimum locking granularity, lowest probability of lock conflict, and highest concurrency.
There are three biggest differences between InnoDB and MyISAM: one is that it supports transactions; two is that it uses row-level locks; and three is that it supports foreign keys.

Transactions:
A transaction is a logical processing unit consisting of a group of SQL statements.

Four major characteristics of transactions (ACID):

insert image description here
insert image description here

insert image description here

This is the end of this article about MySQL lock related issues. For more information about MySQL lock issues, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Analysis of MySQL lock wait and deadlock problems
  • In-depth analysis of MySQL lock blocking
  • Summary of MySQL lock knowledge points

<<:  Detailed explanation of the process of building an MQTT server using Docker

>>:  JavaScript implements cool mouse tailing effects

Recommend

Nginx service 500: Internal Server Error one of the reasons

500 (Internal Server Error) The server encountere...

Detailed explanation of several ways to create a top-left triangle in CSS

Today we will introduce several ways to use CSS t...

Detailed explanation of the API in Vue.js that is easy to overlook

Table of contents nextTick v-model syntax sugar ....

Solution to installing vim in docker container

Table of contents The beginning of the story Inst...

Discussion on Web Imitation and Plagiarism

A few months after entering the industry in 2005, ...

Detailed installation and configuration tutorial of MySQL 5.7 under Win10

1. Unzip MySQL 5.7 2. Create a new configuration ...

Detailed explanation of the method of comparing dates in MySQL

If there is a table product with a field add_time...

Centos8 builds nfs based on kdc encryption

Table of contents Configuration nfs server (nfs.s...

Use h1, h2, and h3 tags appropriately

In the process of making web pages, it is inevita...

A brief discussion on the maximum number of open files for MySQL system users

What you learn from books is always shallow, and ...

How to deploy nginx with Docker and modify the configuration file

Deploy nginx with docker, it's so simple Just...

Install Linux rhel7.3 operating system on virtual machine (specific steps)

Install virtualization software Before installing...

Detailed steps to install docker in 5 minutes

Installing Docker on CentOS requires the operatin...

Analyze the difference between ES5 and ES6 apply

Table of contents Overview Function signature Opt...

Explanation of the problem of selecting MySQL storage time type

The datetime type is usually used to store time i...