mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-03 04:19:18 +08:00
c61a4d1243
Signed-off-by: yah01 <yang.cen@zilliz.com> Signed-off-by: yah01 <yang.cen@zilliz.com>
172 lines
4.1 KiB
Go
172 lines
4.1 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 job
|
|
|
|
import (
|
|
"context"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/milvus-io/milvus/internal/log"
|
|
"github.com/milvus-io/milvus/internal/util/typeutil"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
// JobScheduler schedules jobs,
|
|
// all jobs within the same collection will run sequentially
|
|
const (
|
|
collectionQueueCap = 64
|
|
waitQueueCap = 512
|
|
)
|
|
|
|
type jobQueue chan Job
|
|
|
|
type Scheduler struct {
|
|
stopCh chan struct{}
|
|
wg sync.WaitGroup
|
|
|
|
processors *typeutil.ConcurrentSet[int64] // Collections of having processor
|
|
queues map[int64]jobQueue // CollectionID -> Queue
|
|
waitQueue jobQueue
|
|
|
|
stopOnce sync.Once
|
|
}
|
|
|
|
func NewScheduler() *Scheduler {
|
|
return &Scheduler{
|
|
stopCh: make(chan struct{}),
|
|
processors: typeutil.NewConcurrentSet[int64](),
|
|
queues: make(map[int64]jobQueue),
|
|
waitQueue: make(jobQueue, waitQueueCap),
|
|
}
|
|
}
|
|
|
|
func (scheduler *Scheduler) Start(ctx context.Context) {
|
|
scheduler.schedule(ctx)
|
|
}
|
|
|
|
func (scheduler *Scheduler) Stop() {
|
|
scheduler.stopOnce.Do(func() {
|
|
close(scheduler.stopCh)
|
|
scheduler.wg.Wait()
|
|
})
|
|
}
|
|
|
|
func (scheduler *Scheduler) schedule(ctx context.Context) {
|
|
scheduler.wg.Add(1)
|
|
go func() {
|
|
defer scheduler.wg.Done()
|
|
ticker := time.NewTicker(500 * time.Millisecond)
|
|
for {
|
|
select {
|
|
case <-ctx.Done():
|
|
log.Info("JobManager stopped due to context canceled")
|
|
return
|
|
|
|
case <-scheduler.stopCh:
|
|
log.Info("JobManager stopped")
|
|
return
|
|
|
|
case job := <-scheduler.waitQueue:
|
|
queue, ok := scheduler.queues[job.CollectionID()]
|
|
if !ok {
|
|
queue = make(jobQueue, collectionQueueCap)
|
|
scheduler.queues[job.CollectionID()] = queue
|
|
}
|
|
queue <- job
|
|
scheduler.startProcessor(job.CollectionID(), queue)
|
|
|
|
case <-ticker.C:
|
|
for collection, queue := range scheduler.queues {
|
|
if len(queue) > 0 {
|
|
scheduler.startProcessor(collection, queue)
|
|
} else {
|
|
// Release resource if no job for the collection
|
|
delete(scheduler.queues, collection)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}()
|
|
}
|
|
|
|
func (scheduler *Scheduler) isStopped() bool {
|
|
select {
|
|
case <-scheduler.stopCh:
|
|
return true
|
|
default:
|
|
return false
|
|
}
|
|
}
|
|
|
|
func (scheduler *Scheduler) Add(job Job) {
|
|
scheduler.waitQueue <- job
|
|
}
|
|
|
|
func (scheduler *Scheduler) startProcessor(collection int64, queue jobQueue) {
|
|
if scheduler.isStopped() {
|
|
return
|
|
}
|
|
if !scheduler.processors.Insert(collection) {
|
|
return
|
|
}
|
|
|
|
scheduler.wg.Add(1)
|
|
go scheduler.processQueue(collection, queue)
|
|
}
|
|
|
|
// processQueue processes jobs in the given queue,
|
|
// it only processes jobs with the number of the length of queue at the time,
|
|
// to avoid leaking goroutines
|
|
func (scheduler *Scheduler) processQueue(collection int64, queue jobQueue) {
|
|
defer scheduler.wg.Done()
|
|
defer scheduler.processors.Remove(collection)
|
|
|
|
len := len(queue)
|
|
for i := 0; i < len; i++ {
|
|
scheduler.process(<-queue)
|
|
}
|
|
}
|
|
|
|
func (scheduler *Scheduler) process(job Job) {
|
|
log := log.With(
|
|
zap.Int64("msgID", job.MsgID()),
|
|
zap.Int64("collectionID", job.CollectionID()))
|
|
|
|
defer func() {
|
|
log.Info("start to post-execute job")
|
|
job.PostExecute()
|
|
log.Info("job finished")
|
|
job.Done()
|
|
}()
|
|
|
|
log.Info("start to pre-execute job")
|
|
err := job.PreExecute()
|
|
if err != nil {
|
|
log.Warn("failed to pre-execute job", zap.Error(err))
|
|
job.SetError(err)
|
|
return
|
|
}
|
|
|
|
log.Info("start to execute job")
|
|
err = job.Execute()
|
|
if err != nil {
|
|
log.Warn("failed to execute job", zap.Error(err))
|
|
job.SetError(err)
|
|
}
|
|
}
|