MySQL- 5.7 sys schema筆記

 


 
    若是轉載,請註明博文來源:  www.cnblogs.com/xinysu/   ,版權歸 博客園 蘇家小蘿蔔 全部。望各位支持!
  


 
    performance_schema提供監控策略及大量監控項,包括:元數據鎖、進度跟蹤、事務、內存使用及存儲程序等。可是,performance_schema又過於複雜,操做不便,因此5.7新增了 sys schema,基礎數據來自於 performance 跟 information_shcema兩個庫,自己數據庫不存儲及集採數據。

1 視圖分類

  1. 主機相關
  2. innodb相關
  3. IO相關
  4. 內存相關
  5. 鏈接與會話相關
  6. 表相關
  7. 索引相關
  8. 語句相關
  9. 用戶相關
  10. 等待信息

2 平常應用

2.1 查看process

     經常使用的有如下3個查詢:
show processlist;
show full processlist;
select * from information_schema.processlist;

    其中,show processlist爲簡要查看當前鏈接數據庫狀況,包含SQL語句的statement列僅提供部分SQL,而show full processlist則提供完整的SQL 語句,information_schema.processlist的內容與show full processlist 內容一致,可是能夠以表格查詢的形式添加where條件,達到本身的使用需求。linux

 
    除此以外,sys提供如下四個視圖查看 鏈接狀況,這四個則更爲詳細的提供了 行數狀況、臨時表狀況、當前SQL以及最後提交SQL(即便是sleep狀態,這裏也有最後提交的SQL能夠查看)等信息。
 
select * from sys.processlist;
select * from sys.session;
select * from sys.x$processlist;
select * from sys.x$session;

    因爲 SQL內容提供爲摘要部分,若想詳細查看,能夠經過 `performance_schema`.`events_statements_current` 表格查看,經過sys.processlist 的thd_id關聯查看。
 

2.2 查看錶訪問量

 select table_schema,table_name,sum(io_read_requests+io_write_requests) io from schema_table_statistics group by table_schema,table_name order by io desc limit 10;
+--------------+----------------------------------+------+
| table_schema | table_name                       | io   |
+--------------+----------------------------------+------+
| ycf_sqlpub   | django_session                   | 2194 |
| dba_sqlpub   | django_session                   |  735 |
| ycf_sqlpub   | sqlversion_registersql           |  347 |
| ycf_sqlpub   | xadmin_log                       |  331 |
| ycf_sqlpub   | sqlversion_registersqllog_sqls   |  329 |
| ycf_sqlpub   | sqlversion_sqlpublishlog_version |  311 |
| ycf_sqlpub   | sqlversion_sqlpublishlog         |  308 |
| ycf_sqlpub   | sqlversion_registersqllog        |  299 |
| ycf_sqlpub   | auth_group_permissions           |  298 |
| ycf_sqlpub   | testenv_testalldb                |  295 |
+--------------+----------------------------------+------+

2.3 冗餘索引與未使用索引

# 冗餘索引查看
select table_schema,table_name,redundant_index_name,redundant_index_columns,dominant_index_name,dominant_index_columns from sys.schema_redundant_indexes;

# 未使用索引查看
select * from schema_unused_indexes;

2.4 表自增ID監控

select * from schema_auto_increment_columns \G

2.5 監控全表掃描的sql語句

select * from sys.statements_with_full_table_scans where db = 'test';

2.6 查看實際消耗磁盤IO的文件

select file,avg_read+avg_write as avg_io from io_global_by_file_by_bytes order by avg_io desc limit 10;

3 視圖一覽表

3.1 觸發器

  • sys_config 
    • 系統變量表格
    • 筆記連接:sys_config
    • 關注點:statement_truncate_len
      • 影響函數format_statement()截斷SQL後的長度,即最後SQL語句顯示的總長度,像 sys.processlist 中的 last_statement 的顯示長度,就是受到這個函數的約束。能夠動態修改會話級別的顯示長度,默認爲64。
  • sys_config_insert_set_user
    • sys_config表格發生INSERT操做,則會觸發該觸發器更新sys_config的set_by列
    • show triggers; 查看源碼
  • sys_config_update_set_user
    • sys_config表格發生UPDATE操做,則會觸發該觸發器更新sys_config的set_by列
    • show triggers; 查看源碼

3.2 視圖

     平常會用到sys庫,主要也是使用 視圖進行查詢,可是目前視圖已經很是多了,分爲 帶x$跟不帶這個前綴的視圖,這兩種沒啥實質性區別,不帶 x$ 的視圖是人性化的結果展現,會有一些單位換算,就是像是 linux 指令中的  -h 選項,而帶想x$前綴的,則是原始數據單位,未經換算。
     視圖那麼那麼多,實際上經常使用的很少,會加紅色字體顯示,其餘視圖作簡單介紹。

