Skip to content

Commit

Permalink
br: adjust default tidb global config for br (#45794) (#46192)
Browse files Browse the repository at this point in the history
close #45793
  • Loading branch information
ti-chi-bot authored Sep 8, 2023
1 parent 5c47f11 commit 84f7f64
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions br/pkg/task/restore.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 84f7f64

Please sign in to comment.