congqixia cb7f2fa6fd
enhance: Use v2 package name for pkg module (#39990)
Related to #39095

https://go.dev/doc/modules/version-numbers

Update pkg version according to golang dep version convention

---------

Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
2025-02-22 23:15:58 +08:00

49 lines
1.0 KiB
Go

package scheduler
import (
"github.com/milvus-io/milvus/pkg/v2/util/paramtable"
)
var _ schedulePolicy = &fifoPolicy{}
// newFIFOPolicy create a new fifo schedule policy.
func newFIFOPolicy() schedulePolicy {
return &fifoPolicy{
queue: newMergeTaskQueue(""),
}
}
// fifoPolicy is a fifo policy with merge queue.
type fifoPolicy struct {
queue *mergeTaskQueue
}
// Push add a new task into scheduler, an error will be returned if scheduler reaches some limit.
func (p *fifoPolicy) Push(task Task) (int, error) {
pt := paramtable.Get()
// Try to merge task if task can merge.
if t := tryIntoMergeTask(task); t != nil {
maxNQ := pt.QueryNodeCfg.MaxGroupNQ.GetAsInt64()
if p.queue.tryMerge(t, maxNQ) {
return 0, nil
}
}
// Add a new task into queue.
p.queue.push(task)
return 1, nil
}
// Pop get the task next ready to run.
func (p *fifoPolicy) Pop() Task {
task := p.queue.front()
p.queue.pop()
return task
}
// Len get ready task counts.
func (p *fifoPolicy) Len() int {
return p.queue.len()
}