Mysql高級2-SQL性能分析

来源:https://www.cnblogs.com/Se7eN-HOU/archive/2023/07/27/17580630.html
-Advertisement-
Play Games

一、SQL執行頻率 MySQL客戶端 連接成功後,通過show [session | global] status 命令可以提供伺服器狀態信息,通過如下指令,可以查看當前資料庫的insert,update,dalete,select的訪問頻次 show [global | session] stat ...


一、SQL執行頻率

  MySQL客戶端 連接成功後,通過show [session | global] status 命令可以提供伺服器狀態信息,通過如下指令,可以查看當前資料庫的insert,update,dalete,select的訪問頻次

show [global | session] status like "Com_______";   # 七個_ 表示起個通配符
mysql> show global status like 'Com_______';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| Com_binlog    | 0     |
| Com_commit    | 0     |
| Com_delete    | 0     |
| Com_import    | 0     |
| Com_insert    | 0     |
| Com_repair    | 0     |
| Com_revoke    | 0     |
| Com_select    | 4     |
| Com_signal    | 0     |
| Com_update    | 0     |
| Com_xa_end    | 0     |
+---------------+-------+
11 rows in set (0.00 sec)

  說明1:上面的資料庫被執行查詢4次

 

二、慢查詢日誌

  慢查詢日誌記錄了所有執行時間超過指定參數(long_query_time 單位:秒,預設10秒)的所有SQL語句的日誌,Mysql的慢查詢日誌預設沒有開啟,需要在Mysql的配置文件中(通常在/etc/my.cnf)中配置如下信息:

  可以使用一下語句查詢慢查詢是否開啟

mysql> show variables like 'slow_query_log';
+----------------+-------+
| Variable_name  | Value |
+----------------+-------+
| slow_query_log | OFF   |
+----------------+-------+
1 row in set (0.01 sec)

  說明:慢查詢預設是關閉的

# 開啟慢查詢
slow_query_log=1

# 設置慢查詢的時間
long_query_time=2

  再次查詢

mysql> show variables like 'slow_query_log';
+----------------+-------+
| Variable_name  | Value |
+----------------+-------+
| slow_query_log | ON    |
+----------------+-------+
1 row in set (0.00 sec)

  慢日誌文件通常指mysql的安裝目錄裡面的data文件夾中。

 

三、profile

  3.1 show profiles

    可以查看每一條SQL的耗時基本情況

mysql> show profiles;
+----------+-------------+-----------------------------------------------------------------------+
| Query_ID | Duration    | Query                                                                 |
+----------+-------------+-----------------------------------------------------------------------+
|       11 |  0.00020000 | SELECT DATABASE()                                                     |
|       12 |  0.00029000 | SELECT DATABASE()                                                     |
|       13 |  0.00040900 | SELECT DATABASE()                                                     |
|       14 |  0.00145600 | show databases                                                        |
|       15 |  0.00279800 | show tables                                                           |
|       16 | 12.28066100 | select * from account_transaction                                     |
|       17 |  0.00166700 | select * from account_transaction where id = 1                        |
|       18 |  6.01525200 | select * from account_transaction where trade_no="164126925202017539" |
|       19 |  6.64749300 | select * from account_transaction where trade_no="164126925202017539" |
|       20 |  5.39658800 | select * from account_transaction where trade_no="164126923751014167" |
|       21 |  0.00067300 | select * from account_transaction where id=100                        |
|       22 |  0.00046900 | select * from account_transaction where id=1000                       |
|       23 |  0.00045200 | select * from account_transaction where id=10000                      |
|       24 |  0.00052900 | select * from account_transaction where id=100000                     |
|       25 |  0.00038300 | select * from account_transaction where id=20000                      |
+----------+-------------+-----------------------------------------------------------------------+
15 rows in set, 1 warning (0.00 sec)

    說明1:第16條查詢全部數據花費了12.28秒,第17條根據id查詢只花費了0.001秒,第18條通過普通欄位查詢花費了6.00秒

    說明2:SQL中能不做全量查詢就不要做全量查詢。

    說明3:SQL中能通過id查詢就不要通過其他欄位查詢,因為畢竟其他欄位的查詢還是會根據二級索引查到id,再根據id查詢到具體的數據的。

  3.2 have_profiling

    參數have_profiling能夠看到當前mysql是否支持profile操作:

