tikv: increase batch split region limit (#254)

Signed-off-by: nolouch <nolouch@gmail.com>
This commit is contained in:
ShuNing 2021-07-27 18:57:43 +08:00 committed by GitHub
parent 7329876df3
commit 1279692fc2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ import (
"go.uber.org/zap"
)
const splitBatchRegionLimit = 16
const splitBatchRegionLimit = 2048
func equalRegionStartKey(key, regionStartKey []byte) bool {
return bytes.Equal(key, regionStartKey)