Written in frontWhen we operate the database in our daily life, such as order table, access record table, and product table. We often deal with statistical problems such as calculating the sum of data columns and the number of data rows. As the business develops, these tables will become larger and larger. If not handled properly, the speed of querying statistics will become slower and slower until the business can no longer tolerate it. Therefore, we need to first understand and think about these scenario knowledge points, and reserve some optimization space to support business development at the beginning of the design. SQL Aggregate FunctionIn MySQL and other data, aggregate functions are supported to facilitate data calculation. The following methods are common
Demonstrate several simple SQL statements: Query the total number of orders with u_id 100 select count(id) from orders where u_id = 100; Query the total consumption of orders with u_id 100 select sum(order_amount) from orders where u_id = 100; Find the best-selling products select max(sell_num) from goods Statistics on the number and total amount of orders in July select count(id) as count, sum(order_amount) as total_amount from orders where order_date between 20190701 and 20190731 and is_pay = 1 If at this time, the total number of order tables is 100 million. And this SQL statement runs very slowly, how should we troubleshoot and optimize it? Some students may say: There are many rows, so add an index on the date field, so that the screening will be very fast. The total number is 100 million. Assuming there are 10 million orders in July, the screening speed will naturally increase a lot after adding the index. But is our problem really solved at this point? In this kind of aggregate function, the result needs to be calculated by traversing each piece of data. For example, if we want to count the total number of orders, we need to read the order amount of each row and then add them up. That is to say, in this statistical SQL, you need to first filter 10 million data from 100 million data, and then traverse these data for calculation. It will be very slow at this time.
Optimizing the aggregation statistics solutionBudget in Advance Create a statistical data table, separated by date, such as: how many orders were sold on 20190801, the amount and other data.
When we need to count the data for August, we only need to traverse and calculate the thirty or so rows of data for this month. Timed landing We can use easyswoole, scheduled tasks, etc. To calculate the total at a fixed time (for example, every 20 minutes), and then update it to the statistical data table. Advantages: There is less processing to be done, and there is no need to change the API such as refund operation. It only needs to rely on the data of the original order table, and regularly count and refresh the statistical data.
SummarizeIndexes cannot solve the problem of slow SQL statements for statistical aggregation of data Aggregate functions should be used with caution or not at all, because we cannot estimate how many rows of data we need to scan to calculate the future data volume. The optimization plan is inseparable from the statistical table, and the statistical data calculated in a certain period need to be stored. This is the end of this article about the slow query of MySQL aggregate statistical data. For more relevant content about the slow query of MySQL aggregate statistical data, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Detailed explanation of Promises in JavaScript
>>: How to dynamically modify container port mapping in Docker
Intersection Selector The intersection selector i...
DCL (Data Control Language): Data control languag...
Unable to load dynamic library under Linux When t...
1. Create a database 2. Create a table 1. Create ...
1. Create and run a container docker run -it --rm...
Table of contents Before MySQL 5.6 After MySQL 5....
Table of contents 1. Knowledge description of the...
Table of contents Use two-way binding data in v-m...
Table of contents 1. Always use key in v-for loop...
background There is a requirement in the project ...
Method 1 Copy code The code is as follows: documen...
Introduction Animation allows you to easily imple...
How to obtain SQL statements with performance iss...
In the process of making web pages, it is inevita...
1. MySQL rpm package installation # Download the ...