2022-10-11 11:39:22 +08:00
|
|
|
// Licensed to the LF AI & Data foundation under one
|
|
|
|
// or more contributor license agreements. See the NOTICE file
|
|
|
|
// distributed with this work for additional information
|
|
|
|
// regarding copyright ownership. The ASF licenses this file
|
|
|
|
// to you 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,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2022-09-15 18:48:32 +08:00
|
|
|
package task
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/samber/lo"
|
|
|
|
"go.uber.org/atomic"
|
|
|
|
|
|
|
|
"github.com/milvus-io/milvus/internal/proto/querypb"
|
|
|
|
"github.com/milvus-io/milvus/internal/querycoordv2/meta"
|
2023-04-06 19:14:32 +08:00
|
|
|
"github.com/milvus-io/milvus/pkg/util/funcutil"
|
2024-02-21 11:08:51 +08:00
|
|
|
"github.com/milvus-io/milvus/pkg/util/typeutil"
|
2022-09-15 18:48:32 +08:00
|
|
|
)
|
|
|
|
|
2023-07-24 13:57:00 +08:00
|
|
|
type ActionType int32
|
2022-09-15 18:48:32 +08:00
|
|
|
|
|
|
|
const (
|
|
|
|
ActionTypeGrow ActionType = iota + 1
|
|
|
|
ActionTypeReduce
|
2023-07-19 21:22:58 +08:00
|
|
|
ActionTypeUpdate
|
2022-09-15 18:48:32 +08:00
|
|
|
)
|
|
|
|
|
2023-07-24 13:57:00 +08:00
|
|
|
var ActionTypeName = map[ActionType]string{
|
|
|
|
ActionTypeGrow: "Grow",
|
|
|
|
ActionTypeReduce: "Reduce",
|
|
|
|
ActionTypeUpdate: "Update",
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t ActionType) String() string {
|
|
|
|
return ActionTypeName[t]
|
|
|
|
}
|
|
|
|
|
2022-09-15 18:48:32 +08:00
|
|
|
type Action interface {
|
|
|
|
Node() int64
|
|
|
|
Type() ActionType
|
|
|
|
IsFinished(distMgr *meta.DistributionManager) bool
|
|
|
|
}
|
|
|
|
|
|
|
|
type BaseAction struct {
|
2024-02-21 11:08:51 +08:00
|
|
|
nodeID typeutil.UniqueID
|
2022-09-15 18:48:32 +08:00
|
|
|
typ ActionType
|
2022-09-28 12:10:54 +08:00
|
|
|
shard string
|
2022-09-15 18:48:32 +08:00
|
|
|
}
|
|
|
|
|
2024-02-21 11:08:51 +08:00
|
|
|
func NewBaseAction(nodeID typeutil.UniqueID, typ ActionType, shard string) *BaseAction {
|
2022-09-15 18:48:32 +08:00
|
|
|
return &BaseAction{
|
|
|
|
nodeID: nodeID,
|
|
|
|
typ: typ,
|
2022-09-28 12:10:54 +08:00
|
|
|
shard: shard,
|
2022-09-15 18:48:32 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (action *BaseAction) Node() int64 {
|
|
|
|
return action.nodeID
|
|
|
|
}
|
|
|
|
|
|
|
|
func (action *BaseAction) Type() ActionType {
|
|
|
|
return action.typ
|
|
|
|
}
|
|
|
|
|
2022-09-28 12:10:54 +08:00
|
|
|
func (action *BaseAction) Shard() string {
|
|
|
|
return action.shard
|
|
|
|
}
|
|
|
|
|
2022-09-15 18:48:32 +08:00
|
|
|
type SegmentAction struct {
|
|
|
|
*BaseAction
|
|
|
|
|
2024-02-21 11:08:51 +08:00
|
|
|
segmentID typeutil.UniqueID
|
2022-09-15 18:48:32 +08:00
|
|
|
scope querypb.DataScope
|
|
|
|
|
2023-07-19 21:22:58 +08:00
|
|
|
rpcReturned atomic.Bool
|
2022-09-15 18:48:32 +08:00
|
|
|
}
|
|
|
|
|
2024-02-21 11:08:51 +08:00
|
|
|
func NewSegmentAction(nodeID typeutil.UniqueID, typ ActionType, shard string, segmentID typeutil.UniqueID) *SegmentAction {
|
2022-09-28 12:10:54 +08:00
|
|
|
return NewSegmentActionWithScope(nodeID, typ, shard, segmentID, querypb.DataScope_All)
|
2022-09-15 18:48:32 +08:00
|
|
|
}
|
2023-03-27 00:42:00 +08:00
|
|
|
|
2024-02-21 11:08:51 +08:00
|
|
|
func NewSegmentActionWithScope(nodeID typeutil.UniqueID, typ ActionType, shard string, segmentID typeutil.UniqueID, scope querypb.DataScope) *SegmentAction {
|
2022-09-28 12:10:54 +08:00
|
|
|
base := NewBaseAction(nodeID, typ, shard)
|
2022-09-15 18:48:32 +08:00
|
|
|
return &SegmentAction{
|
2023-07-19 21:22:58 +08:00
|
|
|
BaseAction: base,
|
|
|
|
segmentID: segmentID,
|
|
|
|
scope: scope,
|
|
|
|
rpcReturned: *atomic.NewBool(false),
|
2022-09-15 18:48:32 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-21 11:08:51 +08:00
|
|
|
func (action *SegmentAction) SegmentID() typeutil.UniqueID {
|
2022-09-15 18:48:32 +08:00
|
|
|
return action.segmentID
|
|
|
|
}
|
|
|
|
|
|
|
|
func (action *SegmentAction) Scope() querypb.DataScope {
|
|
|
|
return action.scope
|
|
|
|
}
|
|
|
|
|
|
|
|
func (action *SegmentAction) IsFinished(distMgr *meta.DistributionManager) bool {
|
|
|
|
if action.Type() == ActionTypeGrow {
|
2023-07-19 15:02:58 +08:00
|
|
|
leaderSegmentDist := distMgr.LeaderViewManager.GetSealedSegmentDist(action.SegmentID())
|
|
|
|
nodeSegmentDist := distMgr.SegmentDistManager.GetSegmentDist(action.SegmentID())
|
|
|
|
return lo.Contains(leaderSegmentDist, action.Node()) &&
|
2023-12-12 10:48:37 +08:00
|
|
|
lo.Contains(nodeSegmentDist, action.Node()) &&
|
|
|
|
action.rpcReturned.Load()
|
2022-11-03 15:01:35 +08:00
|
|
|
} else if action.Type() == ActionTypeReduce {
|
|
|
|
// FIXME: Now shard leader's segment view is a map of segment ID to node ID,
|
|
|
|
// loading segment replaces the node ID with the new one,
|
|
|
|
// which confuses the condition of finishing,
|
|
|
|
// the leader should return a map of segment ID to list of nodes,
|
|
|
|
// now, we just always commit the release task to executor once.
|
|
|
|
// NOTE: DO NOT create a task containing release action and the action is not the last action
|
2024-03-08 16:29:01 +08:00
|
|
|
sealed := distMgr.SegmentDistManager.GetByFilter(meta.WithNodeID(action.Node()))
|
2022-11-03 15:01:35 +08:00
|
|
|
growing := distMgr.LeaderViewManager.GetSegmentByNode(action.Node())
|
|
|
|
segments := make([]int64, 0, len(sealed)+len(growing))
|
|
|
|
for _, segment := range sealed {
|
|
|
|
segments = append(segments, segment.GetID())
|
|
|
|
}
|
|
|
|
segments = append(segments, growing...)
|
|
|
|
if !funcutil.SliceContain(segments, action.SegmentID()) {
|
|
|
|
return true
|
|
|
|
}
|
2023-07-19 21:22:58 +08:00
|
|
|
return action.rpcReturned.Load()
|
|
|
|
} else if action.Type() == ActionTypeUpdate {
|
|
|
|
return action.rpcReturned.Load()
|
2022-09-15 18:48:32 +08:00
|
|
|
}
|
2022-11-03 15:01:35 +08:00
|
|
|
|
|
|
|
return true
|
2022-09-15 18:48:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
type ChannelAction struct {
|
|
|
|
*BaseAction
|
|
|
|
}
|
|
|
|
|
2024-02-21 11:08:51 +08:00
|
|
|
func NewChannelAction(nodeID typeutil.UniqueID, typ ActionType, channelName string) *ChannelAction {
|
2022-09-15 18:48:32 +08:00
|
|
|
return &ChannelAction{
|
2022-09-28 12:10:54 +08:00
|
|
|
BaseAction: NewBaseAction(nodeID, typ, channelName),
|
2022-09-15 18:48:32 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (action *ChannelAction) ChannelName() string {
|
2022-09-28 12:10:54 +08:00
|
|
|
return action.shard
|
2022-09-15 18:48:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (action *ChannelAction) IsFinished(distMgr *meta.DistributionManager) bool {
|
|
|
|
nodes := distMgr.LeaderViewManager.GetChannelDist(action.ChannelName())
|
|
|
|
hasNode := lo.Contains(nodes, action.Node())
|
|
|
|
isGrow := action.Type() == ActionTypeGrow
|
|
|
|
|
|
|
|
return hasNode == isGrow
|
|
|
|
}
|
2024-02-21 11:08:51 +08:00
|
|
|
|
|
|
|
type LeaderAction struct {
|
|
|
|
*BaseAction
|
|
|
|
|
|
|
|
leaderID typeutil.UniqueID
|
|
|
|
segmentID typeutil.UniqueID
|
2024-03-08 11:57:01 +08:00
|
|
|
version typeutil.UniqueID // segment load ts, 0 means not set
|
2024-02-21 11:08:51 +08:00
|
|
|
|
|
|
|
rpcReturned atomic.Bool
|
|
|
|
}
|
|
|
|
|
2024-03-08 11:57:01 +08:00
|
|
|
func NewLeaderAction(leaderID, workerID typeutil.UniqueID, typ ActionType, shard string, segmentID typeutil.UniqueID, version typeutil.UniqueID) *LeaderAction {
|
2024-02-21 11:08:51 +08:00
|
|
|
action := &LeaderAction{
|
|
|
|
BaseAction: NewBaseAction(workerID, typ, shard),
|
|
|
|
|
|
|
|
leaderID: leaderID,
|
|
|
|
segmentID: segmentID,
|
2024-03-08 11:57:01 +08:00
|
|
|
version: version,
|
2024-02-21 11:08:51 +08:00
|
|
|
}
|
|
|
|
action.rpcReturned.Store(false)
|
|
|
|
return action
|
|
|
|
}
|
|
|
|
|
|
|
|
func (action *LeaderAction) SegmentID() typeutil.UniqueID {
|
|
|
|
return action.segmentID
|
|
|
|
}
|
|
|
|
|
2024-03-08 11:57:01 +08:00
|
|
|
func (action *LeaderAction) Version() typeutil.UniqueID {
|
|
|
|
return action.version
|
|
|
|
}
|
|
|
|
|
2024-02-21 11:08:51 +08:00
|
|
|
func (action *LeaderAction) IsFinished(distMgr *meta.DistributionManager) bool {
|
|
|
|
views := distMgr.LeaderViewManager.GetLeaderView(action.leaderID)
|
|
|
|
view := views[action.Shard()]
|
|
|
|
if view == nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
dist := view.Segments[action.SegmentID()]
|
|
|
|
switch action.Type() {
|
|
|
|
case ActionTypeGrow:
|
|
|
|
return action.rpcReturned.Load() && dist != nil && dist.NodeID == action.Node()
|
|
|
|
case ActionTypeReduce:
|
|
|
|
return action.rpcReturned.Load() && (dist == nil || dist.NodeID != action.Node())
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|