This article summarizes the knowledge points of MySql indexes, locks, and transactions. Share with you for your reference, the details are as follows: 1. IndexAn index is similar to the table of contents of a book, and you can immediately find the corresponding record based on a page number in the table of contents. Advantages of indexing:
Disadvantages of indexing:
In terms of implementation, indexes are divided into two types: clustered indexes and auxiliary indexes (also called secondary indexes or non-clustered indexes) Functionally, there are 6 types: normal index, unique index, primary key index, composite index, foreign key index, and full-text index. Let's talk about the 6 types of indexes in detail:
In addition, InnoDB clusters data by primary key. If no primary key and no clustered index are defined, MySql will select a unique non-empty index instead. If there is no such index, a 6-byte primary key will be implicitly defined as the clustered index, which cannot be viewed or accessed by users. To put it simply:
MySql stores data in pages, and the default page size is 16kb. When you query, it will not only load a certain piece of data, but load all the pages where the data is located into pageCache. This is actually similar to the OS's nearby access principle. MySql's index uses a B+ tree structure. Before talking about B+ tree, let's talk about B tree first. B tree is a multi-way balanced search tree. Compared with ordinary binary tree, it will not be extremely unbalanced, and it is also multi-way. The characteristic of B-tree is that it also stores data in non-page child nodes. As you can see from the picture: This feature means that non-page child nodes cannot store a large number of indexes. The B+ Tree optimizes the B tree for this purpose. As shown in the following figure: We can see that B+ Tree stores all data in leaf nodes, and non-child nodes only store indexes and pointers. We assume that a non-page child node is 16kb, each index, i.e. primary key is bigint, i.e. 8b, and the pointer is 8b. Then each page can store about 1000 indexes (16kb/8b + 8b). How many indexes can a 3-layer B+ tree store? As shown below: Ability to store approximately 1 billion indexes. Usually the height of a B+ tree is 2-4 layers. Since the root node is resident in memory when MySQL is running, each search only requires about 2-3 IOs. It can be said that the design of the B+ tree is based on the characteristics of mechanical disks. Knowing the design of the index, we can know some other information:
So, if sharding is used in the project, we usually need a primary key for sharding, so what should we do? In terms of implementation, we can retain the auto-increment primary key and use the logical primary key as the unique index. 2. Locking mechanismWhen it comes to MySQL locks, various concepts will emerge. In fact, locks have several dimensions. Let us explain. 1. Type Dimension
Type breakdown:
2. Lock granularity (granularity dimension)
3. Lock Algorithm (Algorithm Dimension)
4. Is the default read operation locked?
You can choose to lock manually: select xxxx for update (exclusive lock); select xxxx lock in share mode (shared lock), which is called "consistent locking read". After using the lock, phantom reads can be avoided at the RR level. Of course, the default MVCC read can also avoid phantom reads. Since RR can prevent phantom reads, what is the use of SERIALIZABLE? Prevent lost updates. For example, the following figure: At this time, we must use the SERIALIZABLE level for serial reading. Finally, the implementation principle of row lock is to lock the clustered index. If you do not hit the index correctly when querying, the MySql optimizer will abandon the row lock and use the table lock. 3. TransactionsTransactions are an eternal topic in databases, ACID: atomicity, consistency, isolation, and persistence. Of the four characteristics, the most important is consistency. Consistency is guaranteed by atomicity, isolation, and persistence.
Then let’s talk about isolation. Isolation Level:
Each level solves different problems, usually 3 problems: dirty reads, non-repeatable reads, and phantom reads. A classic picture: Here is a point to note about phantom reads. In the database specification, the RR level will cause phantom reads. However, due to MySQL optimization, the RR level of MySQL will not cause phantom reads: when using the default select, MySQL uses the MVCC mechanism to ensure that there will be no phantom reads; you can also use locks. When using locks, such as for update (X lock), lock in share mode (S lock), MySQL will use Next-Key Lock to ensure that there will be no phantom reads. The former is called snapshot read, and the latter is called current read. Principle analysis:
So what is the difference between RR and Serializble? A: Lost updates. The lock part of this article has been mentioned. MVCC Introduction: The full name is multi-version concurrency control. Each clustered index of innoDB has 4 hidden fields, namely the primary key (RowID), the transaction ID of the most recent change (MVCC core), the pointer of the Undo Log (isolation core), and the index deletion mark (when deleting, it will not be deleted immediately, but marked and then deleted asynchronously); Essentially, MVCC is implemented using the Undo Log linked list. MVCC implementation method: The transaction modifies the original data in an exclusive lock, stores the data before the modification in the Undo Log, and associates the data with the rollback pointer. If the modification is successful, nothing is done. If the modification fails, the data in the Undo Log is restored. One more thing, we usually think that MVCC is similar to optimistic locking, that is, using version numbers, but in fact, InnoDB is not implemented in this way. Of course, this does not affect our use of MySql. Readers who are interested in more MySQL-related content can check out the following topics on this site: "Summary of MySQL Index Operation Skills", "Summary of MySQL Common Functions", "Summary of MySQL Log Operation Skills", "Summary of MySQL Transaction Operation Skills", "Summary of MySQL Stored Procedure Skills" and "Summary of MySQL Database Lock-Related Skills". I hope this article will be helpful to everyone's MySQL database design. You may also be interested in:
|
<<: Writing a web calculator using javascript
Here are 30 best practices for HTML beginners. 1....
border-radius: CSS3 rounded corners Syntax: borde...
First download the compressed version of mysql, t...
Table of contents introduce 1. Pica 2. Lena.js 3....
1. Nginx service foundation Nginx (engine x) is d...
1. Use version vite:2.0 ant-design-vue: 2.0.0-rc....
MySQL implements Oracle-like sequences Oracle gen...
Refer to the tutorial on setting up FTP server in...
Table of contents Concurrent scenarios Write-Writ...
Table of contents 1. Template tag in HTML5 2. Pro...
There are two most commonly used methods to insert...
The syntax for an outer join is as follows: SELEC...
Preface: In the daily use of the database, it is ...
1. Open port 2375 Edit docker.service vim /lib/sy...
Recently, we have been capturing SQL online for o...