【MySQL】計算 TPS,QPS 的方式

來源:互聯網
上載者:User

標籤:記錄   oba   衡量   update   單位   php   tac   對比   jpg   

摘自:51198571

 

在做db基準測試的時候,qps,tps 是衡量資料庫效能的關鍵計量。本文比較了網上的兩種計算方式。先來瞭解一下相關概念。概念介紹:QPS:Queries Per Second         查詢量/秒,是一台伺服器每秒能夠相應的查詢次數,是對一個特定的查詢服務器在規定時間內所處理查詢量多少的衡量標準。TPS :  Transactions Per Second   是事務數/秒,是一台資料庫伺服器在單位時間內處理的事務的個數。  如何計算:從網上查看如果擷取mysql 的qps,tps 的方法有如下兩種:方法一 基於 questions  計算qps,基於  com_commit  com_rollback 計算tpsquestions = show global status like ‘questions‘;uptime = show global status like ‘uptime‘;qps=questions/uptime com_commit = show global status like ‘com_commit‘;com_rollback = show global status like ‘com_rollback‘;uptime = show global status like ‘uptime‘;tps=(com_commit + com_rollback)/uptime 方法二  基於 com_* 的status 變數計算tps ,qps使用如下命令:show global status where variable_name in(‘com_select‘,‘com_insert‘,‘com_delete‘,‘com_update‘);擷取間隔1s 的 com_*的值,並作差值運算del_diff = (int(mystat2[‘com_delete‘])   - int(mystat1[‘com_delete‘]) ) / diffins_diff = (int(mystat2[‘com_insert‘])    - int(mystat1[‘com_insert‘]) ) / diffsel_diff = (int(mystat2[‘com_select‘])    - int(mystat1[‘com_select‘]) ) / diffupd_diff = (int(mystat2[‘com_update‘])   - int(mystat1[‘com_update‘]) ) / diff 上述計算方法的值準確合適嗎?是我手工做測試的結果:a 針對mysql innodb 表的dml 操作做了各個量的統計,結果如下:由可以得出結論:1 com_commit, com_rollback 與顯示指定transaction無關,只和顯式提交commit rollback 有關。2 不管dml的結果是否成功,com_* 都會增加1 。 b 針對myisam 表的測試:1 對於myisam 表 進行dml操作 只有questions 改變其他值不變。2 對於myisam 儲存引擎使用com_* 計算其tps,qps 是不準確的,使用questions 的值計算相對比較合適。 利用指令碼使用不同的變數擷取資料庫的qps,tps 的對比圖:qps_s      是基於 com_selectqps_ques 是基於 questions ,tps_iud    是基於 com_insert, com_update,com_delete 之和,tps_com_rol是基於 com_commit com_rollback 之和由可以查看 基於questions 要比基於com_select的數值要大,因為questions本身是所有db訪問的集合。 總結:Questions 是記錄了從mysqld啟動以來所有的select,dml 次數包括show 命令的查詢的次數。這樣多少有失準確性,比如很多資料庫有監控系統在運行,每5秒對資料庫進行一次show 查詢來擷取當前資料庫的狀態,而這些查詢就被記錄到QPS,TPS統計中,造成一定的"資料汙染".如果資料庫中存在比較多的myisam表,則計算還是questions 比較合適。如果資料庫中存在比較多的innodb表,則計算以com_*資料來源比較合適。

【MySQL】計算 TPS,QPS 的方式

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.