您好,登錄后才能下訂單哦!
(1)查看表結構
MariaDB [oldboy]> desc test1;
+-------+----------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+-------+----------+------+-----+---------+-------+
| id | int(4) | NO | | NULL | |
| name | char(16) | NO | | NULL | |
| age | int(2) | YES | | NULL | |
+-------+----------+------+-----+---------+-------+
(2)explain 查看是否含有建立索引的語句
MariaDB [oldboy]> explain select * from test1 where name="kaka"\G
*************************** 1. row ***************************
id: 1
select_type: SIMPLE
table: test1
type: ALL
possible_keys: NULL
key: NULL
key_len: NULL
ref: NULL
rows: 5 #查詢行數,表示當前查詢了5行
Extra: Using where
1 row in set (0.00 sec)
(3)創建索引
MariaDB [oldboy]> create index index_name on test1(name);
Query OK, 0 rows affected (0.05 sec)
Records: 0 Duplicates: 0 Warnings: 0
(4)重新查詢
MariaDB [oldboy]> explain select * from test1 where name="kaka"\G
*************************** 1. row ***************************
id: 1
select_type: SIMPLE
table: test1
type: ref
possible_keys: index_name
key: index_name
key_len: 48
ref: const
rows: 1 #查詢行數,表示當前只查詢了1行
Extra: Using index condition
1 row in set (0.00 sec)
#從以上例子可以看到,使用索引,可以更快的查詢所需要的信息。
每隔2,秒輸入:SHOW FULL PROCESSLIST; 如果出現2次說明存在慢查詢
MariaDB [oldboy]> show full processlist;
+----+------+-----------+--------+---------+------+-------+-----------------------+----------+
| Id | User | Host | db | Command | Time | State | Info | Progress |
+----+------+-----------+--------+---------+------+-------+-----------------------+----------+
| 9 | root | localhost | oldboy | Query | 0 | NULL | show full processlist | 0.000 |
+----+------+-----------+--------+---------+------+-------+-----------------------+----------+
1 row in set (0.00 sec)
配置參數記錄慢查詢語句
log_query_time = 2 #執行超過2s記錄到log中
log_queries_not_using_indexes #沒有走索引的語句,記錄log中
log-slow-queries = /data/3306/slow.log #log的位置
explain select * from test from where name='oldboy'\G #查看是否走索引
explain select SQL_NO_CACHE * from test where name='oldboy'\G #去除緩存
生產場景,大表不能高峰期建立索引,例如:300萬記錄
切割慢查詢日志,去重分析后發給大家
1)mv,reload進程 2)cp,>清空
2)定時任務
mv /data/3306/slow.log /opt/$(date +%F)_slow.log
mysqladmin -uroot -p123456 flush-logs
mysqlsla分析:http://blog.itpub.net/7607759/viewspace-692828/
優化起因:
1)網站出了問題,訪問很慢。
a.web服務器的負載、存儲、db(負載、io、cpu)
登錄db:show full processlist
2)慢查詢語句(日志文件)
long_query_time=2 #執行超過2s記錄到log中
log_queries_not_using_indexs #沒有走索引的語句,記錄log中
log-slow-queries=/data/3306/slow.log #log的位置
切割,分析,發給管理員
案例分析:
1.查看是否db存在慢查詢:show full processlist;
2.explain分析:explain 慢查詢的語句
3.查看表結構:desc test1;
4.定位在哪列建立索引,哪張表
5.查看條件字段列的唯一值的數量 select count(distinct ader) from ad_oldboy_detail
6.建立索引 create index ....
了解內容,高級DBA使用
help show profile;
select @@profiling;
set profiling = 1;
select @@profiling;
show profile;
show profile for query 2;
http://www.cnblogs.com/adforce/archive/2012/06/02/2532287.html
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。