PrefaceDifferentiate according to the granularity of locking
According to the locking scenario
Global LockThe lock object is: the entire database instance Flush tables with read lock (FTWRL)-makes the entire database read-only Usage scenario: Make a logical backup of the entire database Full database logical backupWhy do we need a global lock to back up data? For example, for sales, I have one table to record shipments and another table to record deductions. As a result, I backed up the shipment record table. At this time, someone bought something, but only the payment was deducted but there was no shipment record. This is obviously not acceptable. The official logical backup tool is mysqldump. When mysqldump uses the parameter –single-transaction, a transaction is started before importing data to ensure a consistent view. Thanks to the support of MVCC, the data can be updated normally during this process. However, this is based on transactions and is not available for the MyISAM data engine. In this case, it is possible that some tables are not based on the InnoDB data engine. Of course, if all are innodb data engine tables, then it is better to use the default mysqldump to add the parameter –single-transaction to perform global logical backup. Difference between FTWRL and set global readonly=true
Table lockCommand: lock table {tableName} read/write (write is more powerful than read, if you can write, you can also read), unlock table The locked resource only allows the current thread to perform the corresponding operation. And the current thread can only perform the corresponding operation on the locked table. For example: lock table t1 read, the current thread can only read but not write, and other threads cannot read or write MDL lockNo explicit use is required, it is automatically added when accessing the table (to prevent problems caused by changes in the table structure) Apply an MDL read lock when adding, deleting, modifying, or checking a table, and apply an MDL write lock when changing the structure of a table.
Row LockRow locks are implemented at the engine level by each engine (MyISAM does not support row locks, so the engine can only perform update operations on one thread at a time) In a transaction: row locks are added when a row or multiple rows of data are needed, but all row locks are not released until the transaction is committed. In other words, if other threads need to access the row data, they need to wait until the thread's transaction is committed before they can access it. Example:
Therefore, the point we need to pay attention to is: when performing transaction operations, if the update is not sequential, then try to execute the statement with the most access last (because locking is sequential, but releasing locks is released together)
DeadlockMany situations will cause deadlocks, most of which are caused by problems with database operations. For example
There are two strategies for dealing with this problem:
Record LockA case of row lock It is aimed at a certain record information locked by the transaction after locking Triggering condition: The query condition is accurately matched and the matching condition field is unique For example: update t1 set name="张三" where id=12138 Function: When a record is managed by the current transaction, it will not be acquired by other transactions after being locked, causing "repeated reads" and "data dirty reads" problems Gap LockA case of row lock The gap means the data in between There are multiple unfilled data in the primary key index id. At this time, if there are two threads A and B, A is querying data between 0-10, and B is inserting data into id=3, it will cause data dirty read problem. Therefore, when performing a transaction in a range such as between, a gap lock will be added for constraint. Pro Key LockThe temporary key lock will lock the queried records, and will also lock all the gap spaces within the range query, and then it will also lock the next adjacent interval. (Lin means adjacent) Optimistic and pessimistic locking
SummarizeThis is the end of this article about the locking mechanism in MySQL. For more information about the locking mechanism in MySQL, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Example of using the href attribute and onclick event of a tag
>>: Implementation of one-click TLS encryption for docker remote api
This article uses examples to illustrate the usag...
1. Introduction Since pictures take up a lot of s...
Today, let’s discuss an interesting topic: How mu...
1. Basic knowledge (methods of date objects) 😜 ge...
The main part of the page: <body> <ul id...
Solution: Bind the click event to the audio compo...
1. Font properties color, specifies the color of ...
Preface Previously, I talked about the problem of...
1: Docker private warehouse installation 1. Downl...
1. First find the Data file on the migration serv...
Failure Scenario When calling JDBC to insert emoj...
Question. In the mobile shopping mall system, we ...
Recently, Xiao Ming just bought a new Mac and wan...
This article shares the simple process of install...
Docker image download is stuck or too slow I sear...