pt-archiver 是 pt-toolkit 中的一個工具,用于歸檔,傳送數(shù)據(jù)至下線數(shù)據(jù)庫,或者其他數(shù)據(jù)庫
成都創(chuàng)新互聯(lián)公司是一家集網(wǎng)站建設(shè),咸陽企業(yè)網(wǎng)站建設(shè),咸陽品牌網(wǎng)站建設(shè),網(wǎng)站定制,咸陽網(wǎng)站建設(shè)報價,網(wǎng)絡(luò)營銷,網(wǎng)絡(luò)優(yōu)化,咸陽網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強企業(yè)競爭力??沙浞譂M足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時我們時刻保持專業(yè)、時尚、前沿,時刻以成就客戶成長自我,堅持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實用型網(wǎng)站。
Examples
Archive all rows from oltp_server to olap_server and to a file:
pt-archiver --source h=oltp_server,D=test,t=tbl --dest h=olap_server \
--file '/var/log/archive/%Y-%m-%d-%D.%t' \
--where "1=1" --limit 1000 --commit-each
Purge (delete) orphan rows from child table:
pt-archiver --source h=host,D=db,t=child --purge \
--where 'NOT EXISTS(SELECT * FROM parent WHERE col=child.col)'
示例:
root@python-develpment:~# pt-archiver --source h=192.168.134.186,P=3306,u=pt-archive,p=123456,D=pcik_log_dep,t=t_user_login --where='logintime<"2017-05-05"' --file='a.txt' --statistics --charset=utf8 --no-delete --progress=500 --limit=2000 --optimize=ture --txn-size=20000
--source源數(shù)據(jù)庫,后面的參數(shù)用‘,’隔開
--where過濾數(shù)據(jù)
-statistics執(zhí)行完成后顯示統(tǒng)計信息
Started at 2017-08-10T12:14:36, ended at 2017-08-10T12:14:39
Source: A=utf8,D=pcik_log_dep,P=3306,h=192.168.134.186,p=...,t=t_user_login,u=pt- archive
SELECT 50281
INSERT 0
DELETE 0
Action Count Time Pct
select 27 0.8560 24.15
print_file 50281 0.3907 11.02
commit 3 0.0014 0.04
other 0 2.2968 64.79
--file歸檔到本地(文件格式和select into outfile 一樣,導(dǎo)入時使用load data infile 默認(rèn)即可)
--no-delete默認(rèn)是會刪除源數(shù)據(jù)庫數(shù)據(jù)的,加上此參數(shù)后將不刪除源數(shù)據(jù)庫數(shù)據(jù),
--progress每完成多少行數(shù)據(jù)就會給出提示
TIME ELAPSED COUNT
2017-08-10T12:14:36 0 0
2017-08-10T12:14:36 0 500
2017-08-10T12:14:36 0 1000
2017-08-10T12:14:36 0 1500
2017-08-10T12:14:36 0 2000
--limit 指定select 每次查詢的數(shù)量(改變此值可優(yōu)化速度)
--txn-size=20000 當(dāng) --file時 不能用 --commit-each ,可設(shè)置此值加快速度
歸檔并傳送至其他服務(wù)器
pt-archiver --source h=192.168.134.186,P=3306,u=pt-archive,p=123456,D=pcik_log_dep,t=t_user_login --where='logintime<"2017-05-05"' --file='a.txt' --statistics --charset=utf8 --no-delete --progress=500 --limit=20000 --optimize=ture --txn-size=20000 --dest h=192.168.134.186,P=3308,u=root,p=123456 --bulk-insert
--bulk-insert 加快dest 服務(wù)器插入數(shù)據(jù)速度