mirror of
https://github.com/talent-plan/tinykv.git
synced 2024-12-28 05:40:10 +08:00
5e089a2cd1
Signed-off-by: Connor <zbk602423539@gmail.com> Co-authored-by: Nick Cameron <nrc@ncameron.org> Co-authored-by: linning <linningde25@gmail.com> Co-authored-by: YangKeao <keao.yang@yahoo.com> Co-authored-by: andylokandy <andylokandy@hotmail.com> Co-authored-by: Iosmanthus Teng <myosmanthustree@gmail.com>
68 lines
2.1 KiB
Go
68 lines
2.1 KiB
Go
// Copyright 2019 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 schedule
|
|
|
|
import (
|
|
"github.com/pingcap-incubator/tinykv/proto/pkg/metapb"
|
|
"github.com/pingcap-incubator/tinykv/scheduler/pkg/mock/mockcluster"
|
|
"github.com/pingcap-incubator/tinykv/scheduler/server/core"
|
|
"github.com/pingcap-incubator/tinykv/scheduler/server/schedule/operator"
|
|
)
|
|
|
|
// ApplyOperatorStep applies operator step. Only for test purpose.
|
|
func ApplyOperatorStep(region *core.RegionInfo, op *operator.Operator) *core.RegionInfo {
|
|
if step := op.Check(region); step != nil {
|
|
switch s := step.(type) {
|
|
case operator.TransferLeader:
|
|
region = region.Clone(core.WithLeader(region.GetStorePeer(s.ToStore)))
|
|
case operator.AddPeer:
|
|
if region.GetStorePeer(s.ToStore) != nil {
|
|
panic("Add peer that exists")
|
|
}
|
|
peer := &metapb.Peer{
|
|
Id: s.PeerID,
|
|
StoreId: s.ToStore,
|
|
}
|
|
region = region.Clone(core.WithAddPeer(peer))
|
|
case operator.RemovePeer:
|
|
if region.GetStorePeer(s.FromStore) == nil {
|
|
panic("Remove peer that doesn't exist")
|
|
}
|
|
if region.GetLeader().GetStoreId() == s.FromStore {
|
|
panic("Cannot remove the leader peer")
|
|
}
|
|
region = region.Clone(core.WithRemoveStorePeer(s.FromStore))
|
|
default:
|
|
panic("Unknown operator step")
|
|
}
|
|
}
|
|
return region
|
|
}
|
|
|
|
// ApplyOperator applies operator. Only for test purpose.
|
|
func ApplyOperator(mc *mockcluster.Cluster, op *operator.Operator) {
|
|
origin := mc.GetRegion(op.RegionID())
|
|
region := origin
|
|
for !op.IsFinish() {
|
|
region = ApplyOperatorStep(region, op)
|
|
}
|
|
mc.PutRegion(region)
|
|
for id := range region.GetStoreIds() {
|
|
mc.UpdateStoreStatus(id)
|
|
}
|
|
for id := range origin.GetStoreIds() {
|
|
mc.UpdateStoreStatus(id)
|
|
}
|
|
}
|