当前位置:   article > 正文

MySql开源闪回工具MyFlash —— 筑梦之路

MySql开源闪回工具MyFlash —— 筑梦之路

github官网:https://github.com/Meituan-Dianping/MyFlash

简介

MyFlash是由美团点评公司技术工程部开发维护的一个回滚DML操作的工具。该工具通过解析v4版本的binlog,完成回滚操作。相对已有的回滚工具,其增加了更多的过滤选项,让回滚更加容易。

前提条件

开启binlog,binlog格式必须为ROW,且binlog_row_image必须为full。

适用于MySQL5.6、5.7,MySQL8.0测试也可以正常使用。

编译安装

  1. unzip MyFlash-master.zip
  2. cd MyFlash-master
  3. yum install glib2-devel -y
  4. # 动态编译
  5. gcc -w `pkg-config --cflags --libs glib-2.0` source/binlogParseGlib.c -o binary/flashback

 如何使用

  1. cd binary
  2. ./flashback --help
  3. Usage:
  4. flashback [OPTION...]
  5. Help Options:
  6. -?, --help Show help options
  7. Application Options:
  8. --databaseNames databaseName to apply. if multiple, seperate by comma(,)
  9. --tableNames tableName to apply. if multiple, seperate by comma(,)
  10. --start-position start position
  11. --stop-position stop position
  12. --start-datetime start time (format %Y-%m-%d %H:%M:%S)
  13. --stop-datetime stop time (format %Y-%m-%d %H:%M:%S)
  14. --sqlTypes sql type to filter . support INSERT, UPDATE ,DELETE. if multiple, seperate by comma(,)
  15. --maxSplitSize max file size after split, the uint is M
  16. --binlogFileNames binlog files to process. if multiple, seperate by comma(,)
  17. --outBinlogFileNameBase output binlog file name base
  18. --logLevel log level, available option is debug,warning,error
  19. --include-gtids gtids to process
  20. --exclude-gtids gtids to skip
  21. --------------------------------
  22. 参数使用说明:
  23. databaseNames
  24. 指定需要回滚的数据库名。多个数据库可以用“,”隔开。如果不指定该参数,相当于指定了所有数据库。
  25. tableNames
  26. 指定需要回滚的表名。多个表可以用“,”隔开。如果不指定该参数,相当于指定了所有表。
  27. start-position
  28. 指定回滚开始的位置。如不指定,从文件的开始处回滚。请指定正确的有效的位置,否则无法回滚。
  29. stop-position
  30. 指定回滚结束的位置。如不指定,回滚到文件结尾。请指定正确的有效的位置,否则无法回滚。
  31. start-datetime
  32. 指定回滚的开始时间。注意格式必须是 %Y-%m-%d %H:%M:%S。如不指定,则不限定时间。
  33. stop-datetime
  34. 指定回滚的结束时间。注意格式必须是 %Y-%m-%d %H:%M:%S。如不指定,则不限定时间。
  35. sqlTypes
  36. 指定需回滚的sql类型。目前支持的过滤类型是INSERT, UPDATE ,DELETE。多个类型可以用“,”隔开。
  37. maxSplitSize
  38. 一旦指定该参数,对文件进行固定尺寸的分割(单位为M),过滤条件有效,但不进行回滚操作。该参数主要用来将大的binlog文件切割,防止单次应用的binlog尺寸过大,对线上造成压力。
  39. binlogFileNames
  40. 指定需要回滚的binlog文件,目前只支持单个文件,后续会增加多个文件支持。经测试已支持多个binlog文件。
  41. outBinlogFileNameBase
  42. 指定输出的binlog文件前缀,如不指定,则默认为binlog_output_base.flashback。
  43. logLevel
  44. 仅供开发者使用,默认级别为error级别。在生产环境中不要修改这个级别,否则输出过多。
  45. include-gtids
  46. 指定需要回滚的gtid,支持gtid的单个和范围两种形式。
  47. exclude-gtids
  48. 指定不需要回滚的gtid,用法同include-gtids。

 测试验证

环境说明:mysql 8.0