mysql> select @@have_profiling;
+------------------+
| @@have_profiling |
+------------------+
| YES              |
+------------------+
1 row in set, 1 warning (0.00 sec)

  說明1:這裡的YES只是說明該版本的mysql是支持profile操作的,但是不代表profile操作是開始的,僅代表有這個功能而已!

  預設profiling是關閉的,可以通過set語句在session/global級別開啟profiling;

mysql> select @@profiling;
+-------------+
| @@profiling |
+-------------+
|           0 |
+-------------+
1 row in set, 1 warning (0.01 sec)

  3.3 開啟profiling

mysql> set profiling=1;
Query OK, 0 rows affected, 1 warning (0.00 sec)

mysql> select @@profiling;
+-------------+
| @@profiling |
+-------------+
|           1 |
+-------------+
1 row in set, 1 warning (0.00 sec)

  3.4 查看指定SQL耗時

    通過帶query_id的SQL語句各個階段的耗時情況

show profile for query query_id;
mysql> show profile for query 20;
+--------------------------------+----------+
| Status                         | Duration |
+--------------------------------+----------+
| starting                       | 0.000083 |
| Executing hook on transaction  | 0.000007 |
| starting                       | 0.000007 |
| checking permissions           | 0.000006 |
| Opening tables                 | 0.000107 |
| init                           | 0.000012 |
| System lock                    | 0.000010 |
| optimizing                     | 0.000012 |
| statistics                     | 0.000025 |
| preparing                      | 0.000041 |
| executing                      | 5.393642 |
| end                            | 0.000016 |
| query end                      | 0.000005 |
| waiting for handler commit     | 0.000009 |
| closing tables                 | 0.000009 |
| freeing items                  | 0.002130 |
| logging slow query             | 0.000426 |
| cleaning up                    | 0.000041 |
+--------------------------------+----------+
18 rows in set, 1 warning (0.01 sec)

  3.5 查看指定SQL的CPU使用情況

show profile cpu for query query_id
mysql> show profile cpu for query 20;
+--------------------------------+----------+----------+------------+
| Status                         | Duration | CPU_user | CPU_system |
+--------------------------------+----------+----------+------------+
| starting                       | 0.000083 | 0.000072 |   0.000009 |
| Executing hook on transaction  | 0.000007 | 0.000003 |   0.000004 |
| starting                       | 0.000007 | 0.000006 |   0.000002 |
| checking permissions           | 0.000006 | 0.000004 |   0.000002 |
| Opening tables                 | 0.000107 | 0.000058 |   0.000017 |
| init                           | 0.000012 | 0.000005 |   0.000006 |
| System lock                    | 0.000010 | 0.000008 |   0.000002 |
| optimizing                     | 0.000012 | 0.000010 |   0.000002 |
| statistics                     | 0.000025 | 0.000023 |   0.000001 |
| preparing                      | 0.000041 | 0.000027 |   0.000014 |
| executing                      | 5.393642 | 2.294837 |   0.151005 |
| end                            | 0.000016 | 0.000007 |   0.000009 |
| query end                      | 0.000005 | 0.000003 |   0.000001 |
| waiting for handler commit     | 0.000009 | 0.000009 |   0.000001 |
| closing tables                 | 0.000009 | 0.000008 |   0.000002 |
| freeing items                  | 0.002130 | 0.000037 |   0.000063 |
| logging slow query             | 0.000426 | 0.000034 |   0.000175 |
| cleaning up                    | 0.000041 | 0.000021 |   0.000018 |
+--------------------------------+----------+----------+------------+
18 rows in set, 1 warning (0.00 sec)

 

