MySQL使用pt-kill殺除大SQL

feelpurple發表於2018-02-12
下載地址


解壓pt軟體
# tar xfz percona-toolkit-3.0.2_x86_64.tar.gz

安裝對應的perl依賴包
# yum install perl-DBI
# yum install perl-DBD-MySQL


  1. # 執行一條大SQL
  2. >select * from ls_evaluate;

  3. # 列印出執行時間超過2秒的語句
  4. # bin/pt-kill -uroot -pcnstrong#123454321 -S /data/mysql01/mysql.sock --busy-time 2 --print
  5. # 2018-02-12T11:28:04 KILL 30192 (Query 41 sec) select * from ls_evaluate
  6. # 2018-02-12T11:28:05 KILL 30192 (Query 42 sec) select * from ls_evaluate
  7. # 2018-02-12T11:28:06 KILL 30192 (Query 43 sec) select * from ls_evaluate

  8. # 殺掉執行時間超過2秒的語句
  9. # bin/pt-kill -uroot -pcnstrong#123454321 -S /data/mysql01/mysql.sock --busy-time 2 --kill

  10. # SQL會話被斷開
  11. >select * from ls_evaluate;
  12. ERROR 2013 (HY000): Lost connection to MySQL server during query

  1. # 每隔10秒殺除資料庫中執行時間超過30秒的大查詢
  2. # bin/pt-kill -uroot -pcnstrong#123454321 -S /data/mysql01/mysql.sock --busy-time 30 --kill --interval 10

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

相關文章