2024-01-05 03:48:47 +00:00
|
|
|
// 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 importutilv2
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"math"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
|
2024-08-21 09:47:01 +00:00
|
|
|
"github.com/samber/lo"
|
|
|
|
|
2024-01-05 03:48:47 +00:00
|
|
|
"github.com/milvus-io/milvus-proto/go-api/v2/commonpb"
|
|
|
|
"github.com/milvus-io/milvus/pkg/util/funcutil"
|
|
|
|
"github.com/milvus-io/milvus/pkg/util/merr"
|
|
|
|
"github.com/milvus-io/milvus/pkg/util/tsoutil"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
StartTs = "start_ts"
|
2024-03-24 13:57:06 +00:00
|
|
|
StartTs2 = "startTs"
|
2024-01-05 03:48:47 +00:00
|
|
|
EndTs = "end_ts"
|
2024-03-24 13:57:06 +00:00
|
|
|
EndTs2 = "endTs"
|
2024-01-05 03:48:47 +00:00
|
|
|
BackupFlag = "backup"
|
2024-06-07 06:17:20 +00:00
|
|
|
L0Import = "l0_import"
|
2024-08-05 08:40:16 +00:00
|
|
|
SkipDQC = "skip_disk_quota_check"
|
2024-01-05 03:48:47 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Options []*commonpb.KeyValuePair
|
|
|
|
|
|
|
|
func ParseTimeRange(options Options) (uint64, uint64, error) {
|
|
|
|
importOptions := funcutil.KeyValuePair2Map(options)
|
2024-03-24 13:57:06 +00:00
|
|
|
getTimestamp := func(defaultValue uint64, targetKeys ...string) (uint64, error) {
|
|
|
|
for _, targetKey := range targetKeys {
|
|
|
|
for key, value := range importOptions {
|
|
|
|
if strings.EqualFold(key, targetKey) {
|
|
|
|
pTs, err := strconv.ParseInt(value, 10, 64)
|
|
|
|
if err != nil {
|
|
|
|
return 0, merr.WrapErrImportFailed(fmt.Sprintf("parse %s failed, value=%s, err=%s", targetKey, value, err))
|
|
|
|
}
|
|
|
|
return tsoutil.ComposeTS(pTs, 0), nil
|
|
|
|
}
|
2024-01-05 03:48:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return defaultValue, nil
|
|
|
|
}
|
2024-03-24 13:57:06 +00:00
|
|
|
tsStart, err := getTimestamp(0, StartTs, StartTs2)
|
2024-01-05 03:48:47 +00:00
|
|
|
if err != nil {
|
|
|
|
return 0, 0, err
|
|
|
|
}
|
2024-03-24 13:57:06 +00:00
|
|
|
tsEnd, err := getTimestamp(math.MaxUint64, EndTs, EndTs2)
|
2024-01-05 03:48:47 +00:00
|
|
|
if err != nil {
|
|
|
|
return 0, 0, err
|
|
|
|
}
|
|
|
|
if tsStart > tsEnd {
|
|
|
|
return 0, 0, merr.WrapErrImportFailed(
|
|
|
|
fmt.Sprintf("start_ts shouldn't be larger than end_ts, start_ts:%d, end_ts:%d", tsStart, tsEnd))
|
|
|
|
}
|
|
|
|
return tsStart, tsEnd, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsBackup(options Options) bool {
|
|
|
|
isBackup, err := funcutil.GetAttrByKeyFromRepeatedKV(BackupFlag, options)
|
|
|
|
if err != nil || strings.ToLower(isBackup) != "true" {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
2024-06-07 06:17:20 +00:00
|
|
|
|
|
|
|
func IsL0Import(options Options) bool {
|
|
|
|
isL0Import, err := funcutil.GetAttrByKeyFromRepeatedKV(L0Import, options)
|
|
|
|
if err != nil || strings.ToLower(isL0Import) != "true" {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
2024-08-05 08:40:16 +00:00
|
|
|
|
|
|
|
// SkipDiskQuotaCheck indicates whether the import skips the disk quota check.
|
|
|
|
// This option should only be enabled during backup restoration.
|
|
|
|
func SkipDiskQuotaCheck(options Options) bool {
|
|
|
|
if !IsBackup(options) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
skip, err := funcutil.GetAttrByKeyFromRepeatedKV(SkipDQC, options)
|
|
|
|
if err != nil || strings.ToLower(skip) != "true" {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
2024-08-21 09:47:01 +00:00
|
|
|
|
|
|
|
func GetCSVSep(options Options) (rune, error) {
|
|
|
|
sep, err := funcutil.GetAttrByKeyFromRepeatedKV("sep", options)
|
|
|
|
unsupportedSep := []rune{0, '\n', '\r', '"'}
|
|
|
|
defaultSep := ','
|
|
|
|
if err != nil || len(sep) == 0 {
|
|
|
|
return defaultSep, nil
|
|
|
|
} else if lo.Contains(unsupportedSep, []rune(sep)[0]) {
|
|
|
|
return 0, merr.WrapErrImportFailed(fmt.Sprintf("unsupported csv separator: %s", sep))
|
|
|
|
}
|
|
|
|
return []rune(sep)[0], nil
|
|
|
|
}
|
2024-09-09 11:17:07 +00:00
|
|
|
|
|
|
|
func GetCSVNullKey(options Options) (string, error) {
|
|
|
|
nullKey, err := funcutil.GetAttrByKeyFromRepeatedKV("nullkey", options)
|
|
|
|
defaultNullKey := ""
|
|
|
|
if err != nil || len(nullKey) == 0 {
|
|
|
|
return defaultNullKey, nil
|
|
|
|
}
|
|
|
|
return nullKey, nil
|
|
|
|
}
|