您好,登錄后才能下訂單哦!
不管對于哪種服務,對于其優化,無非是從兩個方面著手,第一個是對于硬件方面的優化,第二個是對系統以及服務本身的優化。
mysql> show status like 'connections';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| Connections | 3 |
+---------------+-------+
1 row in set (0.01 sec)
mysql> show status like 'uptime'; //單位為“秒”
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| Uptime | 127 |
+---------------+-------+
1 row in set (0.00 sec)
mysql> show status like 'com_select';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| Com_select | 12 |
+---------------+-------+
1 row in set (0.00 sec)
mysql> show status like 'com_insert';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| Com_insert | 1 |
+---------------+-------+
1 row in set (0.00 sec)
mysql> show status like 'com_update';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| Com_update | 1 |
+---------------+-------+
1 row in set (0.00 sec)
mysql> show status like 'com_delete';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| Com_delete | 0 |
+---------------+-------+
1 row in set (0.00 sec)
mysql> show status like 'slow_queries';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| Slow_queries | 21 |
+---------------+-------+
1 row in set (0.00 sec)
mysql> explain select * from stu_info\G
*************************** 1. row ***************************
id: 1
select_type: SIMPLE
table: stu_info #表名
partitions: NULL
type: ALL
possible_keys: NULL
key: NULL
key_len: NULL
ref: NULL #使用哪個列或常數與索引一起使用來查詢記錄
rows: 3
filtered: 100.00
Extra: NULL
1 row in set, 1 warning (0.00 sec)
上面的select_type解釋如下:
- Select_type:表示select語句的類型 其中simple 是簡單查詢(不包括連接查詢和子查詢) Primary 主查詢 Union 連接查詢;
mysql> explain select * from stu_info where s_id=3\G #沒有索引時的查詢結果分析如下
*************************** 1. row ***************************
id: 1
select_type: SIMPLE
table: stu_info
partitions: NULL
type: ALL
possible_keys: NULL
key: NULL
key_len: NULL
ref: NULL
rows: 3 #需要查詢三行才能查到(這個表數據總共也就三行)
filtered: 33.33
Extra: Using where
1 row in set, 1 warning (0.00 sec)
mysql> create index index_01 on stu_info(s_id); #創建索引
mysql> explain select * from stu_info where s_id=3\G #再次進行查詢
*************************** 1. row ***************************
id: 1
select_type: SIMPLE
table: stu_info
partitions: NULL
type: ref
possible_keys: index_01 #使用的是哪個索引名稱
key: index_01
key_len: 5
ref: const
rows: 1 #創建索引后,查詢1行就查到可。
filtered: 100.00
Extra: NULL
1 row in set, 1 warning (0.00 sec)
使用索引注意事項如下:
- 做索引了之后,用 like ‘xx%’ %不在第一位查詢效率最高;
- 若使用多字段索引,除了第一字段查詢最快,其余不會按索引來,索引不生效;
- 若創建索引所設置的字段,查詢索引組合 or 左右邊的值都是屬于索引設置字段下的值。
關于使用索引的其他注意事項,可以參考博文:MySQL索引類型詳解;
通過慢日志查詢可以知道哪些SQL語句執行效率低下,通過explain我們可以得知SQL語句的具體執行情況,索引使用等,還可以結合show命令查看執行狀態。如果覺得explain的信息不夠詳細,可以同通過profiling命令得到更準確的SQL執行消耗系統資源的信息。 profiling默認是關閉的。可以通過以下語句查看:
mysql> show variables like '%profiling%';
+------------------------+-------+
| Variable_name | Value |
+------------------------+-------+
| have_profiling | YES |
| profiling | OFF | #OFF表示未開啟
| profiling_history_size | 15 |
+------------------------+-------+
3 rows in set (0.00 sec)
mysql> select @@profiling;
+-------------+
| @@profiling |
+-------------+
| 0 | # 0表示未開啟
+-------------+
1 row in set, 1 warning (0.00 sec)
mysql> set profiling=1; #開啟
Query OK, 0 rows affected, 1 warning (0.00 sec)
mysql> select @@profiling; #qu
+-------------+
| @@profiling |
+-------------+
| 1 |
+-------------+
1 row in set, 1 warning (0.00 sec)
mysql> select * from bank;
+-------+-------+
| name | money |
+-------+-------+
| lu | 1000 |
| qi | 1000 |
| zhang | 2000 |
+-------+-------+
3 rows in set (0.00 sec)
mysql> show profiles;
+----------+------------+--------------------+
| Query_ID | Duration | Query |
+----------+------------+--------------------+
| 1 | 0.00012925 | select @@profiling |
| 2 | 0.00401325 | SELECT DATABASE() |
| 3 | 0.01405400 | show databases |
| 4 | 0.00034675 | show tables |
| 5 | 0.00011475 | show tabels |
| 6 | 0.00029225 | show tables |
| 7 | 0.00041200 | select * from bank |
| 8 | 0.00020225 | select * from bank |
+----------+------------+--------------------+
8 rows in set, 1 warning (0.00 sec)
mysql> show profile for query 7; #查詢sql語句的詳細分析
+----------------------+----------+
| Status | Duration |
+----------------------+----------+
| starting | 0.000161 |
| checking permissions | 0.000010 |
| Opening tables | 0.000016 |
| init | 0.000047 |
| System lock | 0.000013 |
| optimizing | 0.000004 |
| statistics | 0.000013 |
| preparing | 0.000009 |
| executing | 0.000004 |
| Sending data | 0.000050 |
| end | 0.000004 |
| query end | 0.000008 |
| closing tables | 0.000007 |
| freeing items | 0.000012 |
| logging slow query | 0.000041 |
| cleaning up | 0.000013 |
+----------------------+----------+
16 rows in set, 1 warning (0.00 sec)
在上面命令的返回結果中,status是profile里的狀態,duration是status狀態下的耗時,因此我們關注的就是哪個狀態最耗時,這些狀態中哪些可以優化,當然也可以查看更多的信息,比如:CPU等。語法如下:
mysql> show profile block io for query 7\G
mysql> show profile all for query 7\G
除了上面的block io和all以外,還可以換成cpu(顯示用戶cpu時間、系統cpu時間)、ipc(顯示發送和接收相關開銷信息)、page faults(顯示頁面錯誤相關開銷信息)、swaps(顯示交換次數相關開銷的信息)。
注意:測試完成之后,記得要關閉調試功能,以免影響數據庫的正常使用。
對數據庫表結構的優化大概可以從以下幾個方面著手:
- 將字段很多的表分解成多個表,盡量避免表字段過多;
- 增加中間表,合理增加冗余字段;
- 優化插入記錄的速度;
- 在插入數據之前禁用索引,會讓創建索引不生效,命令: ALTER TABLE table_name DISABLE KEYS;
- 根據實際情況來定,在插入記錄之前禁用唯一性檢查,命令:set unique_checks=0;
- 多條插入數據的命令最好整合為一條;
- 使用load data infle批量插入數據。
- 對于innodb引擎的表來說,以下幾點可以進行優化:
- 禁用唯一性檢查:set unique_checks=0;
- 禁用外鍵檢查:set foreign_key_checks=0;
- 禁用自動提交:set autocommit=0;
所謂分析表,就是分析關鍵字的分布,檢查表就是檢查是否存在錯誤,優化表就是刪除或更新造成的空間浪費。
分析表可以一次分析一個或多個表,在分析期間只能讀,不能進行插入和更新操作。分析表的語法如下:
mysql> analyze table bank;
+-------------+---------+----------+----------+
| Table | Op | Msg_type | Msg_text |
+-------------+---------+----------+----------+
| test01.bank | analyze | status | OK |
+-------------+---------+----------+----------+
1 row in set (0.00 sec)
對于上述返回的結果解釋:Table是表名 ,op執行的操作是什么, msg_type 信息級別(status是正常狀態,info是信息,note注意,warning警告,error錯誤), msg_text 是顯示信息。
檢查是否存在錯誤,關鍵字統計,檢查視圖是否有錯誤 Check table 表名 option ={quick |fast | medium|extended |changed} Quick 不掃描行,不檢查錯誤連接 Fast 只檢查沒有被正確關閉的表 Medium 掃描行驗證被刪除的連接是有效的,也可以計算各行的關鍵字校驗和。 Extended 對每行所有關鍵字進行全面的關鍵字查找,Changed 只檢查上次檢查后被更改的表和沒有被正確關閉的表,Option只對myisam 有效 對innodb表無效,在執行時會給表加上只讀鎖。
mysql> check table bank;
+-------------+-------+----------+----------+
| Table | Op | Msg_type | Msg_text |
+-------------+-------+----------+----------+
| test01.bank | check | status | OK |
+-------------+-------+----------+----------+
1 row in set (0.00 sec)
消除刪除或更新造成的空間浪費,命令語法格式為:Optimize [local |no_write_to_binlog] table tb1_name …., 優化myisam的表和innodb的表都有效, 但是只能優化表中的varchar\text\blob數字類型, 執行過程中上只讀鎖。
mysql> optimize table bank\G
*************************** 1. row ***************************
Table: test01.bank
Op: optimize
Msg_type: note
Msg_text: Table does not support optimize, doing recreate + analyze instead
*************************** 2. row ***************************
Table: test01.bank
Op: optimize
Msg_type: status
Msg_text: OK
2 rows in set (0.04 sec)
———————— 本文至此結束,感謝閱讀 ————————
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。