github.com/pingcap/tiflow@v0.0.0-20240520035814-5bf52d54e205/dm/tests/print_status/conf/diff_config.toml (about)

     1  # diff Configuration.
     2  
     3  check-thread-count = 4
     4  
     5  export-fix-sql = true
     6  
     7  check-struct-only = false
     8  
     9  [task]
    10      output-dir = "/tmp/ticdc_dm_test/output"
    11  
    12      source-instances = ["mysql1"]
    13  
    14      target-instance = "tidb0"
    15  
    16      target-check-tables = ["print_status.t?*"]
    17  
    18      target-configs= ["config1"]
    19  
    20  [table-configs]
    21  [table-configs.config1]
    22  target-tables = ["print_status.t_1"]
    23  # currently ignore check float and timestamp field
    24  ignore-columns = ["c5", "c9", "c11", "c15"]
    25  
    26  [data-sources]
    27  [data-sources.mysql1]
    28  host = "127.0.0.1"
    29  port = 3306
    30  user = "root"
    31  password = "123456"
    32  
    33  [data-sources.tidb0]
    34  host = "127.0.0.1"
    35  port = 4000
    36  user = "test"
    37  password = "123456"