sync-diff-inspector配置不生效

【 TiDB 使用环境】生产环境 /测试/ Poc
【 TiDB 版本】
【复现路径】做过哪些操作出现的问题
【遇到的问题:问题现象及影响】

我的上游是TIDB 6.1,下游是MYSQL PerconaServer 5.7,然后在sync-diff-inspector中设置了忽略josn,但是似乎不生效?我的sync-diff-inspector配置如下

# Diff Configuration.

######################### Global config #########################

check-thread-count = 4

export-fix-sql = true

check-struct-only = false


######################### Datasource config #########################
[data-sources]
[data-sources.tidb1]
    host = "10.x.x.x"
    port = 4000
    user = "xxx"
    password = "xxx"


[data-sources.mysql1]
    host = "10.x.x.x"
    port = 3308
    user = "xxx"
    password = "xxx"


########################### Routes ###########################

######################### Task config #########################

[task]

    output-dir = "./output"

    source-instances = ["tidb1"]

    target-instance = "mysql1"

    target-check-tables = ["db1.*", "test.*" ]

    target-configs = ["config1"]

######################### Table config #########################

[table-configs.config1]

  target-tables = ["db1.*"]
  ignore-columns = ["json","bit","blob"]


【资源配置】
【附件:截图/日志/监控】

有一些版本 xor 对 json 格式的字段算的结果不对,因此要跳过。

你可以先试试不跳过。

我已经配置了ignore-columns ,json也被忽略了,但是实际输出的output目录的日志里还报警告说找到不一致的行,我查看了这些不一致的行,就是json类型的字段数据有差异,其他字段都正常

这里配置的应该是列名吧。不是字段类型

此话题已在最后回复的 60 天后被自动关闭。不再允许新回复。