DM 分库分表合并场景

本文介绍如何在分库分表合并场景中使用 Data Migration (DM)。使用场景中,三个上游 MySQL 实例的分库和分表数据需要迁移至下游 TiDB 集群。

上游实例

假设上游库结构如下:

  • 实例 1

    SchemaTables
    userinformation, log_north, log_bak
    store_01sale_01, sale_02
    store_02sale_01, sale_02
  • 实例 2

    SchemaTables
    userinformation, log_east, log_bak
    store_01sale_01, sale_02
    store_02sale_01, sale_02
  • 实例 3

    SchemaTables
    userinformation, log_south, log_bak
    store_01sale_01, sale_02
    store_02sale_01, sale_02

迁移需求

  1. 同名表合并场景,比如将三个实例中的 user.information 表合并至下游 TiDB 中的 user.information 表。
  2. 不同名表合并场景,比如将三个实例中的 user.log_{north|south|east} 表合并至下游 TiDB 中的 user.log_{north|south|east} 表。
  3. 分片表合并场景,比如将三个实例中的 store_{01|02}.sale_{01|02} 表合并至下游 TiDB 中的 store.sale 表。
  4. 过滤删除操作场景,比如过滤掉三个实例中 user.log_{north|south|east} 表的所有删除操作。
  5. 过滤删除操作场景,比如过滤掉三个实例中 user.information 表的所有删除操作。
  6. 过滤删除操作场景,比如过滤掉三个实例中 store_{01|02}.sale_{01|02} 表的所有删除操作。
  7. 使用通配符过滤特定表的场景,比如使用通配符 user.log_* 过滤掉三个实例的 user.log_bak 表。
  8. 主键冲突处理场景,假设 store_{01|02}.sale_{01|02} 表带有 bigint 型的自增主键,将其合并至 TiDB 时会引发冲突,可以使用相应的方案来避免冲突。

下游实例

假设迁移后下游库结构如下:

SchemaTables
userinformation, log_north, log_east, log_south
storesale

迁移方案

  • 要满足迁移需求 #1 和 #2,配置 Table routing 规则 如下:

    routes: ... user-route-rule: schema-pattern: "user" target-schema: "user"
  • 要满足迁移需求 #3,配置 table routing 规则 如下:

    routes: ... store-route-rule: schema-pattern: "store_*" target-schema: "store" sale-route-rule: schema-pattern: "store_*" table-pattern: "sale_*" target-schema: "store" target-table: "sale"
  • 要满足迁移需求 #4 和 #5,配置 Binlog event filter 规则 如下:

    filters: ... user-filter-rule: schema-pattern: "user" events: ["truncate table", "drop table", "delete", "drop database"] action: Ignore
  • 要满足迁移需求 #6,配置 Binlog event filter 规则 如下:

    filters: ... sale-filter-rule: schema-pattern: "store_*" table-pattern: "sale_*" events: ["truncate table", "drop table", "delete"] action: Ignore store-filter-rule: schema-pattern: "store_*" events: ["drop database"] action: Ignore
  • 要满足迁移需求 #7,配置 Block & Allow Lists 如下:

    block-allow-list: # 如果 DM 版本 <= v1.0.6 则使用 black-white-list log-bak-ignored: ignore-tables: - db-name: "user" tbl-name: "log_bak"
  • 要满足迁移需求 #8,首先参考自增主键冲突处理来解决冲突,保证在迁移到下游时不会因为分表中有相同的主键值而使迁移出现异常,然后需要配置 ignore-checking-items 来跳过自增主键冲突的检查:

    ignore-checking-items: ["auto_increment_ID"]

迁移任务配置

迁移任务的完整配置如下。详情请参阅 Data Migration 任务配置文件

name: "shard_merge" task-mode: all meta-schema: "dm_meta" remove-meta: false ignore-checking-items: ["auto_increment_ID"] target-database: host: "192.168.0.1" port: 4000 user: "root" password: "" mysql-instances: - source-id: "instance-1" route-rules: ["user-route-rule", "store-route-rule", "sale-route-rule"] filter-rules: ["user-filter-rule", "store-filter-rule", "sale-filter-rule"] block-allow-list: "log-bak-ignored" # 如果 DM 版本 <= v1.0.6 则使用 black-white-list mydumper-config-name: "global" loader-config-name: "global" syncer-config-name: "global" - source-id: "instance-2" route-rules: ["user-route-rule", "store-route-rule", "sale-route-rule"] filter-rules: ["user-filter-rule", "store-filter-rule", "sale-filter-rule"] block-allow-list: "log-bak-ignored" # 如果 DM 版本 <= v1.0.6 则使用 black-white-list mydumper-config-name: "global" loader-config-name: "global" syncer-config-name: "global" - source-id: "instance-3" route-rules: ["user-route-rule", "store-route-rule", "sale-route-rule"] filter-rules: ["user-filter-rule", "store-filter-rule", "sale-filter-rule"] block-allow-list: "log-bak-ignored" # 如果 DM 版本 <= v1.0.6 则使用 black-white-list mydumper-config-name: "global" loader-config-name: "global" syncer-config-name: "global" # 所有实例共享的其他通用配置 routes: user-route-rule: schema-pattern: "user" target-schema: "user" store-route-rule: schema-pattern: "store_*" target-schema: "store" sale-route-rule: schema-pattern: "store_*" table-pattern: "sale_*" target-schema: "store" target-table: "sale" filters: user-filter-rule: schema-pattern: "user" events: ["truncate table", "drop table", "delete", "drop database"] action: Ignore sale-filter-rule: schema-pattern: "store_*" table-pattern: "sale_*" events: ["truncate table", "drop table", "delete"] action: Ignore store-filter-rule: schema-pattern: "store_*" events: ["drop database"] action: Ignore block-allow-list: # 如果 DM 版本 <= v1.0.6 则使用 black-white-list log-bak-ignored: ignore-tables: - db-name: "user" tbl-name: "log_bak" mydumpers: global: threads: 4 chunk-filesize: 64 skip-tz-utc: true loaders: global: pool-size: 16 dir: "./dumped_data" syncers: global: worker-count: 16 batch: 100 max-retry: 100
下载 PDF
产品
TiDB
TiDB Cloud
© 2024 PingCAP. All Rights Reserved.
Privacy Policy.