Documentation ¶
Index ¶
Constants ¶
const ( B = 1 << (iota * 10) KB MB GB TB )
unit of storage
Variables ¶
var CaseMap = map[string]func() *Case{
"balance-leader": newBalanceLeader,
"add-nodes": newAddNodes,
"add-nodes-dynamic": newAddNodesDynamic,
"delete-nodes": newDeleteNodes,
"region-split": newRegionSplit,
"region-merge": newRegionMerge,
"hot-read": newHotRead,
"hot-write": newHotWrite,
"makeup-down-replicas": newMakeupDownReplicas,
}
CaseMap is a mapping of the cases to the their corresponding initialize functions.
Functions ¶
This section is empty.
Types ¶
type AddNodesInner ¶
AddNodesInner adds nodes.
func (*AddNodesInner) Type ¶
func (w *AddNodesInner) Type() string
Type implements the EventInner interface.
type Case ¶
type Case struct { Stores []*Store Regions []Region MaxID uint64 RegionSplitSize int64 RegionSplitKeys int64 Events []EventInner Checker CheckerFunc // To check the schedule is finished. }
Case represents a test suite for simulator.
type CheckerFunc ¶
type CheckerFunc func(*core.RegionsInfo) bool
CheckerFunc checks if the scheduler is finished.
type DeleteNodesInner ¶
DeleteNodesInner removes nodes.
func (*DeleteNodesInner) Type ¶
func (w *DeleteNodesInner) Type() string
Type implements the EventInner interface.
type EventInner ¶
type EventInner interface {
Type() string
}
EventInner is a detail template for custom events.
type ReadFlowOnRegionInner ¶
ReadFlowOnRegionInner reads bytes in some region.
func (*ReadFlowOnRegionInner) Type ¶
func (w *ReadFlowOnRegionInner) Type() string
Type implements the EventInner interface.
type Store ¶
type Store struct { ID uint64 Status metapb.StoreState Labels []*metapb.StoreLabel Capacity uint64 Available uint64 LeaderWeight float32 RegionWeight float32 Version string }
Store is used to simulate tikv.
type WriteFlowOnRegionInner ¶
WriteFlowOnRegionInner writes bytes in some region.
func (*WriteFlowOnRegionInner) Type ¶
func (w *WriteFlowOnRegionInner) Type() string
Type implements the EventInner interface.
type WriteFlowOnSpotInner ¶
WriteFlowOnSpotInner writes bytes in some range.
func (*WriteFlowOnSpotInner) Type ¶
func (w *WriteFlowOnSpotInner) Type() string
Type implements the EventInner interface.