From d743d05a38701b754ba6676a05a03d239ca5c111 Mon Sep 17 00:00:00 2001 From: Jianjun Liao <36503113+Leavrth@users.noreply.github.com> Date: Thu, 17 Aug 2023 19:23:02 +0800 Subject: [PATCH] br: adjust default tidb global config for br (#45794) close pingcap/tidb#45793 --- br/pkg/task/restore.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/br/pkg/task/restore.go b/br/pkg/task/restore.go index b7a04f2426992..bd0a0906ae561 100644 --- a/br/pkg/task/restore.go +++ b/br/pkg/task/restore.go @@ -1117,6 +1117,10 @@ func enableTiDBConfig() func() { // when upstream and downstream both set this value greater than default(3072) conf.MaxIndexLength = config.DefMaxOfMaxIndexLength log.Warn("set max-index-length to max(3072*4) to skip check index length in DDL") + conf.IndexLimit = config.DefMaxOfIndexLimit + log.Warn("set index-limit to max(64*8) to skip check index count in DDL") + conf.TableColumnCountLimit = config.DefMaxOfTableColumnCountLimit + log.Warn("set table-column-count to max(4096) to skip check column count in DDL") }) return restoreConfig }