mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-29 06:55:27 +08:00
* rewrite HasPartition Signed-off-by: yhmo <yihua.mo@zilliz.com> * miss file Signed-off-by: yhmo <yihua.mo@zilliz.com> * use layered merge Signed-off-by: yhmo <yihua.mo@zilliz.com> * changelog Signed-off-by: yhmo <yihua.mo@zilliz.com> * sdk HasPartition Signed-off-by: yhmo <yihua.mo@zilliz.com> * rename sdk api Signed-off-by: yhmo <yihua.mo@zilliz.com> * fix ut Signed-off-by: groot <yihua.mo@zilliz.com> Co-authored-by: JinHai-CN <hai.jin@zilliz.com>
114 lines
3.0 KiB
C++
114 lines
3.0 KiB
C++
// Copyright (C) 2019-2020 Zilliz. All rights reserved.
|
|
//
|
|
// Licensed 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.
|
|
|
|
#include "server/utils.h"
|
|
#include "utils/CommonUtil.h"
|
|
|
|
#include <fstream>
|
|
#include <iostream>
|
|
#include <string>
|
|
#include <thread>
|
|
|
|
namespace {
|
|
|
|
static const char* VALID_CONFIG_STR =
|
|
"# Default values are used when you make no changes to the following parameters.\n"
|
|
"\n"
|
|
"version: 0.4"
|
|
"\n"
|
|
"server_config:\n"
|
|
" address: 0.0.0.0\n"
|
|
" port: 19530\n"
|
|
" deploy_mode: single\n"
|
|
" time_zone: UTC+8\n"
|
|
" web_enable: true\n"
|
|
" web_port: 19121\n"
|
|
"\n"
|
|
"db_config:\n"
|
|
" backend_url: sqlite://:@:/\n"
|
|
" preload_collection:\n"
|
|
" auto_flush_interval: 1\n"
|
|
"\n"
|
|
"storage_config:\n"
|
|
" primary_path: /tmp/milvus\n"
|
|
" secondary_path:\n"
|
|
" file_cleanup_timeout: 10\n"
|
|
"\n"
|
|
"metric_config:\n"
|
|
" enable_monitor: false\n"
|
|
" address: 127.0.0.1\n"
|
|
" port: 9091\n"
|
|
"\n"
|
|
"cache_config:\n"
|
|
" cpu_cache_capacity: 4\n"
|
|
" insert_buffer_size: 1\n"
|
|
" cache_insert_data: false\n"
|
|
"\n"
|
|
"engine_config:\n"
|
|
" use_blas_threshold: 1100\n"
|
|
" gpu_search_threshold: 1000\n"
|
|
"\n"
|
|
"gpu_resource_config:\n"
|
|
" enable: true\n"
|
|
" cache_capacity: 1\n"
|
|
" search_resources:\n"
|
|
" - gpu0\n"
|
|
" build_index_resources:\n"
|
|
" - gpu0\n"
|
|
"\n"
|
|
"tracing_config:\n"
|
|
" json_config_path:\n"
|
|
"\n"
|
|
"wal_config:\n"
|
|
" enable: true\n"
|
|
" recovery_error_ignore: true\n"
|
|
" buffer_size: 256\n"
|
|
" wal_path: /tmp/milvus/wal\n"
|
|
"\n"
|
|
"logs:\n"
|
|
" trace.enable: true\n"
|
|
" debug.enable: true\n"
|
|
" info.enable: true\n"
|
|
" warning.enable: true\n"
|
|
" error.enable: true\n"
|
|
" fatal.enable: true\n"
|
|
" path: /tmp/milvus/logs\n"
|
|
" max_log_file_size: 256\n"
|
|
" delete_exceeds: 10\n"
|
|
"";
|
|
|
|
static const char* INVALID_CONFIG_STR = "*INVALID*";
|
|
|
|
void
|
|
WriteToFile(const std::string& file_path, const char* content) {
|
|
std::fstream fs(file_path.c_str(), std::ios_base::out);
|
|
|
|
// write data to file
|
|
fs << content;
|
|
fs.close();
|
|
}
|
|
|
|
} // namespace
|
|
|
|
void
|
|
ConfigTest::SetUp() {
|
|
std::string config_path(CONFIG_PATH);
|
|
milvus::server::CommonUtil::CreateDirectory(config_path);
|
|
WriteToFile(config_path + VALID_CONFIG_FILE, VALID_CONFIG_STR);
|
|
WriteToFile(config_path + INVALID_CONFIG_FILE, INVALID_CONFIG_STR);
|
|
}
|
|
|
|
void
|
|
ConfigTest::TearDown() {
|
|
std::string config_path(CONFIG_PATH);
|
|
milvus::server::CommonUtil::DeleteDirectory(config_path);
|
|
}
|