四、explain執行計劃

  explain 或者 desc 命令獲取Mysql如何執行select 語句的信息,包括在select 語句在執行過程中表如何連接,及連接的順序

  4.1 語法

explain/desc select 欄位列表 from 表名 where 條件;

  4.2 示例

mysql> select * from account_transaction where id=100;
+-----+--------------------+--------+--------+----------------------------+---------------+--------------+--------+---------+-----------------+-------------------+-----------+--------+
| id  | trade_no           | type   | method | time                       | payment       | out_trade_no | amount | balance | trader_staff_id | operator_staff_id | device_id | remark |
+-----+--------------------+--------+--------+----------------------------+---------------+--------------+--------+---------+-----------------+-------------------+-----------+--------+
| 100 | 156384784634000449 | TOP_UP | CASH   | 2019-07-23 02:10:46.929559 | LOCAL_ACCOUNT |              |  10000 |   10000 |             449 |                11 | 7         |        |
+-----+--------------------+--------+--------+----------------------------+---------------+--------------+--------+---------+-----------------+-------------------+-----------+--------+
1 row in set (0.00 sec)

mysql> explain select * from account_transaction where id=100;
+----+-------------+---------------------+------------+-------+---------------+---------+---------+-------+------+----------+-------+
| id | select_type | table               | partitions | type  | possible_keys | key     | key_len | ref   | rows | filtered | Extra |
+----+-------------+---------------------+------------+-------+---------------+---------+---------+-------+------+----------+-------+
|  1 | SIMPLE      | account_transaction | NULL       | const | PRIMARY       | PRIMARY | 4       | const |    1 |   100.00 | NULL  |
+----+-------------+---------------------+------------+-------+---------------+---------+---------+-------+------+----------+-------+
1 row in set, 1 warning (0.00 sec)

  4.3 explain欄位含義

    參數id:select查詢的序列號,表示查詢語句中的執行順序,如果id相同,執行順序從上到下,id不同,值越大,越先執行

mysql> select s.*, c.* from student s, course c,student_course sc where s.id=sc.student_id and c.id = sc.course_id;
+----+--------+----+--------+
| id | name   | id | name   |
+----+--------+----+--------+
|  1 | 張三   |  1 | java   |
|  1 | 張三   |  2 | python |
|  1 | 張三   |  3 | php    |
|  2 | 李四   |  2 | python |
|  2 | 李四   |  3 | php    |
|  3 | 王五   |  4 | C      |
+----+--------+----+--------+
6 rows in set (0.03 sec)

mysql> explain select s.*, c.* from student s, course c,student_course sc where s.id=sc.student_id and c.id = sc.course_id;
+----+-------------+-------+------------+--------+----------------------------+---------+---------+-------------------------+------+----------+--------------------------------------------+
| id | select_type | table | partitions | type   | possible_keys              | key     | key_len | ref                     | rows | filtered | Extra                                      |
+----+-------------+-------+------------+--------+----------------------------+---------+---------+-------------------------+------+----------+--------------------------------------------+
|  1 | SIMPLE      | s     | NULL       | ALL    | PRIMARY                    | NULL    | NULL    | NULL                    |    4 |   100.00 | NULL                                       |
|  1 | SIMPLE      | sc    | NULL       | ALL    | fk_course_id,fk_student_id | NULL    | NULL    | NULL                    |    6 |    33.33 | Using where; Using join buffer (hash join) |
|  1 | SIMPLE      | c     | NULL       | eq_ref | PRIMARY                    | PRIMARY | 4       | mysql_test.sc.course_id |    1 |   100.00 | NULL                                       |
+----+-------------+-------+------------+--------+----------------------------+---------+---------+-------------------------+------+----------+--------------------------------------------+
3 rows in set, 1 warning (0.00 sec)

    說明1:這一個select語句中,涉及到了三個表,所以有三條執行記錄。

    說明2:雖然搜索的順序是student,course,student_course,但是執行順序是student,student_course,course,因為兩個表是沒有關係的,需要依靠第三張關係表維繫

    說明3:這是一個三個都是相同id的案例

