mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-07 19:31:51 +08:00
related: #40838 pr: https://github.com/milvus-io/milvus/pull/41549 Signed-off-by: MrPresent-Han <chun.han@gmail.com>
79 lines
2.1 KiB
C++
79 lines
2.1 KiB
C++
// 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.
|
|
|
|
#pragma once
|
|
|
|
#include <iostream>
|
|
#include <utility>
|
|
#include <variant>
|
|
#include "common/Consts.h"
|
|
|
|
namespace milvus {
|
|
|
|
extern int64_t FILE_SLICE_SIZE;
|
|
extern float HIGH_PRIORITY_THREAD_CORE_COEFFICIENT;
|
|
extern float MIDDLE_PRIORITY_THREAD_CORE_COEFFICIENT;
|
|
extern float LOW_PRIORITY_THREAD_CORE_COEFFICIENT;
|
|
extern int CPU_NUM;
|
|
extern int64_t EXEC_EVAL_EXPR_BATCH_SIZE;
|
|
extern int64_t JSON_KEY_STATS_COMMIT_INTERVAL;
|
|
extern bool OPTIMIZE_EXPR_ENABLED;
|
|
extern bool GROWING_JSON_KEY_STATS_ENABLED;
|
|
extern bool CONFIG_PARAM_TYPE_CHECK_ENABLED;
|
|
|
|
void
|
|
SetIndexSliceSize(const int64_t size);
|
|
|
|
void
|
|
SetHighPriorityThreadCoreCoefficient(const float coefficient);
|
|
|
|
void
|
|
SetMiddlePriorityThreadCoreCoefficient(const float coefficient);
|
|
|
|
void
|
|
SetLowPriorityThreadCoreCoefficient(const float coefficient);
|
|
|
|
void
|
|
SetCpuNum(const int core);
|
|
|
|
void
|
|
SetDefaultExecEvalExprBatchSize(int64_t val);
|
|
|
|
void
|
|
SetDefaultOptimizeExprEnable(bool val);
|
|
|
|
void
|
|
SetDefaultJSONKeyStatsCommitInterval(int64_t val);
|
|
|
|
void
|
|
SetDefaultGrowingJSONKeyStatsEnable(bool val);
|
|
|
|
void
|
|
SetDefaultConfigParamTypeCheck(bool val);
|
|
|
|
struct BufferView {
|
|
struct Element {
|
|
const char* data_;
|
|
uint32_t* offsets_;
|
|
int start_;
|
|
int end_;
|
|
};
|
|
|
|
std::variant<std::vector<Element>, std::pair<char*, size_t>> data_;
|
|
};
|
|
|
|
} // namespace milvus
|