程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> MySQL性能計算

MySQL性能計算

編輯:MySQL綜合教程

MySQL性能計算   ##################################################################################   QPS(Queries Per Second):   mysql> show /*!50000 global */ status like 'Questions';   mysql> show /*!50000 global */ status like 'Queries';     QPS = Questions(or Queries) / Seconds   ##################################################################################   TPS(Transactions Per Second):     mysql> show status like 'Com_commit';   mysql> show status like 'Com_rollback';     #分布式事務相關應加上下面2個變量值   mysql> show status like 'Com_xa_commit';   mysql> show status like 'Com_xa_rollback';     TPS = ( Com_commit + Com_rollback ) / Seconds       ##################################################################################     Key Buffer(MyISAM表索引Cache):     mysql> show status like 'Key_reads';   mysql> show status like 'Key_read_requests';   mysql> show status like 'Key_writes';   mysql> show status like 'Key_write_requests';     Key Buffer Read 命中率 = ( 1 - Key_reads / Key_read_requests ) * 100%   Key Buffer Write 命中率 = ( 1 - Key_writes / Key_write_requests ) * 100%     ##################################################################################     Innodb Buffer Pool:     mysql> show status like 'Innodb_buffer_pool_reads';   mysql> show status like 'Innodb_buffer_pool_read_requests';       Innodb Buffer Pool Read 命中率 = ( 1 - Innodb_buffer_pool_reads/Innodb_buffer_pool_read_requests )  * 100%     mysql> show innodb status \G     ##################################################################################     Query Cache:     mysql> show status like 'Qcache_hits';   mysql> show status like 'Qcache_inserts';     Query Cache 命中率 = ( Qcache_hits / ( Qcache_hits + Qcache_inserts ) ) * 100%;     ##################################################################################   Table Cache:   mysql> show status like 'Open_tables';   mysql> show status like 'Opened_tables';   Table Cache 命中率 = ( Open_tables / Opened_tables ) * 100%   ##################################################################################   Thread Cache:     mysql> show status like 'connections';   mysql> show status like 'Threads_created';     Thread Cache 命中率 = ( 1 - Threads_created / Connections ) * 100%   #################################################################################

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved