2022-10-08 15:38:58 +08: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 paramtable
|
|
|
|
|
|
|
|
import (
|
2023-05-29 20:35:28 +08:00
|
|
|
"fmt"
|
|
|
|
|
2024-06-18 21:34:01 +08:00
|
|
|
"github.com/milvus-io/milvus-proto/go-api/v2/schemapb"
|
2023-09-21 09:45:27 +08:00
|
|
|
"github.com/milvus-io/milvus/pkg/common"
|
2023-05-29 20:35:28 +08:00
|
|
|
"github.com/milvus-io/milvus/pkg/config"
|
|
|
|
"github.com/milvus-io/milvus/pkg/util/funcutil"
|
|
|
|
"github.com/milvus-io/milvus/pkg/util/indexparamcheck"
|
2022-10-08 15:38:58 +08:00
|
|
|
)
|
|
|
|
|
2023-02-26 11:31:49 +08:00
|
|
|
// /////////////////////////////////////////////////////////////////////////////
|
2022-10-08 15:38:58 +08:00
|
|
|
// --- common ---
|
|
|
|
type autoIndexConfig struct {
|
2023-12-28 10:04:46 +08:00
|
|
|
Enable ParamItem `refreshable:"true"`
|
|
|
|
EnableOptimize ParamItem `refreshable:"true"`
|
2022-10-08 15:38:58 +08:00
|
|
|
|
2023-08-31 10:25:01 +08:00
|
|
|
IndexParams ParamItem `refreshable:"true"`
|
2024-06-18 21:34:01 +08:00
|
|
|
SparseIndexParams ParamItem `refreshable:"true"`
|
|
|
|
BinaryIndexParams ParamItem `refreshable:"true"`
|
2023-10-25 19:54:12 +08:00
|
|
|
PrepareParams ParamItem `refreshable:"true"`
|
2024-06-18 21:34:01 +08:00
|
|
|
LoadAdaptParams ParamItem `refreshable:"true"`
|
2023-08-31 10:25:01 +08:00
|
|
|
ExtraParams ParamItem `refreshable:"true"`
|
|
|
|
IndexType ParamItem `refreshable:"true"`
|
|
|
|
AutoIndexTypeName ParamItem `refreshable:"true"`
|
|
|
|
AutoIndexSearchConfig ParamItem `refreshable:"true"`
|
|
|
|
AutoIndexTuningConfig ParamGroup `refreshable:"true"`
|
2024-03-21 10:37:08 +08:00
|
|
|
|
|
|
|
ScalarAutoIndexEnable ParamItem `refreshable:"true"`
|
|
|
|
ScalarAutoIndexParams ParamItem `refreshable:"true"`
|
|
|
|
ScalarNumericIndexType ParamItem `refreshable:"true"`
|
|
|
|
ScalarVarcharIndexType ParamItem `refreshable:"true"`
|
|
|
|
ScalarBoolIndexType ParamItem `refreshable:"true"`
|
2022-10-08 15:38:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *autoIndexConfig) init(base *BaseTable) {
|
2022-12-07 18:01:19 +08:00
|
|
|
p.Enable = ParamItem{
|
|
|
|
Key: "autoIndex.enable",
|
|
|
|
Version: "2.2.0",
|
|
|
|
DefaultValue: "false",
|
|
|
|
PanicIfEmpty: true,
|
2022-10-08 15:38:58 +08:00
|
|
|
}
|
2022-12-07 18:01:19 +08:00
|
|
|
p.Enable.Init(base.mgr)
|
2023-12-28 10:04:46 +08:00
|
|
|
|
|
|
|
p.EnableOptimize = ParamItem{
|
|
|
|
Key: "autoIndex.optimize",
|
|
|
|
Version: "2.4.0",
|
|
|
|
DefaultValue: "true",
|
|
|
|
PanicIfEmpty: true,
|
|
|
|
}
|
|
|
|
p.EnableOptimize.Init(base.mgr)
|
2022-10-08 15:38:58 +08:00
|
|
|
|
2022-12-07 18:01:19 +08:00
|
|
|
p.IndexParams = ParamItem{
|
2023-05-29 20:35:28 +08:00
|
|
|
Key: "autoIndex.params.build",
|
|
|
|
Version: "2.2.0",
|
2023-06-19 09:54:41 +08:00
|
|
|
DefaultValue: `{"M": 18,"efConstruction": 240,"index_type": "HNSW", "metric_type": "IP"}`,
|
2024-04-16 16:17:19 +08:00
|
|
|
Export: true,
|
2022-10-08 15:38:58 +08:00
|
|
|
}
|
2022-12-07 18:01:19 +08:00
|
|
|
p.IndexParams.Init(base.mgr)
|
2022-10-08 15:38:58 +08:00
|
|
|
|
2024-06-18 21:34:01 +08:00
|
|
|
p.SparseIndexParams = ParamItem{
|
|
|
|
Key: "autoIndex.params.sparse.build",
|
|
|
|
Version: "2.4.5",
|
|
|
|
DefaultValue: `{"index_type": "SPARSE_INVERTED_INDEX", "metric_type": "IP"}`,
|
|
|
|
Export: true,
|
|
|
|
}
|
|
|
|
p.SparseIndexParams.Init(base.mgr)
|
|
|
|
|
|
|
|
p.BinaryIndexParams = ParamItem{
|
|
|
|
Key: "autoIndex.params.binary.build",
|
|
|
|
Version: "2.4.5",
|
|
|
|
DefaultValue: `{"nlist": 1024, "index_type": "BIN_IVF_FLAT", "metric_type": "JACCARD"}`,
|
|
|
|
Export: true,
|
|
|
|
}
|
|
|
|
p.BinaryIndexParams.Init(base.mgr)
|
|
|
|
|
2023-10-25 19:54:12 +08:00
|
|
|
p.PrepareParams = ParamItem{
|
|
|
|
Key: "autoIndex.params.prepare",
|
|
|
|
Version: "2.3.2",
|
|
|
|
}
|
|
|
|
p.PrepareParams.Init(base.mgr)
|
|
|
|
|
2024-06-18 21:34:01 +08:00
|
|
|
p.LoadAdaptParams = ParamItem{
|
|
|
|
Key: "autoIndex.params.load",
|
|
|
|
Version: "2.4.5",
|
|
|
|
}
|
|
|
|
p.LoadAdaptParams.Init(base.mgr)
|
|
|
|
|
2022-12-07 18:01:19 +08:00
|
|
|
p.ExtraParams = ParamItem{
|
|
|
|
Key: "autoIndex.params.extra",
|
|
|
|
Version: "2.2.0",
|
2022-10-08 15:38:58 +08:00
|
|
|
}
|
2022-12-07 18:01:19 +08:00
|
|
|
p.ExtraParams.Init(base.mgr)
|
|
|
|
|
|
|
|
p.IndexType = ParamItem{
|
|
|
|
Version: "2.2.0",
|
|
|
|
Formatter: func(v string) string {
|
|
|
|
m := p.IndexParams.GetAsJSONMap()
|
|
|
|
if m == nil {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
return m[common.IndexTypeKey]
|
|
|
|
},
|
2022-10-14 17:51:24 +08:00
|
|
|
}
|
2022-12-07 18:01:19 +08:00
|
|
|
p.IndexType.Init(base.mgr)
|
2022-10-08 15:38:58 +08:00
|
|
|
|
2022-12-07 18:01:19 +08:00
|
|
|
p.AutoIndexTypeName = ParamItem{
|
|
|
|
Key: "autoIndex.type",
|
|
|
|
Version: "2.2.0",
|
2022-10-08 15:38:58 +08:00
|
|
|
}
|
2022-12-07 18:01:19 +08:00
|
|
|
p.AutoIndexTypeName.Init(base.mgr)
|
2023-05-29 20:35:28 +08:00
|
|
|
|
2023-08-31 10:25:01 +08:00
|
|
|
p.AutoIndexSearchConfig = ParamItem{
|
|
|
|
Key: "autoindex.params.search",
|
|
|
|
Version: "2.2.0",
|
|
|
|
}
|
|
|
|
p.AutoIndexSearchConfig.Init(base.mgr)
|
|
|
|
|
|
|
|
p.AutoIndexTuningConfig = ParamGroup{
|
|
|
|
KeyPrefix: "autoindex.params.tuning.",
|
|
|
|
Version: "2.3.0",
|
|
|
|
}
|
|
|
|
p.AutoIndexTuningConfig.Init(base.mgr)
|
|
|
|
|
2023-05-29 20:35:28 +08:00
|
|
|
p.panicIfNotValidAndSetDefaultMetricType(base.mgr)
|
2024-03-21 10:37:08 +08:00
|
|
|
|
|
|
|
p.ScalarAutoIndexEnable = ParamItem{
|
|
|
|
Key: "scalarAutoIndex.enable",
|
2024-05-07 10:13:00 +08:00
|
|
|
Version: "2.4.0",
|
2024-03-21 10:37:08 +08:00
|
|
|
DefaultValue: "false",
|
|
|
|
PanicIfEmpty: true,
|
|
|
|
}
|
|
|
|
p.ScalarAutoIndexEnable.Init(base.mgr)
|
|
|
|
|
|
|
|
p.ScalarAutoIndexParams = ParamItem{
|
|
|
|
Key: "scalarAutoIndex.params.build",
|
2024-05-07 10:13:00 +08:00
|
|
|
Version: "2.4.0",
|
2024-03-21 10:37:08 +08:00
|
|
|
DefaultValue: `{"numeric": "INVERTED","varchar": "INVERTED","bool": "INVERTED"}`,
|
|
|
|
}
|
|
|
|
p.ScalarAutoIndexParams.Init(base.mgr)
|
|
|
|
|
|
|
|
p.ScalarNumericIndexType = ParamItem{
|
|
|
|
Version: "2.4.0",
|
|
|
|
Formatter: func(v string) string {
|
|
|
|
m := p.ScalarAutoIndexParams.GetAsJSONMap()
|
|
|
|
if m == nil {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
return m["numeric"]
|
|
|
|
},
|
|
|
|
}
|
|
|
|
p.ScalarNumericIndexType.Init(base.mgr)
|
|
|
|
|
|
|
|
p.ScalarVarcharIndexType = ParamItem{
|
|
|
|
Version: "2.4.0",
|
|
|
|
Formatter: func(v string) string {
|
|
|
|
m := p.ScalarAutoIndexParams.GetAsJSONMap()
|
|
|
|
if m == nil {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
return m["varchar"]
|
|
|
|
},
|
|
|
|
}
|
|
|
|
p.ScalarVarcharIndexType.Init(base.mgr)
|
|
|
|
|
|
|
|
p.ScalarBoolIndexType = ParamItem{
|
|
|
|
Version: "2.4.0",
|
|
|
|
Formatter: func(v string) string {
|
|
|
|
m := p.ScalarAutoIndexParams.GetAsJSONMap()
|
|
|
|
if m == nil {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
return m["bool"]
|
|
|
|
},
|
|
|
|
}
|
|
|
|
p.ScalarBoolIndexType.Init(base.mgr)
|
2023-05-29 20:35:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *autoIndexConfig) panicIfNotValidAndSetDefaultMetricType(mgr *config.Manager) {
|
2024-06-18 21:34:01 +08:00
|
|
|
p.panicIfNotValidAndSetDefaultMetricTypeHelper(p.IndexParams.Key, p.IndexParams.GetAsJSONMap(), schemapb.DataType_FloatVector, mgr)
|
|
|
|
p.panicIfNotValidAndSetDefaultMetricTypeHelper(p.BinaryIndexParams.Key, p.BinaryIndexParams.GetAsJSONMap(), schemapb.DataType_BinaryVector, mgr)
|
|
|
|
p.panicIfNotValidAndSetDefaultMetricTypeHelper(p.SparseIndexParams.Key, p.SparseIndexParams.GetAsJSONMap(), schemapb.DataType_SparseFloatVector, mgr)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *autoIndexConfig) panicIfNotValidAndSetDefaultMetricTypeHelper(key string, m map[string]string, dtype schemapb.DataType, mgr *config.Manager) {
|
2023-05-29 20:35:28 +08:00
|
|
|
if m == nil {
|
2024-06-18 21:34:01 +08:00
|
|
|
panic(fmt.Sprintf("%s invalid, should be json format", key))
|
2023-05-29 20:35:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
indexType, ok := m[common.IndexTypeKey]
|
|
|
|
if !ok {
|
2024-06-18 21:34:01 +08:00
|
|
|
panic(fmt.Sprintf("%s invalid, index type not found", key))
|
2023-05-29 20:35:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
checker, err := indexparamcheck.GetIndexCheckerMgrInstance().GetChecker(indexType)
|
|
|
|
if err != nil {
|
2024-06-18 21:34:01 +08:00
|
|
|
panic(fmt.Sprintf("%s invalid, unsupported index type: %s", key, indexType))
|
2023-05-29 20:35:28 +08:00
|
|
|
}
|
|
|
|
|
2024-06-18 21:34:01 +08:00
|
|
|
checker.SetDefaultMetricTypeIfNotExist(m, dtype)
|
2023-05-29 20:35:28 +08:00
|
|
|
|
|
|
|
if err := checker.StaticCheck(m); err != nil {
|
2024-06-18 21:34:01 +08:00
|
|
|
panic(fmt.Sprintf("%s invalid, parameters invalid, error: %s", key, err.Error()))
|
2023-05-29 20:35:28 +08:00
|
|
|
}
|
|
|
|
|
2024-06-18 21:34:01 +08:00
|
|
|
p.reset(key, m, mgr)
|
2023-05-29 20:35:28 +08:00
|
|
|
}
|
|
|
|
|
2024-06-18 21:34:01 +08:00
|
|
|
func (p *autoIndexConfig) reset(key string, m map[string]string, mgr *config.Manager) {
|
2023-05-29 20:35:28 +08:00
|
|
|
j := funcutil.MapToJSON(m)
|
2024-06-18 21:34:01 +08:00
|
|
|
mgr.SetConfig(key, string(j))
|
2022-10-08 15:38:58 +08:00
|
|
|
}
|