In-depth understanding of MySQL various locks

In-depth understanding of MySQL various locks

Lock Overview

A lock is a mechanism by which a computer coordinates multiple processes or threads to access a resource.

In the database, in addition to the contention of traditional computer resources (such as CPU, RAM, I/O, etc.), data is also a resource shared by many users. If the consistency and validity of concurrent data access are to be guaranteed, it is a problem that all databases must solve. Lock conflict is also an important factor affecting the concurrent access performance of the database. From this perspective, locks are particularly important and more complex for databases.

Lock classification

Granularity of database operations

Table locks:
	During the operation, the entire table row lock is locked:
	When operating, the current operation line will be locked.

Types of data operations

Read lock (shared lock):
	For the same data, multiple read operations can be performed simultaneously without affecting each other's write locks (exclusive locks):
	Until the operation is completed, it will block other write locks and read locks

mysql lock

Compared with other databases, MySQL's locking mechanism is relatively simple. Its most notable feature is that different storage engines support different locking mechanisms.

Lock levels supported by different storage engines

Storage Engine Table lock Row-level locks Page Lock
MyISAM support Not supported Not supported
InnoDB support support Not supported
MEMORY support Not supported Not supported
BDB support Not supported support

Lock Introduction

It is difficult to say in general which lock is better. It is necessary to analyze which lock is more suitable based on specific application scenarios.

Lock Type Features
Table lock It prefers the MyISAM storage engine, which has low overhead and fast locking. It will not cause deadlock. It has large locking granularity, the highest probability of sending lock conflicts, and the lowest concurrency.
Row-level locks It tends to be the InnoDB storage engine, which has high overhead and slow locking. Deadlock may occur. It has the smallest locking granularity, the lowest probability of lock conflicts, and the highest concurrency.
Page Lock The overhead and locking time are between table locks and row locks; deadlocks may occur; the locking granularity is between table locks and row locks, and the concurrency is average.

MyISAM table locks

How to add a table lock

Before executing a query statement (select), MyISAM will automatically lock all tables involved. Before executing an update operation (update, delete, insert, etc.), it will automatically add a write lock to the tables involved. This process does not require user intervention. Therefore, users generally do not need to directly use the LOCK TABLE command to explicitly lock the MyISAM table.

Unlock

Add read lock:
	lock table table_name read; 
	---Unlock tables;
Add write lock:
	lock table table_name write;
	Add a write lock. The current session can read and write, and other sessions will be blocked (waiting). Read locks restrict writing, and write locks restrict reading and writing.

Lock contention

1. Read operations on MyISAM tables will not block other users' read requests for the same table, but will block write requests for the same table;
2. Write operations on MyISAM will block other users' read and write operations on table 1;
3. MyISAM lock scheduling is write-first.
	It is not suitable as the main table. After writing the lock, a large number of updates by other threads will make it difficult for the query to obtain the lock, which may cause permanent blocking.

Lock usage

Check the usage of locks show open tables;
Check the lock status of the table show status like 'table_locks%';
		Table_locks_immediate: The number of times a table-level lock can be acquired. The value increases by 1 for each immediate lock acquisition.
		Table_locks_waited: The number of times you need to wait if you cannot obtain the lock immediately. The value increases by 1 each time you wait. This can be used to determine the severity of table-level lock contention.	

InnoDB Locks

The biggest differences between InnoDB and MyISAM are: first, it supports transactions; second, it uses row-level locks

Row Lock

Shared locks:
	Also known as a read lock, multiple transactions can share a lock, but can only read, not write exclusive locks:
	Also known as write lock, locks are not shared. Transactions that cannot obtain locks cannot perform read and write operations. If update, delete, and insert statements are performed, innoDB will automatically add exclusive locks to the data sets involved. No locks will be added to different select statements. Locks are added to queries explicitly. Add shared locks:
		select * from table_name where ... Lock IN SHARE MODE
	Add an exclusive lock:
		select * from table_name where ... FOR UPDATE

Lock escalation

Index failure, row lock upgrade to table lock where there is no index behind it is also upgraded to table lock

Gap Lock

InnoDB will also lock data that does not exist in the gap, which is called gap lock

Lock contention

show status like 'innodb_row_lock%';
	Innodb_row_lock_current_waits The number of locks currently waiting Innodb_row_lock_time The total duration of the lock Innodb_row_lock_time_avg The average duration of the lock Innodb_row_lock_time_max The maximum duration of the lock Innodb_row_lock_waits The total number of waits since the system was started

Summarize

The innoDB storage engine implements row locks. Although the performance consumption caused by the implementation of the locking mechanism may be higher than that of table locks, it is far superior to MyISAM table locks in terms of overall concurrent processing capabilities. When the system concurrency is relatively high, the overall performance of InnoDB will have a clear advantage over MyISAM.

Optimization suggestions

Try to make all data retrievals be completed through indexes to avoid upgrading non-index row locks to table locks. Design indexes reasonably and minimize the scope of locks. Minimize index conditions and index scopes to avoid gap locks. Try to control transaction size and reduce the amount of locked resources and the length of time. Use low-level transaction isolation as much as possible (business needs to meet the needs).

This is the end of this article about in-depth understanding of various MySQL locks. For more relevant MySQL lock content, 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:
  • MySQL pessimistic locking and optimistic locking implementation
  • The most comprehensive explanation of the locking mechanism in MySQL
  • A brief understanding of the relevant locks in MySQL

<<:  Detailed process of changing apt source to Alibaba Cloud source in Ubuntu 18.04

>>:  Use CSS to easily implement some frequently appearing weird buttons

Recommend

Sharing tips on using vue element and nuxt

1. Element time selection submission format conve...

The main differences between MySQL 4.1/5.0/5.1/5.5/5.6

Some command differences between versions: show i...

File sharing between Ubuntu and Windows under VMware

This article records the method of sharing files ...

MySQL 5.7 and above version download and installation graphic tutorial

1. Download 1. MySQL official website download ad...

Method for realizing Internet interconnection by VMware virtual machine bridging

After installing VMware and creating a new virtua...

How to Find the Execution Time of a Command or Process in Linux

On Unix-like systems, you may know when a command...

The normal method of MySQL deadlock check processing

Normally, when a deadlock occurs, the connection ...

How to write beautiful HTML code

What Beautiful HTML Code Looks Like How to write ...

Do you know why vue data is a function?

Official website explanation: When a component is...

Tomcat first deployment web project process diagram

Put your own web project in the webapps directory...

Some notes on modifying the innodb_data_file_path parameter of MySQL

Preface innodb_data_file_path is used to specify ...

HTML Tutorial: DOCTYPE Abbreviation

When writing HTML code, the first line should be ...