MySQL使用pt-archiver歸檔歷史資料

feelpurple發表於2018-03-22
pt-archiver可以將表按照指定條件歸檔到歷史資料庫中,也支援檔案匯出,對於歸檔清理線上歷史資料非常方便。
如果要歸檔表的資料到歷史資料庫的表中,需要預先在歷史資料庫中建立表結構。

(1) 按照條件歸檔表中的歷史資料到歷史資料中,同時在本地生成歸檔檔案

  1. # 在歷史資料庫(192.168.56.102)中建立歸檔表
  2. mysql> CREATE TABLE `emp` (
  3.     -> `id` int(11) NOT NULL,
  4.     -> `name` varchar(15) DEFAULT NULL,
  5.     -> PRIMARY KEY (`id`)
  6.     -> ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  7. Query OK, 0 rows affected (0.60 sec)

  8. # 檢視源表
  9. mysql> select * from emp;
  10. +--------+---------+
  11. | id | name |
  12. +--------+---------+
  13. | 10 | Neo |
  14. | 10036 | test |
  15. | 10037 | test |
  16. | 10038 | test |
  17. | 10039 | test |
  18. | 10040 | MySQL01 |
  19. | 10041 | MySQL01 |
  20. | 10042 | MySQL01 |
  21. | 100100 | test |
  22. | 100101 | test |
  23. | 100103 | test |
  24. | 100104 | test |
  25. | 100105 | test |
  26. | 100106 | test |
  27. | 100107 | test |
  28. | 100108 | test |
  29. +--------+---------+

  30. # 歸檔id小於200000的資料到歷史庫和本地檔案
  31. # pt-archiver --source h=192.168.56.101,P=3307,u=neo,p=neo,D=sale,t=emp --dest h=192.168.56.102,P=3306,u=sale,p=sale,D=test,t=emp --where "id<=200000" --charset=utf8 --limit 1000 --commit-each --file '/opt/%Y-%m-%d-%D.%t'

  32. # 檢視源表
  33. mysql> select * from emp where id < 200000;
  34. Empty set (0.05 sec)

  35. # 檢視歷史表
  36. mysql> select * from emp limit 2;
  37. +--------+------+
  38. | id | name |
  39. +--------+------+
  40. | 100100 | test |
  41. | 100101 | test |
  42. +--------+------+
  43. 2 rows in set (0.00 sec)

  44. # 檢視本地歸檔檔案(相當於select ... into匯出)
  45. # cat /opt/2018-03-19-sale.emp
  46. 10    Neo
  47. 10036    test
  48. 10037    test
  49. 10038    test
  50. 10039    test
  51. 10040    MySQL01
  52. 10041    MySQL01
  53. 10042    MySQL01

(2) 清理過期歷史資料

  1. # pt-archiver --source h=192.168.56.101,P=3306,u=neo,p=neo,D=test,t=item_order --where "order_date < '2018-03-01'" --charset=utf8 --purge --limit 1000 --commit-each

  2. # 檢視清理後的表中資料
  3. mysql> select * from item_order where order_date < '2018-03-01';
  4. Empty set (0.00 sec)


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

相關文章