Files
milvus/pkg/taskcommon/properties.go
T
d6982c74c4 enhance: record and expose DataNode task cost_time / cost_cpu_num via QueryTask (#51443)
issue: #49156

## Summary

- Record `cost_time` / `cost_cpu_num` on DataNode index build tasks and
surface them through `QueryTask` response `Properties`.
- Reserve the unified `cost_time` / `cost_cpu_num` keys under
`pkg/taskcommon` so future PRs can wire up the other
`CreateTask`-dispatched task types.
- Introduce small `internal/datanode/taskcost` helper (`NowMs`,
`ElapsedMs`, `EstimateIndexBuildCPUNum`) for index build task cost
accounting.
- Final state/failReason and execution-end cost are written in a single
`TaskManager` critical section, and `QueryTask` reads them from a single
snapshot, so state and cost in one response are always consistent.

## Notes

This PR is producer-side only. DataCoord / proxy / metrics exporter do
not consume these properties yet; downstream consumption should land in
a follow-up linked from #49156.

`cost_cpu_num` is a coarse, statistics-only estimate for observability
(vector index ≈ knowhere build pool size = NumCPU in cluster mode;
scalar index = 1). It is not used for coordinator-side scheduling, so
the standalone pool-ratio deviation (NumCPU × buildIndexThreadPoolRatio)
and pool sharing across concurrent builds are intentionally not modeled.

Supersedes #49157 (that PR's head branch was rebased onto latest master
and force-pushed, so GitHub no longer allows reopening it). Content is
identical, rebased to a single commit on top of current master.

## Test plan

- [x] `go test ./taskcommon/...` from `pkg/`
- [x] `go test -tags dynamic,test -gcflags="all=-N -l" -count=1
./internal/datanode/taskcost`
- [ ] `go test -tags dynamic,test -gcflags="all=-N -l" -count=1
./internal/datanode/index -run
'TestIndexTaskSchedulerRecordsIndexTaskCost|Test_statsTaskInfoSuite/Test_IndexTaskCostMethods'`
- [ ] Manual sanity: `QueryTask` returns `cost_time` / `cost_cpu_num`
for DataNode index build task success and failure paths.

---------

Signed-off-by: cai.zhang <cai.zhang@zilliz.com>
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
2026-07-17 17:38:40 +08:00

241 lines
6.4 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"
CostTimeKey = "cost_time"
CostCPUNumKey = "cost_cpu_num"
)
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) AppendCostTime(costTime int64) {
p[CostTimeKey] = fmt.Sprintf("%d", costTime)
}
func (p Properties) AppendCostCPUNum(costCPUNum int64) {
p[CostCPUNumKey] = fmt.Sprintf("%d", costCPUNum)
}
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
}
func (p Properties) GetCostTime() int64 {
if _, ok := p[CostTimeKey]; !ok {
return 0
}
costTime, err := strconv.ParseInt(p[CostTimeKey], 10, 64)
if err != nil {
return 0
}
return costTime
}
func (p Properties) GetCostCPUNum() int64 {
if _, ok := p[CostCPUNumKey]; !ok {
return 0
}
costCPUNum, err := strconv.ParseInt(p[CostCPUNumKey], 10, 64)
if err != nil {
return 0
}
return costCPUNum
}