Skip to content

Commit

Permalink
statistics: fix empty region count when resuming (#7009) (#7055)
Browse files Browse the repository at this point in the history
close #7008

Signed-off-by: ti-chi-bot <ti-community-prow-bot@tidb.io>
Signed-off-by: Cabinfever_B <cabinfeveroier@gmail.com>

Co-authored-by: Yongbo Jiang <cabinfeveroier@gmail.com>
Co-authored-by: Cabinfever_B <cabinfeveroier@gmail.com>
  • Loading branch information
ti-chi-bot and CabinfeverB committed Sep 12, 2023
1 parent 11f71ee commit 8c5859e
Show file tree
Hide file tree
Showing 8 changed files with 31 additions and 53 deletions.
4 changes: 2 additions & 2 deletions server/api/stats_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ func (suite *statsTestSuite) TestRegionStats() {
statsAll := &statistics.RegionStats{
Count: 4,
EmptyCount: 1,
StorageSize: 351,
StorageSize: 350,
StorageKeys: 221,
StoreLeaderCount: map[uint64]int{1: 1, 4: 2, 5: 1},
StorePeerCount: map[uint64]int{1: 3, 2: 1, 3: 1, 4: 2, 5: 2},
Expand All @@ -150,7 +150,7 @@ func (suite *statsTestSuite) TestRegionStats() {
stats23 := &statistics.RegionStats{
Count: 2,
EmptyCount: 1,
StorageSize: 201,
StorageSize: 200,
StorageKeys: 151,
StoreLeaderCount: map[uint64]int{4: 1, 5: 1},
StorePeerCount: map[uint64]int{1: 2, 4: 1, 5: 2},
Expand Down
4 changes: 3 additions & 1 deletion server/cluster/cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -843,7 +843,9 @@ func (c *RaftCluster) processRegionHeartbeat(region *core.RegionInfo) error {
if err != nil {
return err
}
region.Inherit(origin, c.storeConfigManager.GetStoreConfig().IsEnableRegionBucket())
if c.GetStoreConfig().IsEnableRegionBucket() {
region.InheritBuckets(origin)
}

c.hotStat.CheckWriteAsync(statistics.NewCheckExpiredItemTask(region))
c.hotStat.CheckReadAsync(statistics.NewCheckExpiredItemTask(region))
Expand Down
26 changes: 12 additions & 14 deletions server/core/region.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,9 @@ const (
func RegionFromHeartbeat(heartbeat *pdpb.RegionHeartbeatRequest, opts ...RegionCreateOption) *RegionInfo {
// Convert unit to MB.
// If region isn't empty and less than 1MB, use 1MB instead.
// The size of empty region will be correct by the previous RegionInfo.
regionSize := heartbeat.GetApproximateSize() / units.MiB
// Due to https://github.com/tikv/tikv/pull/11170, if region size is not initialized,
// approximate size will be zero, and region size is zero not EmptyRegionApproximateSize
if heartbeat.GetApproximateSize() > 0 && regionSize < EmptyRegionApproximateSize {
regionSize = EmptyRegionApproximateSize
}
Expand Down Expand Up @@ -188,19 +189,9 @@ func RegionFromHeartbeat(heartbeat *pdpb.RegionHeartbeatRequest, opts ...RegionC
return region
}

// Inherit inherits the buckets and region size from the parent region if bucket enabled.
// correct approximate size and buckets by the previous size if here exists a reported RegionInfo.
// See https://github.com/tikv/tikv/issues/11114
func (r *RegionInfo) Inherit(origin *RegionInfo, bucketEnable bool) {
// regionSize should not be zero if region is not empty.
if r.GetApproximateSize() == 0 {
if origin != nil {
r.approximateSize = origin.approximateSize
} else {
r.approximateSize = EmptyRegionApproximateSize
}
}
if bucketEnable && origin != nil && r.buckets == nil {
// InheritBuckets inherits the buckets from the parent region if bucket enabled.
func (r *RegionInfo) InheritBuckets(origin *RegionInfo) {
if origin != nil && r.buckets == nil {
r.buckets = origin.buckets
}
}
Expand Down Expand Up @@ -478,6 +469,13 @@ func (r *RegionInfo) GetApproximateSize() int64 {
return r.approximateSize
}

// IsEmptyRegion returns whether the region is empty.
func (r *RegionInfo) IsEmptyRegion() bool {
// When cluster resumes, the region size may be not initialized, but region heartbeat is send.
// So use `==` here.
return r.approximateSize == EmptyRegionApproximateSize
}

// GetApproximateKeys returns the approximate keys of the region.
func (r *RegionInfo) GetApproximateKeys() int64 {
return r.approximateKeys
Expand Down
31 changes: 2 additions & 29 deletions server/core/region_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -186,35 +186,9 @@ func TestSortedEqual(t *testing.T) {
}
}

func TestInherit(t *testing.T) {
func TestInheritBuckets(t *testing.T) {
re := require.New(t)
// size in MB
// case for approximateSize
testCases := []struct {
originExists bool
originSize uint64
size uint64
expect uint64
}{
{false, 0, 0, 1},
{false, 0, 2, 2},
{true, 0, 2, 2},
{true, 1, 2, 2},
{true, 2, 0, 2},
}
for _, testCase := range testCases {
var origin *RegionInfo
if testCase.originExists {
origin = NewRegionInfo(&metapb.Region{Id: 100}, nil)
origin.approximateSize = int64(testCase.originSize)
}
r := NewRegionInfo(&metapb.Region{Id: 100}, nil)
r.approximateSize = int64(testCase.size)
r.Inherit(origin, false)
re.Equal(int64(testCase.expect), r.approximateSize)
}

// bucket
data := []struct {
originBuckets *metapb.Buckets
buckets *metapb.Buckets
Expand All @@ -227,12 +201,11 @@ func TestInherit(t *testing.T) {
for _, d := range data {
origin := NewRegionInfo(&metapb.Region{Id: 100}, nil, SetBuckets(d.originBuckets))
r := NewRegionInfo(&metapb.Region{Id: 100}, nil)
r.Inherit(origin, true)
r.InheritBuckets(origin)
re.Equal(d.originBuckets, r.GetBuckets())
// region will not inherit bucket keys.
if origin.GetBuckets() != nil {
newRegion := NewRegionInfo(&metapb.Region{Id: 100}, nil)
newRegion.Inherit(origin, false)
re.NotEqual(d.originBuckets, newRegion.GetBuckets())
}
}
Expand Down
6 changes: 4 additions & 2 deletions server/statistics/region.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,12 @@ func (s *RegionStats) Observe(r *core.RegionInfo) {
s.Count++
approximateKeys := r.GetApproximateKeys()
approximateSize := r.GetApproximateSize()
if approximateSize <= core.EmptyRegionApproximateSize {
if approximateSize == core.EmptyRegionApproximateSize {
s.EmptyCount++
}
s.StorageSize += approximateSize
if !r.IsEmptyRegion() {
s.StorageSize += approximateSize
}
s.StorageKeys += approximateKeys
leader := r.GetLeader()
if leader != nil {
Expand Down
4 changes: 2 additions & 2 deletions server/statistics/region_collection.go
Original file line number Diff line number Diff line change
Expand Up @@ -198,15 +198,15 @@ func (r *RegionStatistics) Observe(region *core.RegionInfo, stores []*core.Store
DownPeer: len(region.GetDownPeers()) > 0,
PendingPeer: len(region.GetPendingPeers()) > 0,
LearnerPeer: len(region.GetLearners()) > 0,
EmptyRegion: region.GetApproximateSize() <= core.EmptyRegionApproximateSize,
EmptyRegion: region.IsEmptyRegion(),
OversizedRegion: region.IsOversized(
int64(r.storeConfigManager.GetStoreConfig().GetRegionMaxSize()),
int64(r.storeConfigManager.GetStoreConfig().GetRegionMaxKeys()),
),
UndersizedRegion: region.NeedMerge(
int64(r.opt.GetMaxMergeRegionSize()),
int64(r.opt.GetMaxMergeRegionKeys()),
),
) && region.GetApproximateSize() >= core.EmptyRegionApproximateSize,
}

for typ, c := range conditions {
Expand Down
5 changes: 3 additions & 2 deletions server/statistics/region_collection_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func TestRegionStatistics(t *testing.T) {
stores[3] = store3
r1 := &metapb.Region{Id: 1, Peers: peers, StartKey: []byte("aa"), EndKey: []byte("bb")}
r2 := &metapb.Region{Id: 2, Peers: peers[0:2], StartKey: []byte("cc"), EndKey: []byte("dd")}
region1 := core.NewRegionInfo(r1, peers[0])
region1 := core.NewRegionInfo(r1, peers[0], core.SetApproximateSize(1))
region2 := core.NewRegionInfo(r2, peers[0])
regionStats := NewRegionStatistics(opt, manager, nil)
regionStats.Observe(region1, stores)
Expand Down Expand Up @@ -103,7 +103,8 @@ func TestRegionStatistics(t *testing.T) {
re.Len(regionStats.stats[PendingPeer], 1)
re.Len(regionStats.stats[LearnerPeer], 1)
re.Len(regionStats.stats[OversizedRegion], 1)
re.Len(regionStats.stats[UndersizedRegion], 1)
re.Len(regionStats.stats[UndersizedRegion], 0)
re.Len(regionStats.stats[EmptyRegion], 0)
re.Len(regionStats.offlineStats[ExtraPeer], 1)
re.Empty(regionStats.offlineStats[MissPeer])
re.Len(regionStats.offlineStats[DownPeer], 1)
Expand Down
4 changes: 3 additions & 1 deletion tests/pdctl/scheduler/scheduler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import (
"github.com/stretchr/testify/require"
"github.com/tikv/pd/pkg/testutil"
"github.com/tikv/pd/server/config"
"github.com/tikv/pd/server/core"
"github.com/tikv/pd/server/versioninfo"
"github.com/tikv/pd/tests"
"github.com/tikv/pd/tests/pdctl"
Expand Down Expand Up @@ -128,7 +129,8 @@ func TestScheduler(t *testing.T) {
pdctl.MustPutStore(re, leaderServer.GetServer(), store)
}

pdctl.MustPutRegion(re, cluster, 1, 1, []byte("a"), []byte("b"))
// note: because pdqsort is a unstable sort algorithm, set ApproximateSize for this region.
pdctl.MustPutRegion(re, cluster, 1, 1, []byte("a"), []byte("b"), core.SetApproximateSize(10))
time.Sleep(3 * time.Second)

// scheduler show command
Expand Down

0 comments on commit 8c5859e

Please sign in to comment.