Lock OverviewA 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 classificationGranularity of database operationsTable locks: During the operation, the entire table row lock is locked: When operating, the current operation line will be locked. Types of data operationsRead 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 lockCompared 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
Lock IntroductionIt 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.
MyISAM table locksHow to add a table lockBefore 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. UnlockAdd 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 contention1. 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 usageCheck 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 LocksThe biggest differences between InnoDB and MyISAM are: first, it supports transactions; second, it uses row-level locks Row LockShared 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 escalationIndex failure, row lock upgrade to table lock where there is no index behind it is also upgraded to table lock Gap LockInnoDB will also lock data that does not exist in the gap, which is called gap lock Lock contentionshow 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 SummarizeThe 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 suggestionsTry 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:
|
<<: Detailed process of changing apt source to Alibaba Cloud source in Ubuntu 18.04
>>: Use CSS to easily implement some frequently appearing weird buttons
1. Element time selection submission format conve...
Table of contents 1. MySQL trigger creation: 1. M...
Some command differences between versions: show i...
This article records the method of sharing files ...
1. Download 1. MySQL official website download ad...
After installing VMware and creating a new virtua...
On Unix-like systems, you may know when a command...
Normally, when a deadlock occurs, the connection ...
Uses of new The function of new is to create an i...
What Beautiful HTML Code Looks Like How to write ...
Official website explanation: When a component is...
Put your own web project in the webapps directory...
Table of contents 1. Preparation Pull the redis i...
Preface innodb_data_file_path is used to specify ...
When writing HTML code, the first line should be ...