2019-10-19 08:48:56 +00:00
|
|
|
// Licensed to the Apache Software Foundation (ASF) 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.
|
|
|
|
|
|
|
|
#include "server/utils.h"
|
|
|
|
|
2019-10-19 09:52:51 +00:00
|
|
|
#include <fstream>
|
2019-10-19 08:48:56 +00:00
|
|
|
#include <iostream>
|
|
|
|
#include <thread>
|
|
|
|
#include <string>
|
|
|
|
#include <boost/filesystem.hpp>
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2019-10-19 09:08:50 +00:00
|
|
|
static const char
|
|
|
|
* VALID_CONFIG_STR = "# Default values are used when you make no changes to the following parameters.\n"
|
|
|
|
"\n"
|
|
|
|
"server_config:\n"
|
|
|
|
" address: 0.0.0.0 # milvus server ip address (IPv4)\n"
|
|
|
|
" port: 19530 # port range: 1025 ~ 65534\n"
|
|
|
|
" deploy_mode: single \n"
|
|
|
|
" time_zone: UTC+8\n"
|
|
|
|
"\n"
|
|
|
|
"db_config:\n"
|
|
|
|
" primary_path: /tmp/milvus # path used to store data and meta\n"
|
|
|
|
" secondary_path: # path used to store data only, split by semicolon\n"
|
|
|
|
"\n"
|
|
|
|
" backend_url: sqlite://:@:/ \n"
|
|
|
|
"\n"
|
|
|
|
" insert_buffer_size: 4 # GB, maximum insert buffer size allowed\n"
|
|
|
|
" preload_table: \n"
|
|
|
|
"\n"
|
|
|
|
"metric_config:\n"
|
|
|
|
" enable_monitor: false # enable monitoring or not\n"
|
|
|
|
" collector: prometheus # prometheus\n"
|
|
|
|
" prometheus_config:\n"
|
|
|
|
" port: 8080 # port prometheus uses to fetch metrics\n"
|
|
|
|
"\n"
|
|
|
|
"cache_config:\n"
|
|
|
|
" cpu_cache_capacity: 16 # GB, CPU memory used for cache\n"
|
|
|
|
" cpu_cache_threshold: 0.85 \n"
|
|
|
|
" gpu_cache_capacity: 4 # GB, GPU memory used for cache\n"
|
|
|
|
" gpu_cache_threshold: 0.85 \n"
|
|
|
|
" cache_insert_data: false # whether to load inserted data into cache\n"
|
|
|
|
"\n"
|
|
|
|
"engine_config:\n"
|
|
|
|
" use_blas_threshold: 20 \n"
|
|
|
|
"\n"
|
|
|
|
"resource_config:\n"
|
|
|
|
" search_resources: \n"
|
|
|
|
" - gpu0\n"
|
|
|
|
" index_build_device: gpu0 # GPU used for building index";
|
2019-10-19 08:48:56 +00:00
|
|
|
|
2019-10-19 09:08:50 +00:00
|
|
|
static const char* INVALID_CONFIG_STR = "*INVALID*";
|
2019-10-19 08:48:56 +00:00
|
|
|
|
2019-10-19 09:08:50 +00:00
|
|
|
void
|
|
|
|
WriteToFile(const char* file_path, const char* content) {
|
2019-10-19 09:52:51 +00:00
|
|
|
std::fstream fs(file_path, std::ios_base::out);
|
2019-10-19 08:48:56 +00:00
|
|
|
|
|
|
|
//write data to file
|
2019-10-19 09:52:51 +00:00
|
|
|
fs << content;
|
|
|
|
fs.close();
|
2019-10-19 08:48:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
|
2019-10-19 09:08:50 +00:00
|
|
|
void
|
|
|
|
ConfigTest::SetUp() {
|
2019-10-19 08:48:56 +00:00
|
|
|
WriteToFile(VALID_CONFIG_PATH, VALID_CONFIG_STR);
|
|
|
|
WriteToFile(INVALID_CONFIG_PATH, INVALID_CONFIG_STR);
|
|
|
|
}
|
|
|
|
|
2019-10-19 09:08:50 +00:00
|
|
|
void
|
|
|
|
ConfigTest::TearDown() {
|
2019-10-19 08:48:56 +00:00
|
|
|
boost::filesystem::remove(VALID_CONFIG_PATH);
|
|
|
|
boost::filesystem::remove(INVALID_CONFIG_PATH);
|
2019-10-19 09:08:50 +00:00
|
|
|
}
|