不同库名或表名的数据校验

当你在使用 TiDB DM 等同步工具时,可以设置 route-rules 将数据同步到下游指定表中。sync-diff-inspector 通过设置 rules 提供了校验不同库名、表名的表的功能。

下面是一个简单的配置文件说明,要了解完整配置,请参考 sync-diff-inspector 用户文档

  1. ######################### Datasource config #########################
  2. [data-sources.mysql1]
  3. host = "127.0.0.1"
  4. port = 3306
  5. user = "root"
  6. password = ""
  7. route-rules = ["rule1"]
  8. [data-sources.tidb0]
  9. host = "127.0.0.1"
  10. port = 4000
  11. user = "root"
  12. password = ""
  13. ########################### Routes ###########################
  14. [routes.rule1]
  15. schema-pattern = "test_1" # 匹配数据源的库名,支持通配符 "*" 和 "?"
  16. table-pattern = "t_1" # 匹配数据源的表名,支持通配符 "*" 和 "?"
  17. target-schema = "test_2" # 目标库名
  18. target-table = "t_2" # 目标表名

使用该配置会对下游的 test_2.t_2 与实例 mysql1 中的 test_1.t_1 进行校验。

如果需要校验大量的不同库名或者表名的表,也可以通过 rules 设置映射关系来简化配置。可以只配置 schema 或者 table 的映射关系,也可以都配置。例如上游库 test_1 中的所有表都同步到了下游的 test_2 库中,可以使用如下配置进行校验:

  1. ######################### Datasource config #########################
  2. [data-sources.mysql1]
  3. host = "127.0.0.1"
  4. port = 3306
  5. user = "root"
  6. password = ""
  7. route-rules = ["rule1"]
  8. [data-sources.tidb0]
  9. host = "127.0.0.1"
  10. port = 4000
  11. user = "root"
  12. password = ""
  13. ########################### Routes ###########################
  14. [routes.rule1]
  15. schema-pattern = "test_1" # 匹配数据源的库名,支持通配符 "*" 和 "?"
  16. table-pattern = "*" # 匹配数据源的表名,支持通配符 "*" 和 "?"
  17. target-schema = "test_2" # 目标库名
  18. target-table = "t_2" # 目标表名

注意事项

如果上游数据库有 test_2.t_2 也会被下游数据库匹配到。