Utils.cpp 8.5 KB
Newer Older
1
// Copyright (C) 2019-2020 Zilliz. All rights reserved.
J
jinhai 已提交
2
//
3 4
// 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
J
jinhai 已提交
5
//
6 7 8 9 10
// 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.
J
jinhai 已提交
11

S
starlord 已提交
12
#include "db/Utils.h"
C
Cai Yudong 已提交
13 14
#include "server/Config.h"
#include "storage/s3/S3ClientWrapper.h"
S
starlord 已提交
15
#include "utils/CommonUtil.h"
S
starlord 已提交
16
#include "utils/Log.h"
X
Xu Peng 已提交
17

S
shengjh 已提交
18
#include <fiu-local.h>
S
starlord 已提交
19
#include <boost/filesystem.hpp>
X
Xu Peng 已提交
20
#include <chrono>
S
starlord 已提交
21
#include <mutex>
22
#include <regex>
S
starlord 已提交
23
#include <vector>
X
Xu Peng 已提交
24

J
jinhai 已提交
25
namespace milvus {
X
Xu Peng 已提交
26 27 28
namespace engine {
namespace utils {

S
starlord 已提交
29 30
namespace {

S
starlord 已提交
31
const char* TABLES_FOLDER = "/tables/";
S
starlord 已提交
32

J
jinhai 已提交
33 34
uint64_t index_file_counter = 0;
std::mutex index_file_counter_mutex;
35

C
Cai Yudong 已提交
36
static std::string
S
starlord 已提交
37
ConstructParentFolder(const std::string& db_path, const meta::TableFileSchema& table_file) {
S
starlord 已提交
38 39 40 41 42
    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 已提交
43
static std::string
S
starlord 已提交
44
GetTableFileParentFolder(const DBMetaOptions& options, const meta::TableFileSchema& table_file) {
S
starlord 已提交
45 46
    uint64_t path_count = options.slave_paths_.size() + 1;
    std::string target_path = options.path_;
47 48
    uint64_t index = 0;

S
starlord 已提交
49
    if (meta::TableFileSchema::NEW_INDEX == table_file.file_type_) {
50 51 52 53 54
        // 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;
55
        ++index_file_counter;
56 57 58 59 60 61 62
    } 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 已提交
63
        target_path = options.slave_paths_[index - 1];
S
starlord 已提交
64 65 66 67 68
    }

    return ConstructParentFolder(target_path, table_file);
}

S
starlord 已提交
69
}  // namespace
S
starlord 已提交
70

S
starlord 已提交
71 72
int64_t
GetMicroSecTimeStamp() {
X
Xu Peng 已提交
73
    auto now = std::chrono::system_clock::now();
S
starlord 已提交
74
    auto micros = std::chrono::duration_cast<std::chrono::microseconds>(now.time_since_epoch()).count();
X
Xu Peng 已提交
75 76 77 78

    return micros;
}

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

S
starlord 已提交
89
    for (auto& path : options.slave_paths_) {
S
starlord 已提交
90 91
        table_path = path + TABLES_FOLDER + table_id;
        status = server::CommonUtil::CreateDirectory(table_path);
S
shengjh 已提交
92
        fiu_do_on("CreateTablePath.creat_slave_path", status = Status(DB_INVALID_PATH, ""));
S
starlord 已提交
93 94 95
        if (!status.ok()) {
            ENGINE_LOG_ERROR << status.message();
            return status;
S
starlord 已提交
96 97 98 99 100 101
        }
    }

    return Status::OK();
}

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

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

118
    bool s3_enable = false;
C
Cai Yudong 已提交
119
    server::Config& config = server::Config::GetInstance();
120
    config.GetStorageConfigS3Enable(s3_enable);
C
Cai Yudong 已提交
121

122
    if (s3_enable) {
C
Cai Yudong 已提交
123 124
        std::string table_path = options.path_ + TABLES_FOLDER + table_id;

C
Cai Yudong 已提交
125
        auto& storage_inst = milvus::storage::S3ClientWrapper::GetInstance();
C
Cai Yudong 已提交
126 127 128 129 130 131
        Status stat = storage_inst.DeleteObjects(table_path);
        if (!stat.ok()) {
            return stat;
        }
    }

S
starlord 已提交
132 133 134
    return Status::OK();
}

S
starlord 已提交
135
Status
S
starlord 已提交
136
CreateTableFilePath(const DBMetaOptions& options, meta::TableFileSchema& table_file) {
S
starlord 已提交
137 138 139
    std::string parent_path = GetTableFileParentFolder(options, table_file);

    auto status = server::CommonUtil::CreateDirectory(parent_path);
S
shengjh 已提交
140
    fiu_do_on("CreateTableFilePath.fail_create", status = Status(DB_INVALID_PATH, ""));
S
starlord 已提交
141 142 143
    if (!status.ok()) {
        ENGINE_LOG_ERROR << status.message();
        return status;
S
starlord 已提交
144 145 146 147 148 149 150
    }

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

    return Status::OK();
}

S
starlord 已提交
151
Status
S
starlord 已提交
152
GetTableFilePath(const DBMetaOptions& options, meta::TableFileSchema& table_file) {
S
starlord 已提交
153
    std::string parent_path = ConstructParentFolder(options.path_, table_file);
S
starlord 已提交
154
    std::string file_path = parent_path + "/" + table_file.file_id_;
C
Cai Yudong 已提交
155

156
    bool s3_enable = false;
C
Cai Yudong 已提交
157
    server::Config& config = server::Config::GetInstance();
158
    config.GetStorageConfigS3Enable(s3_enable);
S
shengjh 已提交
159
    fiu_do_on("GetTableFilePath.enable_s3", s3_enable = true);
160
    if (s3_enable) {
C
Cai Yudong 已提交
161 162 163 164 165
        /* need not check file existence */
        table_file.location_ = file_path;
        return Status::OK();
    }

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

    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 已提交
177 178 179
        }
    }

S
starlord 已提交
180
    std::string msg = "Table file doesn't exist: " + file_path;
G
groot 已提交
181 182 183
    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 已提交
184

S
starlord 已提交
185
    return Status(DB_ERROR, msg);
S
starlord 已提交
186 187
}

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

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

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

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

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

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

    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 已提交
256
        // TODO(myh): verify host, port...
257 258 259 260 261 262 263
    } else {
        return Status(DB_INVALID_META_URI, "Invalid meta uri: " + uri);
    }

    return Status::OK();
}

S
starlord 已提交
264 265 266
}  // namespace utils
}  // namespace engine
}  // namespace milvus