Home  >  Article  >  Database  >  MySQL paging optimization test case

MySQL paging optimization test case

PHP中文网
PHP中文网Original
2017-06-20 15:27:551201browse

Recently I accidentally saw a test case for MySQL paging optimization. Without very specific explanation of the test scenario, a classic solution was given,

because in reality there are many The situation is not fixed. To be able to summarize general practices or rules, we need to consider a lot of scenarios.
At the same time, when faced with ways to achieve optimization, we must investigate the reasons. The same approach, If the scene is changed and the optimization effect cannot be achieved, the reasons must be investigated.
I personally expressed doubts about the use of this scenario, and then tested it myself, and found some problems, and also confirmed some expected ideas.
This article will do a simple analysis on MySQL paging optimization, starting from the simplest situation.

Another: The test environment of this article is the cloud server with the lowest configuration. Relatively speaking, the server hardware environment is limited, but different statements (writing methods) should be "equal"

MySQL's classic paging "optimization" practice

In MySQL paging optimization, there is a classic problem. The "back" data in the query is slower (depending on the table) The index type, for the B-tree structure index, the same is true in SQL Server)
select * from t order by id limit m,n.
That is, as M increases, querying the same amount of data will become slower and slower.
Faced with this problem, a classic approach was born, similar to (or a variant of) ) The following way of writing
is to first find out the id in the paging range separately, then associate it with the base table, and finally query the required data
select * from t
inner join ( select id from t order by id limit m,n)t1 on t1.id = t.id

Is this approach always effective, or under what circumstances can the latter be achieved? To achieve the purpose of optimization? Is there any situation where it becomes ineffective or even slows down after rewriting?

At the same time, most queries have filtering conditions.
If there are filtering conditions, the
sql statement becomes It becomes select * from t where *** order by id limit m,n
If you follow the same pattern, rewrite it as something like
select * from t
inner join (select id from t where *** order by id limit m,n )t1 on t1.id = t.id
In this case, can the rewritten SQL statement still achieve the purpose of optimization?

Test environment setup

Test data is relatively simple and is written in a loop through a stored procedure Test data, InnoDB engine table of test table.

 

What should be noted here is that the log writing mode must be modified to innodb_flush_log_at_trx_commit = 2, otherwise by default, 500w data, estimated I can’t finish it in one day. This is related to the log writing mode, so I won’t go into details.

The reason for paging query optimization

First, let’s take a look at this classic problem. When paging, the "backward" the query is, the slower the response is.

Test 1: Query the first 1-20 rows of data, 0.01 seconds

 

The same query is for 20 rows of data, and the relatively "later" data is queried, such as the 4900001-4900020 rows of data here. case, it took 1.97 seconds.

 

It can be seen from this that when the query conditions remain unchanged, the further back the query is, the lower the query efficiency is. It can be simply understood as: similarly searching for 20 rows of data, the more The later data is, the higher the query cost is.

As for why the latter one is less efficient, we will analyze it later.

  The test environment is centos 7, mysql 5.7, and the data of the test table is 500W

 

Reproduce the classic paging "optimization". When there are no filter conditions and the sorting column is a clustered index, there will be no improvement.

Here To compare the performance of the following two writing methods when the clustered index column is used as the sorting condition

select * from t order by id limit m,n.
select * from t
inner join (select id from t order by id limit m,n)t1 on t1.id = t.id

The first way to write :

 select * from test_table1 order by id asc limit 4900000,20; The test results are shown in the screenshot, The execution time is 8.31 seconds

##Second Rewritten writing method:

select t1.* from test_table1 t1

inner join (select id from test_table1 order by id limit 4900000,20)t2 on t1.id = t2.id;
Execute The time is 8.43 seconds

It is very clear here that after rewriting through the classic rewriting method, the performance will not improve at all, and even slow down a little bit,

The actual test shows that there is no obvious linear difference in performance between the two. The original poster of the two has done multiple tests.

