Utils.cpp 8.4 KB
Newer Older
J
jinhai 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// 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.

S
starlord 已提交
18
#include "db/Utils.h"
C
Cai Yudong 已提交
19 20
#include "server/Config.h"
#include "storage/s3/S3ClientWrapper.h"
S
starlord 已提交
21
#include "utils/CommonUtil.h"
S
starlord 已提交
22
#include "utils/Log.h"
X
Xu Peng 已提交
23

S
starlord 已提交
24
#include <boost/filesystem.hpp>
X
Xu Peng 已提交
25
#include <chrono>
S
starlord 已提交
26
#include <mutex>
27
#include <regex>
S
starlord 已提交
28
#include <vector>
X
Xu Peng 已提交
29

J
jinhai 已提交
30
namespace milvus {
X
Xu Peng 已提交
31 32 33
namespace engine {
namespace utils {

S
starlord 已提交
34 35
namespace {

S
starlord 已提交
36
const char* TABLES_FOLDER = "/tables/";
S
starlord 已提交
37

J
jinhai 已提交
38 39
uint64_t index_file_counter = 0;
std::mutex index_file_counter_mutex;
40

C
Cai Yudong 已提交
41
static std::string
S
starlord 已提交
42
ConstructParentFolder(const std::string& db_path, const meta::TableFileSchema& table_file) {
S
starlord 已提交
43 44 45 46 47
    std::string table_path = db_path + TABLES_FOLDER + table_file.table_id_;
    std::string partition_path = table_path + "/" + std::to_string(table_file.date_);
    return partition_path;
}

C
Cai Yudong 已提交
48
static std::string
S
starlord 已提交
49
GetTableFileParentFolder(const DBMetaOptions& options, const meta::TableFileSchema& table_file) {
S
starlord 已提交
50 51
    uint64_t path_count = options.slave_paths_.size() + 1;
    std::string target_path = options.path_;
52 53
    uint64_t index = 0;

S
starlord 已提交
54
    if (meta::TableFileSchema::NEW_INDEX == table_file.file_type_) {
55 56 57 58 59 60 61 62 63 64 65 66 67
        // index file is large file and to be persisted permanently
        // we need to distribute index files to each db_path averagely
        // round robin according to a file counter
        std::lock_guard<std::mutex> lock(index_file_counter_mutex);
        index = index_file_counter % path_count;
        index_file_counter++;
    } else {
        // for other type files, they could be merged or deleted
        // so we round robin according to their file id
        index = table_file.id_ % path_count;
    }

    if (index > 0) {
S
starlord 已提交
68
        target_path = options.slave_paths_[index - 1];
S
starlord 已提交
69 70 71 72 73
    }

    return ConstructParentFolder(target_path, table_file);
}

S
starlord 已提交
74
}  // namespace
S
starlord 已提交
75

S
starlord 已提交
76 77
int64_t
GetMicroSecTimeStamp() {
X
Xu Peng 已提交
78
    auto now = std::chrono::system_clock::now();
S
starlord 已提交
79
    auto micros = std::chrono::duration_cast<std::chrono::microseconds>(now.time_since_epoch()).count();
X
Xu Peng 已提交
80 81 82 83

    return micros;
}

S
starlord 已提交
84
Status
S
starlord 已提交
85
CreateTablePath(const DBMetaOptions& options, const std::string& table_id) {
S
starlord 已提交
86
    std::string db_path = options.path_;
S
starlord 已提交
87 88
    std::string table_path = db_path + TABLES_FOLDER + table_id;
    auto status = server::CommonUtil::CreateDirectory(table_path);
S
starlord 已提交
89 90 91
    if (!status.ok()) {
        ENGINE_LOG_ERROR << status.message();
        return status;
S
starlord 已提交
92 93
    }

S
starlord 已提交
94
    for (auto& path : options.slave_paths_) {
S
starlord 已提交
95 96
        table_path = path + TABLES_FOLDER + table_id;
        status = server::CommonUtil::CreateDirectory(table_path);
S
starlord 已提交
97 98 99
        if (!status.ok()) {
            ENGINE_LOG_ERROR << status.message();
            return status;
S
starlord 已提交
100 101 102 103 104 105
        }
    }

    return Status::OK();
}

S
starlord 已提交
106
Status
S
starlord 已提交
107
DeleteTablePath(const DBMetaOptions& options, const std::string& table_id, bool force) {
S
starlord 已提交
108 109
    std::vector<std::string> paths = options.slave_paths_;
    paths.push_back(options.path_);
S
starlord 已提交
110

S
starlord 已提交
111
    for (auto& path : paths) {
S
starlord 已提交
112
        std::string table_path = path + TABLES_FOLDER + table_id;
S
starlord 已提交
113
        if (force) {
S
starlord 已提交
114 115
            boost::filesystem::remove_all(table_path);
            ENGINE_LOG_DEBUG << "Remove table folder: " << table_path;
S
starlord 已提交
116
        } else if (boost::filesystem::exists(table_path) && boost::filesystem::is_empty(table_path)) {
S
starlord 已提交
117 118 119
            boost::filesystem::remove_all(table_path);
            ENGINE_LOG_DEBUG << "Remove table folder: " << table_path;
        }
S
starlord 已提交
120 121
    }

C
Cai Yudong 已提交
122 123 124 125 126 127 128 129 130 131 132 133 134 135
    bool minio_enable = false;
    server::Config& config = server::Config::GetInstance();
    config.GetStorageConfigMinioEnable(minio_enable);

    if (minio_enable) {
        std::string table_path = options.path_ + TABLES_FOLDER + table_id;

        auto storage_inst = milvus::storage::S3ClientWrapper::GetInstance();
        Status stat = storage_inst.DeleteObjects(table_path);
        if (!stat.ok()) {
            return stat;
        }
    }

S
starlord 已提交
136 137 138
    return Status::OK();
}

S
starlord 已提交
139
Status
S
starlord 已提交
140
CreateTableFilePath(const DBMetaOptions& options, meta::TableFileSchema& table_file) {
S
starlord 已提交
141 142 143
    std::string parent_path = GetTableFileParentFolder(options, table_file);

    auto status = server::CommonUtil::CreateDirectory(parent_path);
S
starlord 已提交
144 145 146
    if (!status.ok()) {
        ENGINE_LOG_ERROR << status.message();
        return status;
S
starlord 已提交
147 148 149 150 151 152 153
    }

    table_file.location_ = parent_path + "/" + table_file.file_id_;

    return Status::OK();
}

S
starlord 已提交
154
Status
S
starlord 已提交
155
GetTableFilePath(const DBMetaOptions& options, meta::TableFileSchema& table_file) {
S
starlord 已提交
156
    std::string parent_path = ConstructParentFolder(options.path_, table_file);
S
starlord 已提交
157
    std::string file_path = parent_path + "/" + table_file.file_id_;
C
Cai Yudong 已提交
158 159 160 161 162 163 164 165 166 167

    bool minio_enable = false;
    server::Config& config = server::Config::GetInstance();
    config.GetStorageConfigMinioEnable(minio_enable);
    if (minio_enable) {
        /* need not check file existence */
        table_file.location_ = file_path;
        return Status::OK();
    }

S
starlord 已提交
168
    if (boost::filesystem::exists(file_path)) {
S
starlord 已提交
169 170
        table_file.location_ = file_path;
        return Status::OK();
S
starlord 已提交
171 172 173 174 175 176 177 178
    }

    for (auto& path : options.slave_paths_) {
        parent_path = ConstructParentFolder(path, table_file);
        file_path = parent_path + "/" + table_file.file_id_;
        if (boost::filesystem::exists(file_path)) {
            table_file.location_ = file_path;
            return Status::OK();
S
starlord 已提交
179 180 181
        }
    }

S
starlord 已提交
182
    std::string msg = "Table file doesn't exist: " + file_path;
G
groot 已提交
183 184 185
    if (table_file.file_size_ > 0) {  // no need to pop error for empty file
        ENGINE_LOG_ERROR << msg << " in path: " << options.path_ << " for table: " << table_file.table_id_;
    }
S
starlord 已提交
186

S
starlord 已提交
187
    return Status(DB_ERROR, msg);
S
starlord 已提交
188 189
}

S
starlord 已提交
190
Status
S
starlord 已提交
191
DeleteTableFilePath(const DBMetaOptions& options, meta::TableFileSchema& table_file) {
S
starlord 已提交
192 193 194 195 196
    utils::GetTableFilePath(options, table_file);
    boost::filesystem::remove(table_file.location_);
    return Status::OK();
}

S
starlord 已提交
197
bool
S
starlord 已提交
198 199 200
IsSameIndex(const TableIndex& index1, const TableIndex& index2) {
    return index1.engine_type_ == index2.engine_type_ && index1.nlist_ == index2.nlist_ &&
           index1.metric_type_ == index2.metric_type_;
201 202
}

S
starlord 已提交
203
meta::DateT
S
starlord 已提交
204
GetDate(const std::time_t& t, int day_delta) {
205 206 207 208 209 210
    struct tm ltm;
    localtime_r(&t, &ltm);
    if (day_delta > 0) {
        do {
            ++ltm.tm_mday;
            --day_delta;
S
starlord 已提交
211
        } while (day_delta > 0);
212 213 214 215 216
        mktime(&ltm);
    } else if (day_delta < 0) {
        do {
            --ltm.tm_mday;
            ++day_delta;
S
starlord 已提交
217
        } while (day_delta < 0);
218 219 220 221
        mktime(&ltm);
    } else {
        ltm.tm_mday;
    }
S
starlord 已提交
222
    return ltm.tm_year * 10000 + ltm.tm_mon * 100 + ltm.tm_mday;
223 224
}

S
starlord 已提交
225 226
meta::DateT
GetDateWithDelta(int day_delta) {
227 228 229
    return GetDate(std::time(nullptr), day_delta);
}

S
starlord 已提交
230 231
meta::DateT
GetDate() {
232 233 234
    return GetDate(std::time(nullptr), 0);
}

235
// URI format: dialect://username:password@host:port/database
S
starlord 已提交
236
Status
S
starlord 已提交
237
ParseMetaUri(const std::string& uri, MetaUriInfo& info) {
238 239 240 241 242 243
    std::string dialect_regex = "(.*)";
    std::string username_tegex = "(.*)";
    std::string password_regex = "(.*)";
    std::string host_regex = "(.*)";
    std::string port_regex = "(.*)";
    std::string db_name_regex = "(.*)";
S
starlord 已提交
244 245
    std::string uri_regex_str = dialect_regex + "\\:\\/\\/" + username_tegex + "\\:" + password_regex + "\\@" +
                                host_regex + "\\:" + port_regex + "\\/" + db_name_regex;
246 247 248 249 250 251 252 253 254 255 256 257

    std::regex uri_regex(uri_regex_str);
    std::smatch pieces_match;

    if (std::regex_match(uri, pieces_match, uri_regex)) {
        info.dialect_ = pieces_match[1].str();
        info.username_ = pieces_match[2].str();
        info.password_ = pieces_match[3].str();
        info.host_ = pieces_match[4].str();
        info.port_ = pieces_match[5].str();
        info.db_name_ = pieces_match[6].str();

S
starlord 已提交
258
        // TODO(myh): verify host, port...
259 260 261 262 263 264 265
    } else {
        return Status(DB_INVALID_META_URI, "Invalid meta uri: " + uri);
    }

    return Status::OK();
}

S
starlord 已提交
266 267 268
}  // namespace utils
}  // namespace engine
}  // namespace milvus