1. 启用新的binlog文件,并模拟删除数据

  1. mysql> select * from test1;
  2. +----+----------+
  3. | id | name |
  4. +----+----------+
  5. | 1 | zhangsan |
  6. | 2 | back |
  7. | 3 | liba |
  8. +----+----------+
  9. 3 rows in set (0.03 sec)
  10. mysql> flush logs;
  11. Query OK, 0 rows affected (0.22 sec)
  12. mysql> delete from test1 where id =3;
  13. Query OK, 1 row affected (0.01 sec)
  14. mysql> select * from test1;
  15. +----+----------+
  16. | id | name |
  17. +----+----------+
  18. | 1 | zhangsan |
  19. | 2 | back |
  20. +----+----------+
  21. 2 rows in set (0.00 sec)

2. 通过MyFlash解析闪回文件并执行

  1. ./flashback --databaseNames=testdb --tableNames=test1 --start-datetime='2024-05-10 15:00:00' --stop-datetime='2024-05-10 16:00:00' --binlogFileNames=/home/my3306/log/mysql-bin.000210 --outBinlogFileNameBase=test1back
  2. mysqlbinlog -vv --skip-gtids test1back.flashback |mysql -uroot -p'xxxxxx' -S /home/my3306/run/mysql.sock
  3. mysql: [Warning] Using a password on the command line interface can be insecure.

3. 检查验证

  1. mysql> select * from test1;
  2. +----+----------+
  3. | id | name |
  4. +----+----------+
  5. | 1 | zhangsan |
  6. | 2 | back |
  7. | 3 | liba |
  8. +----+----------+
  9. 3 rows in set (0.00 sec)

4. 测试恢复执行多个binlog文件

1)每次删除都启用新的binlog文件

  1. mysql> select * from test1;
  2. +----+----------+
  3. | id | name |
  4. +----+----------+
  5. | 1 | zhangsan |
  6. | 2 | back |
  7. | 3 | liba |
  8. +----+----------+
  9. 3 rows in set (0.00 sec)
  10. mysql> flush logs;
  11. Query OK, 0 rows affected (0.02 sec)
  12. mysql> delete from test1 where id =1;
  13. Query OK, 1 row affected (0.01 sec)
  14. mysql> flush logs;
  15. Query OK, 0 rows affected (0.01 sec)
  16. mysql> delete from test1 where id =2;
  17. Query OK, 1 row affected (0.00 sec)
  18. mysql> flush logs;
  19. Query OK, 0 rows affected (0.02 sec)
  20. mysql> delete from test1 where id =3;
  21. Query OK, 1 row affected (0.01 sec)
  22. mysql>
  23. mysql> select * from test1;
  24. Empty set (0.00 sec)

2)通过MyFlash解析多个binlog文件,并一块恢复

  1. ./flashback --databaseNames=testdb --tableNames=test1 --start-datetime='2023-08-02 15:00:00' --stop-datetime='2023-08-02 16:00:00' --binlogFileNames=/home/my3306/log/mysql-bin.000211,/home/my3306/log/mysql-bin.000212,/home/my3306/log/mysql-bin.000213 --outBinlogFileNameBase=test1back
  2. ls
  3. flashback test1back.flashback test1back.flashback.000001 test1back.flashback.000002
  4. mysqlbinlog -vv --skip-gtids test1back.flashback test1back.flashback.000001 test1back.flashback.000002 |mysql -uroot -p'xxxxxx' -S /home/my3306/run/mysql.sock
  5. mysql: [Warning] Using a password on the command line interface can be insecure.

 3)检查验证数据

  1. mysql> select * from test1;
  2. +----+----------+
  3. | id | name |
  4. +----+----------+
  5. | 1 | zhangsan |
  6. | 2 | back |
  7. | 3 | liba |
  8. +----+----------+
  9. 3 rows in set (0.00 sec)

与同类型工具binlog2sql比较

  • MyFlash工具需要结合mysqlbinlog解析确认需要恢复数据的精确位点,而binlog2sql可以解析为sql语句,更方便确认所需的回滚数据,方便易用。

  • binlog2sql可以生成回滚sql和未回滚sql,MyFlash只能生成回滚binlog,未回滚binlog结合mysqlbinlog解析生成。

  • binlog2sql需要python安装环境,自测mysql8使用过程中因为回滚数据不同,可能出现字符集相关的问题,MyFlash运行比较稳定。

  • 小数据量可以使用binlog2sql进行恢复,大量数据建议使用MyFlash,官方测试100万数据,MyFlash恢复用2.7秒,binlog2sql用581.3秒。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/557568
推荐阅读
相关标签
  

闽ICP备14008679号