Personally, when I see similar conclusions, I have to test them. This thing cannot be relied on, or luck. Why can efficiency be improved, and why can't it be improved?

So why did the rewritten writing method not improve performance as legendary?

What causes this current rewrite to not achieve the purpose of improving performance?
What is the principle behind how the latter can improve performance?

First, take a look at the table structure of the test table. There is an index on the sorting column. This is no problem. The key is that the index on the sorting column is the primary key (clustered index).

 

Why is it that when the sorting column is a clustered index, the relatively "optimized" rewritten SQL cannot achieve the purpose of "optimization"?

In sorting When the column is a clustered index column, both of them sequentially scan the table to query qualified data.

Although the latter drives a subquery first, and then uses the results of the subquery to drive the main table,
But the subquery does not change the method of "sequentially scanning the table to query qualified data". Under the current situation, even the rewritten method seems superfluous.

Refer to the following two execution plans, the first screenshot One line of the execution plan is basically the same as the third line of the rewritten sql execution plan (the line with id =2).

 

 

Paging query when there is no filter condition and the sorting column is a clustered index, the so-called Paging query optimization is just superfluous

Currently, both methods of querying the above data are very slow. So what should you do if you want to query the above data?

We still need to see why it is slow. We must first understand the balanced structure of B numbers. From my own rough understanding, as shown in the figure below,
When the queried data is "behind", it actually deviates from the One direction of the B-tree index, the target data shown in the following two screenshots
In fact, there is no so-called "front" and "back" for the data on the balanced tree, "front" and "back" are both Relative to the other party, or from the direction of scanning
Looking at the "back" data from one direction, it is "forward" from one direction, and the front and back are not absolute.

The following two screenshots are rough representations of the B-tree index structure. If the position of the target data is fixed, the so-called "backward" is relative to that from left to right. What I said;

#If you look from right to left, the so-called data at the back is actually "forward".

# As long as the data is at the front, it is still possible to find this part of the data efficiently. Mysql should also have methods similar to forwarded and reverse scans in sqlserver.

If you use reverse scanning for the later data, you should be able to quickly find this part of the data, and then sort the found data again (asc). The result should be the same,
First let’s look at the effect: the result is exactly the same as the above query.
It only takes 0.07 seconds. The previous two writing methods both took more than 8 seconds, and the efficiency is hundreds of times different.

 

As for why this is, I think based on the above explanation, I should be able to understand it. Here is the sql.
If you often query the so-called later data, such as data with larger IDs, or newer data in the time dimension, you can use flashback scanning index to achieve efficient paging query

(Please calculate the page where the data is located here. For the same data, the starting "page number" is different in forward and reverse order)

select* from(select * from test_table1 order by id desc limit 99980,20) t order by id;

When there are no filter conditions and the sorting column is a non-clustered index, there will be an improvement

Here are the following changes to the test table test_table1
1. Add an id_2 Column,
 2. Create a unique index on this field,
 3. Fill this field with the corresponding primary key Id

 

 Above The test is sorted according to the primary key index (clustered index). Now let's sort according to the non-clustered index, that is, the newly added column id_2, and test the two paging methods mentioned at the beginning.

First let’s look at the first way of writing

select * from test_table1 order by id_2 asc limit 4900000,20; the execution time is a little more than 1 minute, let’s consider it as 60 seconds

 

The second way of writing

select t1.* from test_table1 t1
inner join (select id from test_table1 order by id_2 limit 4900000, 20)t2 on t1.id = t2.id;Execution time 1.67 seconds

 

 From this situation, that is to say, the sorting column is When using non-clustered index columns, the latter writing method can indeed greatly improve efficiency. That's almost a 40-fold improvement.
So what’s the reason?
First let’s look at the execution plan of the first way of writing. It can be simply understood that the entire table is scanned during the execution of this sql, and then sorted according to id_2, and finally the top 20 pieces of data are taken.
First of all, full table scanning is a very time-consuming process, and sorting is also a very high cost, so the performance is very low.

 