3.2.1 主機相關

    • host_summary開頭的視圖
    • 提供IO延遲等相關信息
    • 大體視圖以下(紅色爲經常使用)
      • The host_summary and x$host_summary Views
      • The host_summary_by_file_io and x$host_summary_by_file_io Views
      • The host_summary_by_file_io_type and x$host_summary_by_file_io_type Views
      • The host_summary_by_stages and x$host_summary_by_stages Views
      • The host_summary_by_statement_latency and x$host_summary_by_statement_latency Views
      • The host_summary_by_statement_type and x$host_summary_by_statement_type Views
    • 簡要介紹:
      • 平常中主要適用的是host_summary視圖,能夠根據鏈接數據庫的host總的執行sql數目、執行時長、表掃描、文件IO、鏈接狀況、用戶狀況及內存分佈狀況,可讓DBA快速定位到是哪臺host最耗費數據庫資源,對鏈接數據庫的全部host有一個大體的資源使用狀況的瞭解。
      • 若是想詳細查看每一個host的主要是在什麼文件類型上耗費IO資源,能夠查看 host_summary_by_file_io_type視圖
      • 若是僅查看每臺host總的IO狀況,則能夠查看視圖host_summary_by_file_io

3.2.2 innodb相關

    • innodb開頭的視圖
    • 彙總了innodb buffer page信息和事務等待innodb鎖信息
    • 大體視圖以下(紅色爲經常使用,但實際上最好少用慎用)
      • The innodb_buffer_stats_by_schema and x$innodb_buffer_stats_by_schema Views
      • The innodb_buffer_stats_by_table and x$innodb_buffer_stats_by_table Views
      • The innodb_lock_waits and x$innodb_lock_waits Views
    • 簡要介紹
      • 當一個實例中有多個業務庫,因爲性能問題,可能想查看下各個數據庫的內存佔用狀況,可使用視圖 innodb_buffer_stats_by_schema,可是少用慎用,由於會掃描整個buffer pool來統計,若是所在實例buffer pool很是大,那麼這是一個極爲耗費資源的查詢,沒啥事就不要用哈!這個視圖其實是經過 視圖 innodb_buffer_stats_by_table的數據作了group by object_schema獲得的。
      • (截圖未測試環境,因此使用到的內存不多)
      • 在某種狀況下,須要查詢表格在內存中的佔用狀況,能夠經過視圖 innodb_buffer_stats_by_table來查詢,也是掃描整個buffer pool統計,少用慎用。

