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
209 lines
5.7 KiB
Go
209 lines
5.7 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 taskcommon
|
|
|
|
import (
|
|
"fmt"
|
|
"strconv"
|
|
|
|
"github.com/milvus-io/milvus/pkg/v3/proto/indexpb"
|
|
"github.com/milvus-io/milvus/pkg/v3/util/merr"
|
|
)
|
|
|
|
// properties keys
|
|
const (
|
|
// request
|
|
ClusterIDKey = "cluster_id"
|
|
TaskIDKey = "task_id"
|
|
TypeKey = "task_type"
|
|
SubTypeKey = "task_sub_type" // optional, only for Stats
|
|
SlotKey = "task_slot"
|
|
NumRowsKey = "num_row" // optional, only for Index, Stats
|
|
TaskVersionKey = "task_version" // optional, only for Index, Stats and Analyze
|
|
CollectionIDKey = "collection_id"
|
|
|
|
// result
|
|
StateKey = "task_state"
|
|
ReasonKey = "task_reason"
|
|
)
|
|
|
|
type Properties map[string]string
|
|
|
|
func NewProperties(properties map[string]string) Properties {
|
|
if properties == nil {
|
|
properties = map[string]string{}
|
|
}
|
|
return properties
|
|
}
|
|
|
|
func WrapErrTaskPropertyLack(lackProperty string, taskID any) error {
|
|
// Task properties are populated by the coordinator, never by user input, so a
|
|
// missing property is an internal protocol violation (e.g. a mixed-version
|
|
// rolling upgrade), not a user error.
|
|
return merr.WrapErrServiceInternalMsg("cannot find property '%s' for task '%v'", lackProperty, taskID)
|
|
}
|
|
|
|
func (p Properties) AppendClusterID(clusterID string) {
|
|
p[ClusterIDKey] = clusterID
|
|
}
|
|
|
|
func (p Properties) AppendTaskID(taskID int64) {
|
|
p[TaskIDKey] = fmt.Sprintf("%d", taskID)
|
|
}
|
|
|
|
func (p Properties) AppendType(t Type) {
|
|
switch t {
|
|
case PreImport, Import, Compaction, Index, Stats, Analyze, RefreshExternalCollection, CopySegment:
|
|
p[TypeKey] = t
|
|
default:
|
|
p[TypeKey] = TypeNone
|
|
}
|
|
}
|
|
|
|
func (p Properties) AppendSubType(subType string) {
|
|
p[SubTypeKey] = subType
|
|
}
|
|
|
|
func (p Properties) AppendTaskSlot(slot int64) {
|
|
p[SlotKey] = fmt.Sprintf("%d", slot)
|
|
}
|
|
|
|
func (p Properties) AppendNumRows(rows int64) {
|
|
p[NumRowsKey] = fmt.Sprintf("%d", rows)
|
|
}
|
|
|
|
func (p Properties) AppendTaskVersion(version int64) {
|
|
p[TaskVersionKey] = fmt.Sprintf("%d", version)
|
|
}
|
|
|
|
func (p Properties) AppendCollectionID(collectionID int64) {
|
|
p[CollectionIDKey] = fmt.Sprintf("%d", collectionID)
|
|
}
|
|
|
|
func (p Properties) AppendReason(reason string) {
|
|
p[ReasonKey] = reason
|
|
}
|
|
|
|
func (p Properties) AppendTaskState(state State) {
|
|
p[StateKey] = state.String()
|
|
}
|
|
|
|
func (p Properties) GetTaskType() (Type, error) {
|
|
if _, ok := p[TypeKey]; !ok {
|
|
return "", WrapErrTaskPropertyLack(TypeKey, p[TaskIDKey])
|
|
}
|
|
switch p[TypeKey] {
|
|
case PreImport, Import, Compaction, Index, Stats, Analyze, RefreshExternalCollection, CopySegment:
|
|
return p[TypeKey], nil
|
|
default:
|
|
// Task types are assigned by the coordinator; an unrecognized one means a
|
|
// protocol mismatch (e.g. a newer coordinator scheduling onto an older
|
|
// node), which is system blame, not user input.
|
|
return p[TypeKey], merr.WrapErrServiceInternalMsg("unrecognized task type '%s', taskID=%s", p[TypeKey], p[TaskIDKey])
|
|
}
|
|
}
|
|
|
|
func (p Properties) GetJobType() (indexpb.JobType, error) {
|
|
taskType, err := p.GetTaskType()
|
|
if err != nil {
|
|
return indexpb.JobType_JobTypeNone, err
|
|
}
|
|
switch taskType {
|
|
case Index:
|
|
return indexpb.JobType_JobTypeIndexJob, nil
|
|
case Stats:
|
|
return indexpb.JobType_JobTypeStatsJob, nil
|
|
case Analyze:
|
|
return indexpb.JobType_JobTypeAnalyzeJob, nil
|
|
default:
|
|
return indexpb.JobType_JobTypeNone, nil
|
|
}
|
|
}
|
|
|
|
func (p Properties) GetSubTaskType() string {
|
|
return p[SubTypeKey]
|
|
}
|
|
|
|
func (p Properties) GetClusterID() (string, error) {
|
|
if _, ok := p[ClusterIDKey]; !ok {
|
|
return "", WrapErrTaskPropertyLack(ClusterIDKey, p[TaskIDKey])
|
|
}
|
|
return p[ClusterIDKey], nil
|
|
}
|
|
|
|
func (p Properties) GetTaskID() (int64, error) {
|
|
if _, ok := p[TaskIDKey]; !ok {
|
|
return 0, WrapErrTaskPropertyLack(TaskIDKey, 0)
|
|
}
|
|
return strconv.ParseInt(p[TaskIDKey], 10, 64)
|
|
}
|
|
|
|
func (p Properties) GetTaskState() (State, error) {
|
|
if _, ok := p[StateKey]; !ok {
|
|
return 0, WrapErrTaskPropertyLack(StateKey, p[TaskIDKey])
|
|
}
|
|
stateStr := p[StateKey]
|
|
if _, ok := indexpb.JobState_value[stateStr]; !ok {
|
|
return None, merr.WrapErrParameterInvalidMsg("invalid task state '%v', taskID=%s", stateStr, p[TaskIDKey])
|
|
}
|
|
return State(indexpb.JobState_value[stateStr]), nil
|
|
}
|
|
|
|
func (p Properties) GetTaskReason() string {
|
|
return p[ReasonKey]
|
|
}
|
|
|
|
func (p Properties) GetTaskSlot() (int64, error) {
|
|
if _, ok := p[SlotKey]; !ok {
|
|
return 0, WrapErrTaskPropertyLack(SlotKey, p[TaskIDKey])
|
|
}
|
|
return strconv.ParseInt(p[SlotKey], 10, 64)
|
|
}
|
|
|
|
func (p Properties) GetNumRows() int64 {
|
|
if _, ok := p[NumRowsKey]; !ok {
|
|
return 0
|
|
}
|
|
rows, err := strconv.ParseInt(p[NumRowsKey], 10, 64)
|
|
if err != nil {
|
|
return 0
|
|
}
|
|
return rows
|
|
}
|
|
|
|
func (p Properties) GetTaskVersion() int64 {
|
|
if _, ok := p[TaskVersionKey]; !ok {
|
|
return 0
|
|
}
|
|
version, err := strconv.ParseInt(p[TaskVersionKey], 10, 64)
|
|
if err != nil {
|
|
return 0
|
|
}
|
|
return version
|
|
}
|
|
|
|
func (p Properties) GetCollectionID() (int64, error) {
|
|
if _, ok := p[CollectionIDKey]; !ok {
|
|
return 0, WrapErrTaskPropertyLack(CollectionIDKey, p[TaskIDKey])
|
|
}
|
|
collectionID, err := strconv.ParseInt(p[CollectionIDKey], 10, 64)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
return collectionID, nil
|
|
}
|