Files
wehub-resource-sync 498b235461
Build and test / Build and test AMD64 Ubuntu 22.04 (push) Failing after 0s
Publish Builder / amazonlinux2023 (push) Failing after 1s
Build and test / UT for Go (push) Has been skipped
Publish KRTE Images / KRTE (push) Failing after 1s
Build and test / Integration Test (push) Has been skipped
Build and test / Upload Code Coverage (push) Has been skipped
Publish Builder / rockylinux9 (push) Failing after 1s
Publish Builder / ubuntu22.04 (push) Failing after 0s
Publish Builder / ubuntu24.04 (push) Failing after 0s
Publish Gpu Builder / publish-gpu-builder (push) Failing after 1s
Publish Test Images / PyTest (push) Failing after 0s
Build and test / UT for Cpp (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:31:17 +08:00

326 lines
8.9 KiB
Go

// 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.
package task
import (
"fmt"
"github.com/samber/lo"
"go.uber.org/atomic"
"github.com/milvus-io/milvus/internal/querycoordv2/meta"
"github.com/milvus-io/milvus/pkg/v3/proto/querypb"
"github.com/milvus-io/milvus/pkg/v3/util/typeutil"
)
type ActionType int32
const (
ActionTypeGrow ActionType = iota + 1
ActionTypeReduce
ActionTypeUpdate
ActionTypeStatsUpdate
ActionTypeDropIndex
ActionTypeReopen
)
var ActionTypeName = map[ActionType]string{
ActionTypeGrow: "Grow",
ActionTypeReduce: "Reduce",
ActionTypeUpdate: "Update",
ActionTypeStatsUpdate: "StatsUpdate",
ActionTypeDropIndex: "DropIndex",
ActionTypeReopen: "Reopen",
}
func (t ActionType) String() string {
return ActionTypeName[t]
}
type Action interface {
Node() int64
Type() ActionType
IsFinished(distMgr *meta.DistributionManager) bool
Desc() string
String() string
// return current action's workload effect on target query node
// which only works for `Grow` and `Reduce`, cause `Update` won't change query node's workload
WorkLoadEffect() int
}
type BaseAction struct {
NodeID typeutil.UniqueID
Typ ActionType
Shard string
workloadEffect int
}
func NewBaseAction(nodeID typeutil.UniqueID, typ ActionType, shard string, workLoadEffect int) *BaseAction {
return &BaseAction{
NodeID: nodeID,
Typ: typ,
Shard: shard,
workloadEffect: workLoadEffect,
}
}
func (action *BaseAction) Node() int64 {
return action.NodeID
}
func (action *BaseAction) Type() ActionType {
return action.Typ
}
func (action *BaseAction) GetShard() string {
return action.Shard
}
func (action *BaseAction) String() string {
return fmt.Sprintf(`{[type=%v][node=%d][shard=%v]}`, action.Type(), action.Node(), action.Shard)
}
func (action *BaseAction) WorkLoadEffect() int {
return action.workloadEffect
}
type SegmentAction struct {
*BaseAction
SegmentID typeutil.UniqueID
Scope querypb.DataScope
rpcReturned atomic.Bool
}
// Deprecate, only for existing unit test
func NewSegmentAction(nodeID typeutil.UniqueID, typ ActionType, shard string, segmentID typeutil.UniqueID) *SegmentAction {
return NewSegmentActionWithScope(nodeID, typ, shard, segmentID, querypb.DataScope_All, 0)
}
func NewSegmentActionWithScope(nodeID typeutil.UniqueID, typ ActionType, shard string, segmentID typeutil.UniqueID, scope querypb.DataScope, rowCount int) *SegmentAction {
workloadEffect := 0
switch typ {
case ActionTypeGrow:
workloadEffect = rowCount
case ActionTypeReduce:
workloadEffect = -rowCount
default:
workloadEffect = 0
}
return &SegmentAction{
BaseAction: NewBaseAction(nodeID, typ, shard, workloadEffect),
SegmentID: segmentID,
Scope: scope,
rpcReturned: *atomic.NewBool(false),
}
}
func (action *SegmentAction) GetSegmentID() typeutil.UniqueID {
return action.SegmentID
}
func (action *SegmentAction) GetScope() querypb.DataScope {
return action.Scope
}
func (action *SegmentAction) IsFinished(distMgr *meta.DistributionManager) bool {
if !action.rpcReturned.Load() {
return false
}
return action.isDistMatched(distMgr)
}
func (action *SegmentAction) isDistMatched(distMgr *meta.DistributionManager) bool {
inDist := segmentInDist(distMgr, action.Node(), action.GetShard(), action.GetSegmentID(), action.GetScope())
switch action.Type() {
case ActionTypeGrow:
return inDist
case ActionTypeReduce:
return !inDist
default:
return true
}
}
func segmentInDist(distMgr *meta.DistributionManager, nodeID int64, channelName string, segmentID int64, scope querypb.DataScope) bool {
if scope == querypb.DataScope_Streaming {
channels := distMgr.ChannelDistManager.GetByFilter(
meta.WithNodeID2Channel(nodeID),
meta.WithChannelName2Channel(channelName),
)
for _, channel := range channels {
if channel.View == nil {
continue
}
if _, ok := channel.View.GrowingSegments[segmentID]; ok {
return true
}
}
return false
}
segments := distMgr.SegmentDistManager.GetByFilter(
meta.WithNodeID(nodeID),
meta.WithSegmentID(segmentID),
)
return len(segments) > 0
}
func (action *SegmentAction) Desc() string {
return fmt.Sprintf("type:%s node id: %d, data scope:%s", action.Type().String(), action.Node(), action.Scope.String())
}
func (action *SegmentAction) String() string {
return action.BaseAction.String() + fmt.Sprintf(`{[segmentID=%d][scope=%d]}`, action.SegmentID, action.Scope)
}
type ChannelAction struct {
*BaseAction
}
func NewChannelAction(nodeID typeutil.UniqueID, typ ActionType, channelName string) *ChannelAction {
workloadEffect := 0
switch typ {
case ActionTypeGrow:
workloadEffect = 1
case ActionTypeReduce:
workloadEffect = -1
default:
workloadEffect = 0
}
return &ChannelAction{
BaseAction: NewBaseAction(nodeID, typ, channelName, workloadEffect),
}
}
func (action *ChannelAction) ChannelName() string {
return action.Shard
}
func (action *ChannelAction) Desc() string {
return fmt.Sprintf("type:%s node id: %d", action.Type().String(), action.Node())
}
func (action *ChannelAction) IsFinished(distMgr *meta.DistributionManager) bool {
delegator := distMgr.ChannelDistManager.GetByFilter(meta.WithChannelName2Channel(action.ChannelName()))
_, hasNode := lo.Find(delegator, func(v *meta.DmChannel) bool {
return v.Node == action.Node()
})
isGrow := action.Type() == ActionTypeGrow
return hasNode == isGrow
}
type LeaderAction struct {
*BaseAction
leaderID typeutil.UniqueID
segmentID typeutil.UniqueID
version typeutil.UniqueID // segment load ts, 0 means not set
partStatsVersions map[int64]int64
rpcReturned atomic.Bool
}
func NewLeaderAction(leaderID, workerID typeutil.UniqueID, typ ActionType, shard string, segmentID typeutil.UniqueID, version typeutil.UniqueID) *LeaderAction {
action := &LeaderAction{
BaseAction: NewBaseAction(workerID, typ, shard, 0),
leaderID: leaderID,
segmentID: segmentID,
version: version,
}
action.rpcReturned.Store(false)
return action
}
func NewLeaderUpdatePartStatsAction(leaderID, workerID typeutil.UniqueID, typ ActionType, shard string, partStatsVersions map[int64]int64) *LeaderAction {
action := &LeaderAction{
BaseAction: NewBaseAction(workerID, typ, shard, 0),
leaderID: leaderID,
partStatsVersions: partStatsVersions,
}
action.rpcReturned.Store(false)
return action
}
func (action *LeaderAction) SegmentID() typeutil.UniqueID {
return action.segmentID
}
func (action *LeaderAction) Version() typeutil.UniqueID {
return action.version
}
func (action *LeaderAction) PartStats() map[int64]int64 {
return action.partStatsVersions
}
func (action *LeaderAction) Desc() string {
return fmt.Sprintf("type:%s, node id: %d, segment id:%d ,version:%d, leader id:%d",
action.Type().String(), action.Node(), action.SegmentID(), action.Version(), action.GetLeaderID())
}
func (action *LeaderAction) String() string {
partStatsStr := ""
if action.PartStats() != nil {
partStatsStr = fmt.Sprintf("%v", action.PartStats())
}
return action.BaseAction.String() + fmt.Sprintf(`{[leaderID=%v][segmentID=%d][version=%d][partStats=%s]}`,
action.GetLeaderID(), action.SegmentID(), action.Version(), partStatsStr)
}
func (action *LeaderAction) GetLeaderID() typeutil.UniqueID {
return action.leaderID
}
func (action *LeaderAction) IsFinished(distMgr *meta.DistributionManager) bool {
return action.rpcReturned.Load()
}
type DropIndexAction struct {
*BaseAction
indexIDs []int64
rpcReturned atomic.Bool
}
func NewDropIndexAction(nodeID typeutil.UniqueID, typ ActionType, shard string, indexIDs []int64) *DropIndexAction {
return &DropIndexAction{
BaseAction: NewBaseAction(nodeID, typ, shard, 0),
indexIDs: indexIDs,
rpcReturned: *atomic.NewBool(false),
}
}
func (action *DropIndexAction) IndexIDs() []int64 {
return action.indexIDs
}
func (action *DropIndexAction) IsFinished(distMgr *meta.DistributionManager) bool {
return action.rpcReturned.Load()
}
func (action *DropIndexAction) Desc() string {
return fmt.Sprintf("type:%s, node id: %d, index ids: %v", action.Type().String(), action.Node(), action.IndexIDs())
}
func (action *DropIndexAction) String() string {
return action.BaseAction.String() + fmt.Sprintf(`{[indexIDs=%v]}`, action.IndexIDs())
}