您好,登錄后才能下訂單哦!
本文主要給大家介紹mysql性能命令解析,希望可以給大家補充和更新些知識,如有其它問題需要了解的可以持續在億速云行業資訊里面關注我的更新文章的。
mysql性能命令:
列出所有用戶的當前連接:
> show processlist; (只顯示前100行)
> show full processlist; (顯示所有連接)
查看所有mysql信息:
> show status;
查看正在使用延遲插入處理器線程的數量:
> show status like '%Delayed_insert_threads%';
同時使用的連接的最大數量:
> show status like '%max_used_connections%';
打開表的數量:
> show status like '%open_tables%';
在隊列中等待寫入行的數量:
> show status like '%not_flushed_delayed_rows%';
已經打開表的數量:
> show status like '%opened_tables%';
發往云服務器查詢的數量:
> show status like '%questions%'
超過long_query_time時間的查詢數量:
> show status like '%slow_queries%';
當前打開的連接數量:
> show status like '%threads_connected%';
不在睡眠的線程數量:
> show status like '%threads_running%';
服務器工作了多少秒:
> show status like '%uptime%';
查看表級鎖爭用情況(數值越大說明表級鎖爭用越嚴重):
> show status like '%table_locks_waited%';
當前正在等待鎖定的數量:
> show status like '%innodb_row_lock_current_waits%';
看了以上關于mysql性能命令解析,希望能給大家在實際運用中帶來一定的幫助。本文由于篇幅有限,難免會有不足和需要補充的地方,如有需要更加專業的解答,可在官網聯系我們的24小時售前售后,隨時幫您解答問題的。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。