mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-29 23:15:28 +08:00
* enable cron test on 0.10.0 Signed-off-by: zw <zw@milvus.io> * fix merge result Signed-off-by: shengjun.li <shengjun.li@zilliz.com> * import test_during_creating_index_restart Signed-off-by: zw <zw@milvus.io> * config cluster Signed-off-by: wxyu <xy.wang@zilliz.com> * config general Signed-off-by: wxyu <xy.wang@zilliz.com> * config network Signed-off-by: wxyu <xy.wang@zilliz.com> * config storage Signed-off-by: wxyu <xy.wang@zilliz.com> * config wal Signed-off-by: wxyu <xy.wang@zilliz.com> * config cache Signed-off-by: wxyu <xy.wang@zilliz.com> * config gpu and metrics Signed-off-by: wxyu <xy.wang@zilliz.com> * config logs Signed-off-by: wxyu <xy.wang@zilliz.com> * update server_config.template Signed-off-by: wxyu <xy.wang@zilliz.com> * update changelog Signed-off-by: wxyu <xy.wang@zilliz.com> * config with unit Signed-off-by: wxyu <xy.wang@zilliz.com> * fix clang-format Signed-off-by: wxyu <xy.wang@zilliz.com> * update unittests Signed-off-by: wxyu <xy.wang@zilliz.com> * disable restart case Signed-off-by: zw <zw@milvus.io> * fix gpu compile failed Signed-off-by: wxyu <xy.wang@zilliz.com> * Fix lint and comments Signed-off-by: JinHai-CN <hai.jin@zilliz.com> * fix wal unittest failed Signed-off-by: wxyu <xy.wang@zilliz.com> * fix some unittests Signed-off-by: wxyu <xy.wang@zilliz.com> * update config test cases Signed-off-by: zw <zw@milvus.io> * Fix config error Signed-off-by: yhz <413554850@qq.com> * remove unused code Signed-off-by: wxyu <xy.wang@zilliz.com> * Update CHANGELOG Signed-off-by: JinHai-CN <hai.jin@zilliz.com> * [skip-ci] fix test cases Signed-off-by: zw <zw@milvus.io> * fix config storage Signed-off-by: wxyu <xy.wang@zilliz.com> * make -j3 on ci Signed-off-by: wxyu <xy.wang@zilliz.com> * update python test Signed-off-by: wxyu <xy.wang@zilliz.com> * remove unused code Signed-off-by: wxyu <xy.wang@zilliz.com> * fix ut Signed-off-by: wxyu <xy.wang@zilliz.com> * fix ut Signed-off-by: wxyu <xy.wang@zilliz.com> * update status message Signed-off-by: wxyu <xy.wang@zilliz.com> * update Signed-off-by: wxyu <xy.wang@zilliz.com> * fix set config bug Signed-off-by: wxyu <xy.wang@zilliz.com> Co-authored-by: zw <zw@milvus.io> Co-authored-by: shengjun.li <shengjun.li@zilliz.com> Co-authored-by: JinHai-CN <hai.jin@zilliz.com> Co-authored-by: yhz <413554850@qq.com>
173 lines
4.3 KiB
C++
173 lines
4.3 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.5\n"
|
|
"\n"
|
|
"cluster:\n"
|
|
" enable: false\n"
|
|
" role: rw\n"
|
|
"\n"
|
|
"general:\n"
|
|
" timezone: UTC+8\n"
|
|
" meta_uri: sqlite://:@:/\n"
|
|
"\n"
|
|
"network:\n"
|
|
" bind.address: 0.0.0.0\n"
|
|
" bind.port: 19530\n"
|
|
" http.enable: true\n"
|
|
" http.port: 19121\n"
|
|
"\n"
|
|
"storage:\n"
|
|
" path: /tmp/milvus\n"
|
|
" auto_flush_interval: 1\n"
|
|
"\n"
|
|
"wal:\n"
|
|
" enable: true\n"
|
|
" recovery_error_ignore: false\n"
|
|
" buffer_size: 256MB\n"
|
|
" path: /tmp/milvus/wal\n"
|
|
"\n"
|
|
"cache:\n"
|
|
" cache_size: 4GB\n"
|
|
" insert_buffer_size: 1GB\n"
|
|
" preload_collection:\n"
|
|
"\n"
|
|
"gpu:\n"
|
|
" enable: true\n"
|
|
" cache_size: 1GB\n"
|
|
" gpu_search_threshold: 1000\n"
|
|
" search_devices:\n"
|
|
" - gpu0\n"
|
|
" build_index_devices:\n"
|
|
" - gpu0\n"
|
|
"\n"
|
|
"logs:\n"
|
|
" level: debug\n"
|
|
" trace.enable: true\n"
|
|
" path: /tmp/milvus/logs\n"
|
|
" max_log_file_size: 1024MB\n"
|
|
" log_rotate_num: 0\n"
|
|
"\n"
|
|
"metric:\n"
|
|
" enable: false\n"
|
|
" address: 127.0.0.1\n"
|
|
" port: 9091\n"
|
|
"\n";
|
|
|
|
/*
|
|
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);
|
|
}
|