How to obtain SQL statements with performance issues 1. Obtain SQL statements with performance issues through user feedback Use slow query logs to obtain SQL statements with performance issues First, let's introduce the parameters related to slow queries. 1. slow_query_log starts the custom slow query log setting. You can set it through the MySQL command line: set global slow_query_log=on 2. slow_query_log_file specifies the storage path and file of the slow query log. It is recommended to store the log storage and data storage separately. 3. long_query_time specifies the threshold for recording the SQL execution time of the slow query log ① Record all SQL that meet the conditions 4. log_queries_not_using_indexes Whether to log SQL that does not use indexes 5. log_output sets the save format of slow log query (if you need to save it as a file, please change it to FILE) Information recorded in the slow query usage log
Use slow query to obtain SQL with performance issues Commonly used slow query log analysis tool (mysqldumpslow) Slow query log example Slow query related configuration settings Command line execution parameters to view the analysis results
Commonly used slow query log analysis tool (pt-query-digest) Before using the tool, you need to install it first. If you already have it, you can skip the following installation steps. 3. Install the toolkit Execute commands to analyze slow query logs ]# pt-query-digest --user=root --password=redhat --host=127.0.0.1 slow-mysql > slow.rep The entire process of MySQL server processing query requests
The impact of query cache on SQL performance
Optimizing parameters for query cache query_cache_type sets whether query cache is available Note: DEMAND means that only SQL-CACHE and SQL_NO_CACHE are used in the query statement to control whether caching is required query_cache_size sets the memory size of the query cache query_cache_limit sets the maximum value of the query cache available storage query_cache_wlock_invalidate sets whether to return cached data after the table is locked (this option is disabled by default and is recommended) query_cache_min_res_unit sets the minimum value of the memory block allocated by the query cache Reasons that cause MySQL to generate incorrect execution plans
SQL types that the MySQL optimizer can optimize 1. Redefine the association order of the table. The optimizer will determine the association order of the table based on statistical information. 2. Convert external links to internal links 3. Use equivalent transformation rules 4. Optimize count(), min() and max() 5. Convert an expression to a constant expression 6. Use equivalent transformation rules 7. Subquery optimization 8. Optimize the in() condition How to determine the time spent in various stages of query processing Using profiles set profiling = 1; show profile for query N; The time taken for each stage of the query Use profile to view the time consumed by the statement Specific SQL query optimization 1. Use the principle of master-slave switching to modify the table structure of a large table. For example, modify it on the slave server now, and after the modification is completed, perform master-slave switching, and then modify the large table on the original master. There is a certain risk. Use the pt-online-schema-change command to modify the large table. The specific operation is shown in the following figure Explanation of the parameters in the above figure
Original work, please indicate the source for reprinting You may also be interested in:
|
<<: Analysis of the implementation method of Nginx and Apache coexistence under Linux server
>>: A brief discussion on event-driven development in JS and Nodejs
The ".zip" format is used to compress f...
Table of contents Overview 1. Hook calling order ...
This technique comes from this article - How to a...
v-model is a Vue directive that provides two-way...
Introduction: Lambda Probe (formerly known as Tom...
Table of contents Introduction The following is a...
Table of contents 1. JS Object DOM –1, Function –...
Table of contents Brief description: 1. Four char...
CSS sets Overflow to hide the scroll bar while al...
What is ssh Administrators can log in remotely to...
What you learn from books is always shallow, and ...
Previously, my boss asked me to make a program th...
The JD carousel was implemented using pure HTML a...
Table of contents 1. Eclipse configures Tomcat 2....
This article shares the specific code for JavaScr...