zhagnlu c04d678ad4
enhance: make segcore params effective without restarting milvus (#43231)
#43230

Signed-off-by: luzhang <luzhang@zilliz.com>
Co-authored-by: luzhang <luzhang@zilliz.com>
2025-08-08 10:33:48 +08:00

72 lines
2.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 paramtable
/*
#cgo pkg-config: milvus_core
#include <stdlib.h>
#include <stdint.h>
#include <stdbool.h>
#include "common/init_c.h"
*/
import "C"
import "unsafe"
func UpdateLogLevel(level string) error {
cvalue := C.CString(level)
C.SetLogLevel(cvalue)
C.free(unsafe.Pointer(cvalue))
return nil
}
func UpdateIndexSliceSize(size int) {
C.SetIndexSliceSize(C.int64_t(size))
}
func UpdateHighPriorityThreadCoreCoefficient(coefficient float64) {
C.SetHighPriorityThreadCoreCoefficient(C.float(coefficient))
}
func UpdateMiddlePriorityThreadCoreCoefficient(coefficient float64) {
C.SetMiddlePriorityThreadCoreCoefficient(C.float(coefficient))
}
func UpdateLowPriorityThreadCoreCoefficient(coefficient float64) {
C.SetLowPriorityThreadCoreCoefficient(C.float(coefficient))
}
func UpdateDefaultExprEvalBatchSize(size int) {
C.SetDefaultExprEvalBatchSize(C.int64_t(size))
}
func UpdateDefaultOptimizeExprEnable(enable bool) {
C.SetDefaultOptimizeExprEnable(C.bool(enable))
}
func UpdateDefaultJSONKeyStatsCommitInterval(interval int) {
C.SetDefaultJSONKeyStatsCommitInterval(C.int64_t(interval))
}
func UpdateDefaultGrowingJSONKeyStatsEnable(enable bool) {
C.SetDefaultGrowingJSONKeyStatsEnable(C.bool(enable))
}
func UpdateDefaultConfigParamTypeCheck(enable bool) {
C.SetDefaultConfigParamTypeCheck(C.bool(enable))
}