forked from tikv/pd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
namespace_cluster.go
134 lines (120 loc) · 3.51 KB
/
namespace_cluster.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
// Copyright 2017 PingCAP, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// See the License for the specific language governing permissions and
// limitations under the License.
package server
import (
"math/rand"
"github.com/pingcap/pd/server/core"
"github.com/pingcap/pd/server/namespace"
"github.com/pingcap/pd/server/schedule"
)
// namespaceCluster is part of a global cluster that contains stores and reigons
// within a specific namespace.
type namespaceCluster struct {
schedule.Cluster
classifier namespace.Classifier
namespace string
stores map[uint64]*core.StoreInfo
}
func newNamespaceCluster(c schedule.Cluster, classifier namespace.Classifier, namespace string) *namespaceCluster {
stores := make(map[uint64]*core.StoreInfo)
for _, s := range c.GetStores() {
if classifier.GetStoreNamespace(s) == namespace {
stores[s.GetId()] = s
}
}
return &namespaceCluster{
Cluster: c,
classifier: classifier,
namespace: namespace,
stores: stores,
}
}
func (c *namespaceCluster) checkRegion(region *core.RegionInfo) bool {
if c.classifier.GetRegionNamespace(region) != c.namespace {
return false
}
for _, p := range region.Peers {
if _, ok := c.stores[p.GetStoreId()]; !ok {
return false
}
}
return true
}
const randRegionMaxRetry = 10
// RandFollowerRegion returns a random region that has a follower on the store.
func (c *namespaceCluster) RandFollowerRegion(storeID uint64) *core.RegionInfo {
for i := 0; i < randRegionMaxRetry; i++ {
r := c.Cluster.RandFollowerRegion(storeID)
if r == nil {
return nil
}
if c.checkRegion(r) {
return r
}
}
return nil
}
// RandLeaderRegion returns a random region that has leader on the store.
func (c *namespaceCluster) RandLeaderRegion(storeID uint64) *core.RegionInfo {
for i := 0; i < randRegionMaxRetry; i++ {
r := c.Cluster.RandLeaderRegion(storeID)
if r == nil {
return nil
}
if c.checkRegion(r) {
return r
}
}
return nil
}
// GetStores returns all stores in the namespace.
func (c *namespaceCluster) GetStores() []*core.StoreInfo {
stores := make([]*core.StoreInfo, 0, len(c.stores))
for _, s := range c.stores {
stores = append(stores, s)
}
return stores
}
// GetStore searches for a store by ID.
func (c *namespaceCluster) GetStore(id uint64) *core.StoreInfo {
return c.stores[id]
}
// GetRegion searches for a region by ID.
func (c *namespaceCluster) GetRegion(id uint64) *core.RegionInfo {
r := c.Cluster.GetRegion(id)
if r == nil || !c.checkRegion(r) {
return nil
}
return r
}
// RegionWriteStats returns hot region's write stats.
func (c *namespaceCluster) RegionWriteStats() []*core.RegionStat {
allStats := c.Cluster.RegionWriteStats()
stats := make([]*core.RegionStat, 0, len(allStats))
for _, s := range allStats {
if c.GetRegion(s.RegionID) != nil {
stats = append(stats, s)
}
}
return stats
}
func scheduleByNamespace(cluster schedule.Cluster, classifier namespace.Classifier, scheduler schedule.Scheduler) *schedule.Operator {
namespaces := classifier.GetAllNamespaces()
for _, i := range rand.Perm(len(namespaces)) {
nc := newNamespaceCluster(cluster, classifier, namespaces[i])
if op := scheduler.Schedule(nc); op != nil {
return op
}
}
return nil
}