mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 11:59:00 +08:00
c408a32db6
Return quota error when the files to be imported exceed the disk quota. issue: https://github.com/milvus-io/milvus/issues/28521 --------- Signed-off-by: bigsheeper <yihao.dai@zilliz.com>
100 lines
2.9 KiB
Go
100 lines
2.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 datacoord
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/golang/protobuf/proto"
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/v2/commonpb"
|
|
"github.com/milvus-io/milvus-proto/go-api/v2/schemapb"
|
|
"github.com/milvus-io/milvus/internal/proto/datapb"
|
|
"github.com/milvus-io/milvus/internal/proto/internalpb"
|
|
"github.com/milvus-io/milvus/pkg/util/tsoutil"
|
|
)
|
|
|
|
type ImportJobFilter func(job ImportJob) bool
|
|
|
|
func WithCollectionID(collectionID int64) ImportJobFilter {
|
|
return func(job ImportJob) bool {
|
|
return job.GetCollectionID() == collectionID
|
|
}
|
|
}
|
|
|
|
type UpdateJobAction func(job ImportJob)
|
|
|
|
func UpdateJobState(state internalpb.ImportJobState) UpdateJobAction {
|
|
return func(job ImportJob) {
|
|
job.(*importJob).ImportJob.State = state
|
|
if state == internalpb.ImportJobState_Completed || state == internalpb.ImportJobState_Failed {
|
|
// releases requested disk resource
|
|
job.(*importJob).ImportJob.RequestedDiskSize = 0
|
|
// set cleanup ts
|
|
dur := Params.DataCoordCfg.ImportTaskRetention.GetAsDuration(time.Second)
|
|
cleanupTs := tsoutil.ComposeTSByTime(time.Now().Add(dur), 0)
|
|
job.(*importJob).ImportJob.CleanupTs = cleanupTs
|
|
}
|
|
}
|
|
}
|
|
|
|
func UpdateJobReason(reason string) UpdateJobAction {
|
|
return func(job ImportJob) {
|
|
job.(*importJob).ImportJob.Reason = reason
|
|
}
|
|
}
|
|
|
|
func UpdateRequestedDiskSize(requestSize int64) UpdateJobAction {
|
|
return func(job ImportJob) {
|
|
job.(*importJob).ImportJob.RequestedDiskSize = requestSize
|
|
}
|
|
}
|
|
|
|
func UpdateJobCompleteTime(completeTime string) UpdateJobAction {
|
|
return func(job ImportJob) {
|
|
job.(*importJob).ImportJob.CompleteTime = completeTime
|
|
}
|
|
}
|
|
|
|
type ImportJob interface {
|
|
GetJobID() int64
|
|
GetCollectionID() int64
|
|
GetCollectionName() string
|
|
GetPartitionIDs() []int64
|
|
GetVchannels() []string
|
|
GetSchema() *schemapb.CollectionSchema
|
|
GetTimeoutTs() uint64
|
|
GetCleanupTs() uint64
|
|
GetState() internalpb.ImportJobState
|
|
GetReason() string
|
|
GetRequestedDiskSize() int64
|
|
GetCompleteTime() string
|
|
GetFiles() []*internalpb.ImportFile
|
|
GetOptions() []*commonpb.KeyValuePair
|
|
Clone() ImportJob
|
|
}
|
|
|
|
type importJob struct {
|
|
*datapb.ImportJob
|
|
}
|
|
|
|
func (j *importJob) Clone() ImportJob {
|
|
return &importJob{
|
|
ImportJob: proto.Clone(j.ImportJob).(*datapb.ImportJob),
|
|
}
|
|
}
|