percona-toolkit學習筆記(七)

  • 2019 年 10 月 5 日
  • 筆記

pt-fifo-split

功能:

模擬切割文件並通過管道傳遞給先入先出隊列而不用真正的切割文件

說明:

    pt-fifo-split讀取大文件中的數據並列印到fifo文件,每次達到指定行數就往fifo文件中列印一個EOF字元,讀取完成以後,關閉掉fifo文件並移走,然後重建fifo文件,列印更多的行。這樣可以保證你每次讀取的時候都能讀取到制定的行數直到讀取完成。注意此工具只能工作在類unix作業系統。這個程式對大文件的數據導入資料庫非常有用,具體參考:https://www.percona.com/blog/2008/07/03/how-to-load-large-files-safely-into-innodb-with-load-data-infile/

實例:

一次讀取100行記錄

    pt-fifo-split–lines 100 /root/all.sql

    while[ -e /tmp/pt-fifo-split ]; do cat /tmp/pt-fifo-split; done

pt-find

功能:Find MySQL tables and executeactions, like GNU find

說明:

    pt-findsearches for MySQL tables and executes actions, like GNU find.  The default action is to print the databaseand table name.

實例:

pt-find –ctime -1 –engine MyISAM-uroot -proot -h localhost  # 列出創建時間小於1天且使用MyISAM引擎的數據表

pt-find –engine InnoDB -uroot-proot -h localhost              # 列出InnoDB引擎的表

pt-find –ctime -1 -uroot -proot-h localhost –exec-plus "drop table %s"  # 將找到的符合條件的table刪除掉

pt-find –tablesize +500M -uroot-proot -h localhost               # 列出總大小超過500M的表

pt-find hellodb -uroot -proot -hlocalhost       # 列出hellodb庫里的所有表

pt-find –printf"%Tt%D.%Nn"  -uroot -proot -hlocalhost | sort -rn # 列出所有表的total data and index size,並從大到小排序

pt-fingerprint

功能:Convert queries into fingerprints.

用於生成查詢指紋。主要將將sql查詢生成queryID,pt-query-digest中的ID即是通過此工具來完成的。 類似於Oracle中的SQL_ID,涉及綁定變數,字面量等

說明:

    pt-findsearches for MySQL tables and executes actions, like GNU find.  The default action is to print the databaseand table name.

實例:

    #pt-fingerprint –query "select a,b,c from hellodb.students wherestuid=22"

pt-ioprofile

功能:pt-ioprofile的原理是對某個pid附加一個strace進程進行IO分析

    pt-ioprofileuses "strace" and "lsof" to watch a process』s IO and printout a table of files and I/O activity. By default, it watches the mysqld process for 30 seconds.

pt-kill

功能:Kill掉符合指定條件mysql語句

官方示例:

Kill queries runninglonger than 60s:

# pt-kill –busy-time 60 –kill

Print, do not kill,queries running longer than 60s:

# pt-kill –busy-time 60 –print

Check for sleepingprocesses and kill them all every 10s:

# pt-kill –match-command Sleep–kill –victims all –interval 10

Print all loginprocesses:

# pt-kill –match-state login–print –victims all

See which queries inthe processlist right now would match:

# mysql -e "SHOWPROCESSLIST" > proclist.txt

# pt-kill –test-matchingproclist.txt –busy-time 60 –print

pt-stalk

功能:用於收集mysql資料庫故障時的相關資訊便於後續診斷處理。Collect forensic data about MySQLwhen problems occur

pt-stalk等待觸發條件觸發,然後收集數據幫助錯誤診斷,它被設計成使用root許可權運行的守護進程,因此你可以診斷那些你不能直接觀察的間歇性問題。默認的診斷觸發條件為SHOW GLOBAL STATUS。也可以指定processlist為診斷觸發條件,使用–function參數指定。

範例1:指定診斷觸發條件為status,同時運行語句超過20的時候觸發,收集的數據存放在/tmp/test目錄下:

# pt-stalk  –function status

–variable Threads_running–threshold 20

–dest /tmp/test — -uroot -proot -h192.168.2.11

範例2:指定診斷觸發條件為processlist,超過20個狀態為statistics觸發,收集的數據存放在/tmp/test目錄下:

# pt-stalk  –function processlist

–variable State –matchstatistics –threshold 20

–dest /tmp/test — -uroot -proot -h192.168.2.11