Skip to content

Commit

Permalink
fix(kv/config): set SchedulerHeartbeatTickInterval to ten seconds (#394)
Browse files Browse the repository at this point in the history
Co-authored-by: Connor <[email protected]>
  • Loading branch information
Moonm3n and Connor1996 authored Jun 30, 2022
1 parent a187211 commit dae8650
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kv/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func NewDefaultConfig() *Config {
// Assume the average size of entries is 1k.
RaftLogGcCountLimit: 128000,
SplitRegionCheckTickInterval: 10 * time.Second,
SchedulerHeartbeatTickInterval: 100 * time.Millisecond,
SchedulerHeartbeatTickInterval: 10 * time.Second,
SchedulerStoreHeartbeatTickInterval: 10 * time.Second,
RegionMaxSize: 144 * MB,
RegionSplitSize: 96 * MB,
Expand Down

0 comments on commit dae8650

Please sign in to comment.