您好,登錄后才能下訂單哦!
在數據庫運維過程中,優化SQL是業務團隊與DBA團隊的日常任務。例行SQL優化,不僅可以提升程序性能,還能夠降低線上故障的概率。
目前常用的SQL優化方式包括但不限于:業務層優化、SQL邏輯優化、索引優化等。其中索引優化通常通過調整索引或新增索引從而達到SQL優化的目的。索引優化往往可以在短時間內產生非常巨大的效果。如果能夠將索引優化轉化成工具化、標準化的流程,減少人工介入的工作量,無疑會大大提高DBA的工作效率
SQLAdvisor是由美團點評公司DBA團隊(北京)開發維護的SQL優化工具:輸入SQL,輸出索引優化建議。 它基于MySQL原生詞法解析,再結合SQL中的where條件以及字段選擇度、聚合條件、多表Join關系等最終輸出最優的索引優化建議。目前SQLAdvisor在公司內部大量使用,較為成熟、穩定。
美團點評致力于將SQLAdvisor打造成一款高智能化SQL優化工具,選擇將已經在公司內部使用較為成熟的、穩定的SQLAdvisor項目開源,github地址。希望與業內有類似需求的團隊,一起打造一款優秀的SQL優化產品。
Usage:
SQL Advisor Summary
Help Options:
-?, --help Show help options
Application Options:
-f, --defaults-file sqls file
-u, --username username
-p, --password password
-P, --port port
-h, --host host
-d, --dbname database name
-q, --sqls sqls
-v, --verbose 1:output logs 0:output nothing
[root@dbmon SQLAdvisor]# sqladvisor -u *** -p *** -h *** -P 6001 -d my -q "select * from my_db where port=6001" -v 1
2017-05-04 11:42:03 27943 [Note] 第1步: 對SQL解析優化之后得到的SQL:select `*` AS `*` from `my`.`my_db` where (`port` = 6001)
2017-05-04 11:42:03 27943 [Note] 第2步:開始解析where中的條件:(`port` = 6001)
2017-05-04 11:42:03 27943 [Note] show index from my_db
2017-05-04 11:42:03 27943 [Note] show table status like 'my_db'
2017-05-04 11:42:03 27943 [Note] select count(*) from ( select `port` from `my_db` FORCE INDEX( ux_hostportservicename ) order by host DESC,port DESC limit 353) `my_db` where (`port` = 6001)
2017-05-04 11:42:03 27943 [Note] 第3步:表my_db的行數:707,limit行數:353,得到where條件中(`port` = 6001)的選擇度:353
2017-05-04 11:42:03 27943 [Note] 第4步:開始驗證 字段port是不是主鍵。表名:my_db
2017-05-04 11:42:03 27943 [Note] show index from my_db where Key_name = 'PRIMARY' and Column_name ='port' and Seq_in_index = 1
2017-05-04 11:42:03 27943 [Note] 第5步:字段port不是主鍵。表名:my_db
2017-05-04 11:42:03 27943 [Note] 第6步:開始驗證 字段port是不是主鍵。表名:my_db
2017-05-04 11:42:03 27943 [Note] show index from my_db where Key_name = 'PRIMARY' and Column_name ='port' and Seq_in_index = 1
2017-05-04 11:42:03 27943 [Note] 第7步:字段port不是主鍵。表名:my_db
2017-05-04 11:42:03 27943 [Note] 第8步:開始驗證表中是否已存在相關索引。表名:my_db, 字段名:port, 在索引中的位置:1
2017-05-04 11:42:03 27943 [Note] show index from my_db where Column_name ='port' and Seq_in_index =1
2017-05-04 11:42:03 27943 [Note] 第9步:開始輸出表my_db索引優化建議:
2017-05-04 11:42:03 27943 [Note] Create_Index_SQL:alter table my_db add index idx_port(port)
2017-05-04 11:42:03 27943 [Note] 第10步: SQLAdvisor結束!
注:
利用django, bootstrap,html 來平臺化
利用python腳本等來實現自動化
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。