search
HomeDatabaseMysql TutorialHow to use MySQL table locks, row locks, exclusive locks and shared locks

    1. Selection of transaction isolation mechanism

    • If we don’t care at all, use uncommitted read Transaction isolation mechanism, if these threads are allowed to operate the database concurrently, dirty reads (uncommitted data is read), non-repeatable reads (two query values ​​are different), phantom reads (two query data volumes are different), etc. Problem, data has the lowest security, the advantage is that the concurrency efficiency is very high, generally it will not be used

    • If we serialize (rely on Lock implementation), all transactions are sorted through locks. Although data security is improved, the concurrency efficiency is too low, and it is generally not used

    • So we generally use Committed Read and Repeatable Read These two isolation levels balance the security, consistency and concurrency efficiency of data, and are controlled by MVCC multi-version concurrency Implemented (MVCC is the principle of committed read and repeatable read, and lock is the principle of serialization)

    2. Table-level lock & row-level lock

    Table-level lock: lock the entire table. The overhead is small (because you don’t need to find the record of a certain row in the table to lock it. If you want to modify this table, you directly apply for the lock of this table), the lock is fast, and there will be no deadlock; the lock granularity is large, and lock conflicts will occur. The probability is high and the concurrency is low

    Row-level lock: Lock a row record. It is expensive (you need to find the corresponding record in the table, and there is a process of searching the table and index), locking is slow, and deadlock will occur; the locking granularity is the smallest, the probability of lock conflict is the lowest, and the concurrency is high

    How to use MySQL table locks, row locks, exclusive locks and shared locks

    InnoDB storage engine supports transaction processing, the table supports row-level locking, and the concurrency capability is better

    1. InnoDB row lock is through the index on the index It is implemented by locking items instead of locking row records in the table. This means that InnoDB will only use row-level locks to retrieve data through index conditions. Otherwise InnoDB will use table locks

    2. Since InnoDB's row lock implementation is a lock added for index fields, not for row records, although different rows of the table under the InnoDB engine are accessed, if the same index field is used As a filter condition, lock conflicts will still occur, and can only be performed serially, not concurrently

    3. Even if indexes are used in SQL, after passing through the MySQL optimizer,if It is considered that full table scanning is more efficient than using indexes. At this time, the use of indexes will be abandoned. Therefore, row locks will not be used
      , but table locks will be used. For example, for some small tables , MySQL will not use the index

    3. Exclusive lock (Exclusive) and shared lock (Shared)

    • Exclusive lock, Also known as X lock, write lock

    • Shared lock, also known as S lock, read lock

    Read (SS) It is compatible, but reading and writing (SX, SX) and writing (XX) are mutually exclusive.

    There is the following relationship between adding X and S locks to transactions:

    • A transaction adds S lock to data object A. It can perform read operations on A but cannot perform update operations. During the locking period, other transactions can add S locks to A but cannot add X locks

    • If a transaction adds an X lock to data object A, it can read and update A. During the locking period, other transactions cannot add any locks to A

    Display locking: select … lock in share mode to force shared lock acquisition, select … for update to acquire exclusive lock

    1. Test exclusive locks and shared locks between different transactions Compatibility

    Let’s first check the SQL and content of the table

    How to use MySQL table locks, row locks, exclusive locks and shared locks

    Check the isolation level:

    How to use MySQL table locks, row locks, exclusive locks and shared locks

    ## First open a transaction and add an exclusive lock to the data with id=7

    How to use MySQL table locks, row locks, exclusive locks and shared locks

    Then use another client to open the transaction

    How to use MySQL table locks, row locks, exclusive locks and shared locks

    We use the service thread of another transaction to add an exclusive lock to the data with id=7, which is blocked.

    How to use MySQL table locks, row locks, exclusive locks and shared locks

    We try to add an exclusive lock to the data with id=7. The shared lock is still blocked

    Summary: For data locks between different transactions, only SS locks can coexist, and XX, SX, and XS cannot coexist

    2. Test row lock addition On the index item

    the execution lock is added to the index tree

    How to use MySQL table locks, row locks, exclusive locks and shared locks

    Use the non-indexed fields of the table as filter conditions

    How to use MySQL table locks, row locks, exclusive locks and shared locks

    Transaction 2 now also wants to get the ranking of this record It locks, and it predictably fails; now transaction 2 obtains the exclusive lock of chenwei's record, try to see if it can succeed

    How to use MySQL table locks, row locks, exclusive locks and shared locks

    InnoDB supports row locks , when using the primary key id as the filtering condition, transaction 1 and transaction 2 can successfully acquire locks for different rows. However, now we find that we cannot obtain the exclusive lock named chenwei. Why is this? Let’s explain:

    InnoDB’s row lock is implemented by locking index entries, rather than locking table row records

    And we Using name as a filter condition does not use an index, so naturally row locks will not be used, but table locks will be used. This means that InnoDB uses row-level locks only when data is retrieved through the index, otherwise InnoDB will use table locks!!!

    We add an index to the name field

    How to use MySQL table locks, row locks, exclusive locks and shared locks

    How to use MySQL table locks, row locks, exclusive locks and shared locks

    We found that after adding an index to name, two transactions can obtain exclusive locks (for update) on different rows, once again proving that InnoDB's row locks are The

    How to use MySQL table locks, row locks, exclusive locks and shared locks

    added to the index item is because the name now goes through the index. Through zhangsan, we find the id of the row record where it is located on the auxiliary index tree, which is 7, and then Go to the primary key index tree and obtain the exclusive lock of the corresponding row record (My personal guess is that the corresponding records in the auxiliary index tree and primary key index tree are locked)

    4. Serialization isolation level test

    (All transactions use exclusive locks or shared locks, no user is required to manually lock)

    Set the serialization isolation level

    How to use MySQL table locks, row locks, exclusive locks and shared locks

    Two transactions can acquire shared locks at the same time (SS coexistence)

    How to use MySQL table locks, row locks, exclusive locks and shared locks


    Now let transaction 2 insert data

    How to use MySQL table locks, row locks, exclusive locks and shared locks

    At this time, insert needs to add an exclusive lock, but since transaction 1 has added a shared lock to the entire table, transaction 2 can no longer successfully lock the table (SX does not coexist)

    rollback

    How to use MySQL table locks, row locks, exclusive locks and shared locks

    Because we added an index to name, the above select is equivalent to adding a row shared lock to the data with name zhangsan

    Transaction 2 update

    How to use MySQL table locks, row locks, exclusive locks and shared locks

    Transaction 2 cannot update because the entire table has been locked by the shared lock of transaction 1 at this time

    Transaction 2 looks for zhangsan on the auxiliary index tree , find the corresponding primary key value, and then go to the primary key index tree to find the corresponding record, but find that this row of records has been locked by a shared lock. Transaction 2 can obtain the shared lock, but cannot obtain the exclusive lock

    How to use MySQL table locks, row locks, exclusive locks and shared locks

    Let’s try using the primary key index id to see if we can update

    How to use MySQL table locks, row locks, exclusive locks and shared locks

    It’s still blocked, although the field behind where we now use id instead of name, but name also finds the corresponding primary key through the auxiliary index tree, and then finds the corresponding record on the primary key index tree, and the records on the primary key index tree are locked (My personal guess is that the auxiliary index tree and The data corresponding to the primary key index tree is locked)

    We updated the data with id=8 successfully. Only row locks are added to the row data with id 7, so we can successfully operate the data with id 8

    How to use MySQL table locks, row locks, exclusive locks and shared locks

    If there is an index, row locks are used; if there is no index, Then use table lock.

    Table-level locks or row-level locks refer to the granularity of the lock. Shared locks and exclusive locks refer to the nature of the lock. Whether it is a table lock or a row lock, there is a distinction between shared locks and exclusive locks

    The above is the detailed content of How to use MySQL table locks, row locks, exclusive locks and shared locks. For more information, please follow other related articles on the PHP Chinese website!

    Statement
    This article is reproduced at:亿速云. If there is any infringement, please contact admin@php.cn delete
    图文详解mysql架构原理图文详解mysql架构原理May 17, 2022 pm 05:54 PM

    本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于架构原理的相关内容,MySQL Server架构自顶向下大致可以分网络连接层、服务层、存储引擎层和系统文件层,下面一起来看一下,希望对大家有帮助。

    mysql怎么去掉第一个字符mysql怎么去掉第一个字符May 19, 2022 am 10:21 AM

    方法:1、利用right函数,语法为“update 表名 set 指定字段 = right(指定字段, length(指定字段)-1)...”;2、利用substring函数,语法为“select substring(指定字段,2)..”。

    mysql的msi与zip版本有什么区别mysql的msi与zip版本有什么区别May 16, 2022 pm 04:33 PM

    mysql的msi与zip版本的区别:1、zip包含的安装程序是一种主动安装,而msi包含的是被installer所用的安装文件以提交请求的方式安装;2、zip是一种数据压缩和文档存储的文件格式,msi是微软格式的安装包。

    mysql怎么替换换行符mysql怎么替换换行符Apr 18, 2022 pm 03:14 PM

    在mysql中,可以利用char()和REPLACE()函数来替换换行符;REPLACE()函数可以用新字符串替换列中的换行符,而换行符可使用“char(13)”来表示,语法为“replace(字段名,char(13),'新字符串') ”。

    mysql怎么将varchar转换为int类型mysql怎么将varchar转换为int类型May 12, 2022 pm 04:51 PM

    转换方法:1、利用cast函数,语法“select * from 表名 order by cast(字段名 as SIGNED)”;2、利用“select * from 表名 order by CONVERT(字段名,SIGNED)”语句。

    MySQL复制技术之异步复制和半同步复制MySQL复制技术之异步复制和半同步复制Apr 25, 2022 pm 07:21 PM

    本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于MySQL复制技术的相关问题,包括了异步复制、半同步复制等等内容,下面一起来看一下,希望对大家有帮助。

    带你把MySQL索引吃透了带你把MySQL索引吃透了Apr 22, 2022 am 11:48 AM

    本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了mysql高级篇的一些问题,包括了索引是什么、索引底层实现等等问题,下面一起来看一下,希望对大家有帮助。

    mysql怎么判断是否是数字类型mysql怎么判断是否是数字类型May 16, 2022 am 10:09 AM

    在mysql中,可以利用REGEXP运算符判断数据是否是数字类型,语法为“String REGEXP '[^0-9.]'”;该运算符是正则表达式的缩写,若数据字符中含有数字时,返回的结果是true,反之返回的结果是false。

    See all articles

    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

    AI Hentai Generator

    AI Hentai Generator

    Generate AI Hentai for free.

    Hot Article

    Repo: How To Revive Teammates
    1 months agoBy尊渡假赌尊渡假赌尊渡假赌
    R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
    2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
    Hello Kitty Island Adventure: How To Get Giant Seeds
    1 months agoBy尊渡假赌尊渡假赌尊渡假赌

    Hot Tools

    SublimeText3 Linux new version

    SublimeText3 Linux new version

    SublimeText3 Linux latest version

    SublimeText3 Chinese version

    SublimeText3 Chinese version

    Chinese version, very easy to use

    EditPlus Chinese cracked version

    EditPlus Chinese cracked version

    Small size, syntax highlighting, does not support code prompt function

    WebStorm Mac version

    WebStorm Mac version

    Useful JavaScript development tools

    Notepad++7.3.1

    Notepad++7.3.1

    Easy-to-use and free code editor