MySQL中強大的mysqladmin

jeanron100發表於2017-07-31

  如果對MySQL的效能測試工具,比如sysbench做壓力測試就可以看到我們關注的效能指標QPS,TPS,壓測過程中的效能變化一目瞭然。

  而在平時的工作中,如果也想看這個指標的值,使用sysbench就不合適了。所以我們得先了解下TPS,QPS是怎麼計算的,沒有sysbench這些工具,我們能不能算出來。

    首先效能指標值我們是可以算出來的,我們透過show status能夠得到一個實時變化的狀態,裡面的數值基本上都是累計值,我們可以透過設定頻度來換算,由此得到一個近乎實時的狀態資料。

    這個時候mysqladmin就上場了,不光能夠很方便的檢視引數情況,比如mysqladmin var,很方便的檢視引數等。mysqladmin shutdown來停庫,mysqladmin flush-hosts,mysqladmin flush-privileges來重新整理許可權,或者使用mysqladmin pro來檢視執行緒情況。而如果需要檢視QPS,就需要使用show status的結果了。

比如我前後間隔一秒來得到一個狀態值。

> show status like 'queries';
+---------------+---------+
| Variable_name | Value   |
+---------------+---------+
| Queries       | 9978587 |
+---------------+---------+間隔1秒檢視
> show status like 'queries';
+---------------+---------+
| Variable_name | Value   |
+---------------+---------+
| Queries       | 9978588 |
+---------------+---------+如果要計算出這個值,我們可以使用mysqladmin extended-status來得到,不過這是個累計值,如果想得到一個差值,還是有選項 -r -i來輔助,比如迴圈呼叫-r,間隔1秒 -i,

  比如我們看一個指標 innodb_pages_read就可以使用如下的方式來檢視。

# mysqladmin -r -i 1  extended-status|grep Handler_read_rnd_next
| Handler_read_rnd_next                         | 6814  
| Handler_read_rnd_next                         | 399   
| Handler_read_rnd_next                         | 399   
| Handler_read_rnd_next                         | 399

  那麼檢視TPS呢,其實公式就很簡單了,如下:

TPS = (Com_commit + Com_rollback) / Seconds

   如果把這些指標值都整合起來,檢視就會方便許多了,比如下面的方式,可以檢視多個指標值。

mysqladmin  -r -i 1  extended-status \
|grep "Questions\|Queries\|Innodb_rows\|Com_select \|Com_insert \|Com_update \|Com_delete "

但是效果似乎還是可以更近一步,我看了這方面的大牛的指令碼,還是很有意思的。

mysqladmin  -r -i 1 ext |\
awk -F"|" '{\
  if($2 ~ /Variable_name/){\
    print " <-------------    "  strftime("%H:%M:%S") "    ------------->";\
  }\
  if($2 ~ /Questions|Queries|Innodb_rows|Com_select |Com_insert |Com_update |Com_delete |Innodb_buffer_pool_read_requests/)\
    print $2 $3;\
}'

執行的結果如下:

# sh aa.sh
 <-------------    23:07:24    ------------->
 Com_delete                                  6           
 Com_insert                                  4953706     
 Com_select                                  2672        
 Com_update                                  4           
 Innodb_buffer_pool_read_requests            67500881    
 Innodb_rows_deleted                         10          
 Innodb_rows_inserted                        8464857     
 Innodb_rows_read                            46945213    
 Innodb_rows_updated                         3           
 Queries                                     9978553     
 Questions                                   2454058     
 <-------------    23:07:25    ------------->
 Com_delete                                  0           
 Com_insert                                  0           
 Com_select                                  0           
 Com_update                                  0           
 Innodb_buffer_pool_read_requests            0           
 Innodb_rows_deleted                         0           
 Innodb_rows_inserted                        0           
 Innodb_rows_read                            0           
 Innodb_rows_updated                         0           
 Queries                                     1           
 Questions                                   1

再來放兩個大,一個是使用awk來深度定製,這個效果牛了。

mysqladmin  -r -i 1 ext |\
awk -F"|" \
"BEGIN{ count=0; }"\
'{ if($2 ~ /Variable_name/ && ++count == 1){\
    print "----------|---------|--- MySQL Command Status --|----- Innodb row operation ----|-- Buffer Pool Read --";\
    print "---Time---|---QPS---|select insert update delete|  read inserted updated deleted|   logical    physical";\
}\
else if ($2 ~ /Queries/){queries=$3;}\
else if ($2 ~ /Com_select /){com_select=$3;}\
else if ($2 ~ /Com_insert /){com_insert=$3;}\
else if ($2 ~ /Com_update /){com_update=$3;}\
else if ($2 ~ /Com_delete /){com_delete=$3;}\
else if ($2 ~ /Innodb_rows_read/){innodb_rows_read=$3;}\
else if ($2 ~ /Innodb_rows_deleted/){innodb_rows_deleted=$3;}\
else if ($2 ~ /Innodb_rows_inserted/){innodb_rows_inserted=$3;}\
else if ($2 ~ /Innodb_rows_updated/){innodb_rows_updated=$3;}\
else if ($2 ~ /Innodb_buffer_pool_read_requests/){innodb_lor=$3;}\
else if ($2 ~ /Innodb_buffer_pool_reads/){innodb_phr=$3;}\
else if ($2 ~ /Uptime / && count >= 2){\
  printf(" %s |%9d",strftime("%H:%M:%S"),queries);\
  printf("|%6d %6d %6d %6d",com_select,com_insert,com_update,com_delete);\
  printf("|%6d %8d %7d %7d",innodb_rows_read,innodb_rows_inserted,innodb_rows_updated,innodb_rows_deleted);\
  printf("|%10d %11d\n",innodb_lor,innodb_phr);\
}}'

指令碼很長,結果很炫。

# sh aa.sh
----------|---------|--- MySQL Command Status --|----- Innodb row operation ----|-- Buffer Pool Read --
---Time---|---QPS---|select insert update delete|  read inserted updated deleted|   logical    physical
 23:10:47 |      193|    64      1      2      0| 12296        1       2       0|      1755           0
 23:10:48 |      129|    44      0      2      0| 11184        0       2       0|      1582           0
 23:10:49 |       89|    33      0      1      0| 11898        0       1       0|      1667           0

  

還有簡化版

mysqladmin  extended-status -i1|awk 'BEGIN{local_switch=0;print "QPS   Commit Rollback   TPS    Threads_con Threads_run \n------------------------------------------------------- "}
     $2 ~ /Queries$/            {q=$4-lq;lq=$4;}
     $2 ~ /Com_commit$/         {c=$4-lc;lc=$4;}
     $2 ~ /Com_rollback$/       {r=$4-lr;lr=$4;}
     $2 ~ /Threads_connected$/  {tc=$4;}
     $2 ~ /Threads_running$/    {tr=$4;
        if(local_switch==0)
                {local_switch=1; count=0}
        else {
                if(count>10)
                        {count=0;print "------------------------------------------------------- \nQPS   Commit Rollback   TPS    Threads_con Threads_run \n------------------------------------------------------- ";}
                else{
                        count+=1;
                        printf "%-6d %-8d %-7d %-8d %-10d %d \n", q,c,r,c+r,tc,tr;
                }
        }
}'


# sh aa.sh
QPS   Commit Rollback   TPS    Threads_con Threads_run
-------------------------------------------------------
108    0        3       3        46         2
173    0        1       1        47         2
69     0        0       0        47         2




來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/23718752/viewspace-2142814/,如需轉載,請註明出處,否則將追究法律責任。

相關文章