Let’s look at the execution plan of the latter. It first scans the sub-query in the order of the index on id_2, and then uses the qualified primary key Id to query the table. Data
In this case, it is avoided to query a large amount of data and then reorder it (Using filesort)
If you understand the sqlserver execution plan, compared with the former, the latter should avoid frequent table returns ( The process called key lookup or bookmark lookup in sqlserver can be considered as a batch and one-time process of querying the 20 qualifying data in the outer table driven by a subquery.

Actually, only under the current circumstances, that is, when the sorting column is a non-clustered index column, can the rewritten sql improve the efficiency of paging queries.

Even so, this method has been "optimized". The paging statement is still quite different from the paging efficiency written as follows

As you can see above, the same data is returned. The following query takes 0.07 seconds, which is still 2 orders of magnitude higher than the 1.67 seconds here

select* from(select * from test_table1 order by id desc limit 99980,20) t order by id;

Another question I want to mention is that if paging queries are frequent and in a certain order, then why not create a clustered index on this column.
For example, if the statement automatically increments the ID, or if the time + other fields ensure uniqueness, mysql will automatically create a clustered index on the primary key.
Then with the clustered index, "front" and "back" are just relative logical concepts. If you want to get "back" or newer data most of the time, you can use the above writing method,

Optimization of paging queries when there are filter conditions

After thinking about this part, the situation is too complicated and it is difficult to summarize A very representative case came out, so I won’t do too many tests.
 select * from t where *** order by id limit m,n
 1. For example, the brush selection condition itself is very efficient. Once it is filtered out, only a small part of the data is left, so it does not matter whether the sql is changed or not. Not big, because the filtering conditions themselves can achieve very efficient filtering
 2. For example, the brush selection conditions themselves have little effect (the amount of data is still huge after filtering). This situation actually returns to the situation where there are no filtering conditions. , and it also depends on how to sort, forward or reverse order, etc.
3. For example, the filtering conditions themselves have little effect (the amount of data is still huge after filtering). A very practical issue to consider is data distribution,
The distribution of data will also affect the execution efficiency of sql (experience in sqlserver, mysql should not be much different)
 4. When the query itself is relatively complex, it is difficult to say that efficient use can be achieved in a certain way

The more complex the situation, the more difficult it is to summarize a general rule or method. Everything must be viewed based on the specific situation, and it is difficult to draw a conclusion.
Here we will not analyze the situation of adding filtering conditions to the query one by one, but what is certain is that without the actual scenario, there is definitely no solid solution.

In addition, when querying the data of the current page, using the maximum value of the query on the previous page as the filter condition can also quickly find the data of the current page. This is of course no problem, but This is another approach and is not discussed in this article.

Summary

Paging query, the farther back, the slower. In fact, for B-tree index, the front and back are A logically relative concept, the difference in performance is based on the B-tree index structure and scanning method.
If filtering conditions are added, the situation will become more complicated. The principle of this problem is the same in SQL Server. Yes, it was originally tested in SQL Server, so I won’t repeat it here.
In the current situation, the sorting column, query conditions, and data distribution are not necessarily certain, so it is difficult to use a specific method to achieve "optimization". If not, it will have superfluous side effects.
Therefore, when doing paging optimization, you must do analysis based on specific scenarios. There is not necessarily only one method. Any conclusion that is divorced from the actual scenario is nonsense.
Only by understanding the ins and outs of this problem can we be able to deal with it with ease.
Therefore, my personal conclusion on data "optimization" must be based on specific analysis of specific problems. It is very taboo to summarize a set of rules (Rules 1, 2, 3, 4, 5) for others to "apply". Since I am also very Food, let alone sum up some dogma.

 

The above is the detailed content of MySQL paging optimization test case. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn