search
HomeDatabaseMysql TutorialWhat is the entire process of executing a statement in Mysql?

1. The logical architecture of Mysql

The logical architecture of Mysql is as follows. The whole is divided into two parts, the Server layer and the storage engine layer.

Operations unrelated to the storage engine are completed at the Server layer, and the storage engine layer is responsible for data access.

What is the entire process of executing a statement in Mysql?

The following will introduce the function of each step according to the process in the above figure. Here we take querying a record as an example.

2. Connector

This step is mainly to manage connections and permission verification.

is responsible for managing the client's connection, such as mysql -u root -p, which is done between the client and the connector. The connection is divided into long connection and short connection. It is recommended to use long connection , because establishing a connection is a relatively complicated process. However, long connections also have room for optimization. That is, if there are too many long connections, more memory will be occupied as large query operations are executed.

After the connection is established, the connector will determine the user's permissions, and then the user's operations will be determined based on permissions to determine whether they are allowed.

3. Analyzer

This step is mainly lexical analysis and syntax analysis.

Lexical analysis is mainly used to determine what the user wants to do. For example, select means to query.

Grammar analysis is mainly to determine whether the SQL entered by the user conforms to the syntax of Mysql.

4. Optimizer

After the analyzer, Mysql already knows what the user wants to do, but for the same SQL statement, there may be many ways to implement it in Mysql Implementation and efficiency are also different.

In the optimizer step, mysql needs to determine how to execute for optimal efficiency.

5. Executor

This step is mainly to operate the engine and return results. Operate the storage engine layer to traverse the data table, find data that meets the criteria and return it to the client.

6.Mysql process of executing an update statement

The same as a SQL query statement, Mysql also needs to go through the connector, analyzer, optimizer, and executor, as well as A storage engine is used to access data.

What is the entire process of executing a statement in Mysql?

The difference is that the update statement needs to involve two important log modules, redo log and binlog

7.redo log

A restaurant's business is booming, but as a restaurant, it is inevitable to have credit accounts and debt repayments every day.

If there are a large number of credit accounts and debt repayments, the boss will not be able to use a pink board to record one month's credit records.

So the boss thought that he could write all the credit records in the ledger, and what was written on the pink board were for a short period of time. After get off work, he would use the pink board to reconcile the ledger.

In this example, the pink board is redo log, and the ledger is the record in mysql. Let’s use the repayment analogy to compare the update process of mysql. If someone updates it every time, we will This record was found in mysql, and the efficiency is very low, so mysql's idea is consistent with this boss. The update operation is first placed in redo log, and then slowly digested after a while.

This idea is called WAL technology, that is, Write Ahead Logging technology, which writes the log first and then writes to the disk.

The boss must stop what he is doing if the pink board is full and the boss has not left work yet. The redo log in mysql can record a total of 4GB of operations

What is the entire process of executing a statement in Mysql?

When write pos catches up with check point, the boss of mysql will have to deal with the redo log .

In addition, with redo log persistence, the database will not lose logs even if it restarts abnormally. This is the crash safe mechanism, but it still needs Note that redo log is unique to the innodb storage engine.

8.bin log

Binlog is the server layer log and can be applied to all storage engines.

Now that there is a binlog, why do we need to create a redo log exclusive to the innodb storage engine?

Because mysql did not have an innodb engine at the beginning, but the myisam engine, which used binlog, but the binlog was limited to archiving and did not have a crash safe mechanism, so I added a redo log.

  • redo log is unique to the innodb storage engine, while binlog is unique to the server layer

  • redo log stores physical logs, and binlog is Logical log

  • The redo log, as mentioned above, supports 4GB in size. If there is more, it must be processed and overwritten. The binlog log should be filled with one log

  • ## After the
# file, a new log file will be created.

The following takes the update of a row of data with ID 2 as an example:

The light box in the figure indicates that it is executed inside InnoDB, and the dark box indicates that it is executed executed in the server.

What is the entire process of executing a statement in Mysql?

  • The executor first looks for the engine to get the line ID=2. ID is the primary key, and the engine directly uses tree search to find this row. If the data page where the ID=2 row is located is already in the memory, it will be returned directly to the executor; otherwise, it needs to be read into the memory from the disk and then returned.

  • The executor gets the row data given by the engine, adds 1 to this value, for example, it used to be N, but now it is N 1, gets a new row of data, and then calls the engine interface to write Enter this row of new data.

  • The engine updates this new row of data into the memory and records the update operation into the redo log. At this time, the redo log is in the prepare state. Then inform the executor that the execution is completed and the transaction can be submitted at any time. During the execution of the operation, the executor generates a binlog and writes it to disk.

  • The executor calls the engine's commit transaction interface, and the engine changes the redo log just written to the commit state, and the update is completed.

The above is the detailed content of What is the entire process of executing a statement in Mysql?. 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的msi与zip版本有什么区别mysql的msi与zip版本有什么区别May 16, 2022 pm 04:33 PM

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

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

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

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怎么判断是否是数字类型May 16, 2022 am 10:09 AM

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

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

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

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 Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!