TIDB7.3备份还原数据时报 'new_collation_enabled' not match

【 TiDB 使用环境】生产环境
【 TiDB 版本】7.5.3
【复现路径】
【遇到的问题:问题现象及影响】
1. 在集群A上做全量备份(集群A版本 7.5.3 , 由是5.1升级为7.5.3)
2. 把备份数据还原到集群B版本7.5.3 出错 ,‘new_collation_enabled’ not match

3. 检查集群A上是 
   集群A: new_collation_enabled = False
     select * from mysql.tidb where VARIABLE_NAME like '%new_collation_enabled%';

   集群B: new_collation_enabled = TRUE 

4.请问如何解决
   是把集群B new_collations_enabled_on_first_bootstrap也改为False么? 
   service_configs:
      tidb:
        new_collations_enabled_on_first_bootstrap: FALSE 

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

网上资料: https://docs.pingcap.com/zh/tidb/stable/backup-and-restore-faq#恢复时为什么会报-new_collation_enabled-不匹配

new_collations_enabled_on_first_bootstrap这个参数只有初始创建集群的时候才可以指定,你的集群B能重建吗。。。

你查的是对的,但是这个只能在新建集群的时候设置,之后是不允许修改的。即使配置文件改了,也不会生效。