From 84f7f64edbbd4918826a06235a3a4b858a5fc471 Mon Sep 17 00:00:00 2001 From: Ti Chi Robot Date: Fri, 8 Sep 2023 12:03:43 +0800 Subject: [PATCH] br: adjust default tidb global config for br (#45794) (#46192) 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 321540703d75d..d96f129036114 100644 --- a/br/pkg/task/restore.go +++ b/br/pkg/task/restore.go @@ -1111,6 +1111,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 }