3.2.3 IO相關

    • io開頭的視圖
    • 等待IO狀況/IO使用狀況
    • 大體視圖以下(紅色爲經常使用
      • The io_by_thread_by_latency and x$io_by_thread_by_latency Views
        • 各個IO線程的使用狀況
      • The io_global_by_file_by_bytes and x$io_global_by_file_by_bytes Views
        • 各個數據庫文件的IO狀況
      • The io_global_by_file_by_latency and x$io_global_by_file_by_latency Views
        • 各個數據庫文件的IO耗時狀況
      • The io_global_by_wait_by_bytes and x$io_global_by_wait_by_bytes Views
        • 數據庫事件IO等待狀況
      • The io_global_by_wait_by_latency and x$io_global_by_wait_by_latency Views
        • 數據庫事件IO等待耗時狀況
      • The latest_file_io and x$latest_file_io Views
        • 當前正在讀寫文件的狀況
    • 簡要介紹
      • 查看數據庫實例的IO分佈狀況,及着重優化對象,可使用 io_global_by_file_by_bytes

3.2.4 內存相關

    • memory開頭的視圖
    • 從主機/線程/用戶等角度展現內存的使用狀況
      • The memory_by_host_by_current_bytes and x$memory_by_host_by_current_bytes Views
      • The memory_by_thread_by_current_bytes and x$memory_by_thread_by_current_bytes Views
      • The memory_by_user_by_current_bytes and x$memory_by_user_by_current_bytes Views
      • The memory_global_by_current_bytes and x$memory_global_by_current_bytes Views
      • The memory_global_total and x$memory_global_total Views
    • 簡要介紹
      • 當前內存使用狀況,從 host、thread、user等角度來分別查看,對應各自的視圖便可。

3.2.5 鏈接與會話相關

    • 含有processlist和session的視圖
    • 會話相關的信息
    • 大體視圖以下(紅色爲經常使用
      • The processlist and x$processlist Views
      • The session and x$session Views
      • The session_ssl_status View
    • 簡要介紹
      • 查看鏈接使用狀況,session的結果跟processlist相似。查看鏈接狀況,有很是多種方式,每種方式都有各自的使用狀況,詳情能夠查看上文說明。

3.2.6 表相關

    • schema_table開頭的視圖
    • 從全表掃描/innodb緩衝池表現表統計信息
    • 大體視圖以下(紅色爲經常使用
      • The schema_table_lock_waits and x$schema_table_lock_waits Views
      • The schema_table_statistics and x$schema_table_statistics Views
      • The schema_table_statistics_with_buffer and x$schema_table_statistics_with_buffer Views
      • The schema_tables_with_full_table_scans and x$schema_tables_with_full_table_scans Views
      • The schema_auto_increment_columns View
    • 簡要介紹
      • 查看錶格的update、delete、insert、select的IO狀況,可使用schema_table_statistics視圖
      • 查看錶格的全表掃描狀況,抓取須要重點優化的對象,可使用視圖schema_tables_with_full_table_scans
      • 查看錶格的自增加是否快達到瓶頸了,有些表格存在頻繁的刪除操做,可能致使自增ID的最大值跟表格數量極不相符合,爲了不問題,能夠經過視圖 schema_auto_increment_columns,查看有哪些表格快要達到自增的瓶頸值

3.2.7 索引相關

    • 含有index的視圖
    • 大體視圖以下(紅色爲經常使用,一不當心都加紅了
      • The schema_object_overview View
      • The schema_redundant_indexes and x$schema_flattened_keys Views
      • The schema_unused_indexes View
      • The schema_index_statistics and x$schema_index_statistics Views
    • 簡要介紹
      • 查看當前實例內各個數據的對象及索引分佈狀況,可使用 schema_object_overview
      • 查看數據庫的冗餘索引狀況,能夠經過視圖 schema_redundant_indexes,可是請記住,不是全部冗餘索引都要刪除,請衡量實際的使用狀況、索引大小、索引掃描狀況後再決定。
      • 查看數據庫沒有使用的索引,可使用 schema_unused_indexes
      • 查看索引的select \update\delete\insert狀況,可使用schema_index_statistics

3.2.8 語句相關

    • statement開頭的視圖
    • 錯誤數、警告數、執行全表掃描、使用臨時表、執行排序等信息
    • 大體視圖以下(紅色爲經常使用,功能蠻強大,就是實際還蠻少用到的
      • The statement_analysis and x$statement_analysis Views
      • The statements_with_errors_or_warnings and x$statements_with_errors_or_warnings Views
      • The statements_with_full_table_scans and x$statements_with_full_table_scans Views
      • The statements_with_runtimes_in_95th_percentile and x$statements_with_runtimes_in_95th_percentile Views
      • The statements_with_sorting and x$statements_with_sorting Views
      • The statements_with_temp_tables and x$statements_with_temp_tables Views
    • 簡要描述
      • 彙總SQL中錯誤數、警告數、執行全表掃描、使用臨時表、執行排序等信息,sql語句也是使用 format_statement() 函數作了長度限制,若是想查看完整的SQL,能夠經過 這個表格的這一列查看performance_schema`.`events_statements_summary_by_digest`.`DIGEST_TEXT`,關聯的添加列是 DIGEST

3.2.9 用戶相關

    • user開頭的視圖
    • 用戶使用的文件IO/執行語句的統計信息
    • 大體視圖以下(紅色爲經常使用
      • The user_summary and x$user_summary Views
      • The user_summary_by_file_io and x$user_summary_by_file_io Views
      • The user_summary_by_file_io_type and x$user_summary_by_file_io_type Views
      • The user_summary_by_stages and x$user_summary_by_stages Views
      • The user_summary_by_statement_latency and x$user_summary_by_statement_latency Views
      • The user_summary_by_statement_type and x$user_summary_by_statement_type Views
    • 簡要介紹
      • 從用戶的角度,分別統計文件的IO狀況、sql執行狀況,若是數據庫的用戶是按照業務模塊來劃分的,那麼則能夠清晰的看到哪些業務耗費資源較多

3.2.10 等待信息

    • wait開頭的視圖
      • The wait_classes_global_by_avg_latency and x$wait_classes_global_by_avg_latency Views
        • 按事件event分組,統計各個event的平均延遲時長
      • The wait_classes_global_by_latency and x$wait_classes_global_by_latency Views
        • 按事件event分組,統計各個event的總延遲時長
      • The waits_by_host_by_latency and x$waits_by_host_by_latency Views
      • The waits_by_user_by_latency and x$waits_by_user_by_latency Views
      • The waits_global_by_latency and x$waits_global_by_latency Views
        • 全部event的延遲狀況
    • 簡要介紹
      • 等待類視圖,分別從事件、主機、用戶等角度,進行查詢分析。
相關文章
相關標籤/搜索