mysql>   select * from student where id in(select student_id from student_course where course_id = (select id from course where name = "python"));
+----+--------+
| id | name   |
+----+--------+
|  1 | 張三   |
|  2 | 李四   |
+----+--------+
2 rows in set (0.00 sec)

mysql> explain select * from student where id in(select student_id from student_course where course_id = (select id from course where name = "python"));
+----+--------------+----------------+------------+--------+----------------------------+--------------+---------+------------------------+------+----------+-------------+
| id | select_type  | table          | partitions | type   | possible_keys              | key          | key_len | ref                    | rows | filtered | Extra       |
+----+--------------+----------------+------------+--------+----------------------------+--------------+---------+------------------------+------+----------+-------------+
|  1 | PRIMARY      | <subquery2>    | NULL       | ALL    | NULL                       | NULL         | NULL    | NULL                   | NULL |   100.00 | NULL        |
|  1 | PRIMARY      | student        | NULL       | eq_ref | PRIMARY                    | PRIMARY      | 4       | <subquery2
              
您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • ## 1、CentOS-7 > 註意:下列命令要用root賬號/許可權執行 ### 1.1、查看防火牆狀態 ``` systemctl status firewalld ``` ### 1.2、非永久性關閉防火牆 ``` systemctl stop firewalld ``` ### 1.3、非永久 ...
  • # 一、複製文件夾cp ``` cp -a vue vue-copy ``` 將vue 文件夾下麵的所有文件,複製到同目錄下vue-copy文件夾下麵 ![image](https://img2023.cnblogs.com/blog/3202319/202307/3202319-202307271 ...
  • 碼農一枚,Mac作為生產力工具已經有10多年了。 用Mac的原因除了系統清爽,逼格高之外,最主要還是因為作為一個資深全棧,要做Apple相關開發,必須用MacOS系統。😅 與Windows不同,MacOS上流行使用的軟體很多都很小眾,作者也不是大廠,但有很多卻很實用,這裡介紹幾款我常用的免費軟體。 ...
  • ![](https://img2023.cnblogs.com/blog/3076680/202307/3076680-20230726164318392-162588362.png) # 1. 結果集 ## 1.1. sql ```sql select empno,mgr from emp ord ...
  • 一、索引概述 1.1 索引的介紹 索引index:是幫助 Mysql 高效獲取數據 的 有序的數據結構,在數據之外,資料庫系統維護著的滿足特定查找演算法的數據結構,這些數據結構以某種方式引用(指向)數據,這樣就可以在這些數據結構上實現高級查找演算法,這種數據結構就是索引 1.2 索引的優缺點 優點1:提 ...
  • # Spark之探究RDD > 如何瞭解一個組件,先看看官方介紹! ![](https://img2023.cnblogs.com/blog/3161112/202307/3161112-20230727212358040-237097554.png) 進入RDD.scala,引入眼帘的是這麼一段描 ...
  • 向量資料庫是一種專門用於存儲和處理向量數據的資料庫系統。向量數據是指具有多維度屬性的數據,例如圖片、音頻、視頻、自然語言文本等。傳統的關係型資料庫通常不擅長處理向量數據,因為它們需要將數據映射成結構化的表格形式,而向量數據的維度較高、結構複雜,導致存儲和查詢效率低下 ...
  • 忠人之事受人之托 起因是因為一位朋友的資料庫伺服器被重裝了,只剩下一個zbp_post.frm和zbp_post.ibd文件。咨詢我能不能恢復,確實我只用過mysqldump這種工具導出數據 然後進行恢復到資料庫。這種直接備份物理存儲文件還沒有嘗試過。 前提是需要歷史ibd文件的所屬資料庫版本 需要 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...