You need to sign in or sign up before continuing.
DBImpl.cpp 11.9 KB
Newer Older
X
Xu Peng 已提交
1
#include <assert.h>
X
Xu Peng 已提交
2
#include <chrono>
X
Xu Peng 已提交
3
#include <thread>
4
#include <iostream>
5 6 7
#include <faiss/IndexFlat.h>
#include <faiss/MetaIndexes.h>
#include <faiss/index_io.h>
X
Xu Peng 已提交
8
#include <faiss/AutoTune.h>
X
Xu Peng 已提交
9
#include <wrapper/IndexBuilder.h>
X
xj.lin 已提交
10 11
#include <cstring>
#include <wrapper/Topk.h>
12
#include <easylogging++.h>
X
Xu Peng 已提交
13 14 15
#include "DBImpl.h"
#include "DBMetaImpl.h"
#include "Env.h"
X
Xu Peng 已提交
16

X
Xu Peng 已提交
17 18 19
namespace zilliz {
namespace vecwise {
namespace engine {
X
Xu Peng 已提交
20

X
Xu Peng 已提交
21 22 23
DBImpl::DBImpl(const Options& options)
    : _env(options.env),
      _options(options),
24
      _bg_compaction_scheduled(false),
X
Xu Peng 已提交
25
      _shutting_down(false),
X
Xu Peng 已提交
26
      bg_build_index_started_(false),
X
Xu Peng 已提交
27
      _pMeta(new meta::DBMetaImpl(_options.meta)),
X
Xu Peng 已提交
28
      _pMemMgr(new MemManager(_pMeta, _options)) {
X
Xu Peng 已提交
29
    start_timer_task(_options.memory_sync_interval);
X
Xu Peng 已提交
30 31
}

32 33
Status DBImpl::add_group(meta::GroupSchema& group_info) {
    return _pMeta->add_group(group_info);
34 35
}

36 37
Status DBImpl::get_group(meta::GroupSchema& group_info) {
    return _pMeta->get_group(group_info);
38 39 40 41 42 43
}

Status DBImpl::has_group(const std::string& group_id_, bool& has_or_not_) {
    return _pMeta->has_group(group_id_, has_or_not_);
}

X
Xu Peng 已提交
44 45
Status DBImpl::get_group_files(const std::string& group_id,
                               const int date_delta,
46
                               meta::GroupFilesSchema& group_files_info) {
X
Xu Peng 已提交
47
    return _pMeta->get_group_files(group_id, date_delta, group_files_info);
48

X
Xu Peng 已提交
49 50
}

51 52
Status DBImpl::add_vectors(const std::string& group_id_,
        size_t n, const float* vectors, IDNumbers& vector_ids_) {
X
Xu Peng 已提交
53 54 55 56 57 58
    Status status = _pMemMgr->add_vectors(group_id_, n, vectors, vector_ids_);
    if (!status.ok()) {
        return status;
    }
}

X
xj.lin 已提交
59
// TODO(XUPENG): add search range based on time
X
xj.lin 已提交
60 61 62 63 64 65 66 67 68 69 70
Status DBImpl::search(const std::string &group_id, size_t k, size_t nq,
                      const float *vectors, QueryResults &results) {
    meta::DatePartionedGroupFilesSchema files;
    std::vector<meta::DateT> partition;
    auto status = _pMeta->files_to_search(group_id, partition, files);
    if (!status.ok()) { return status; }

    meta::GroupFilesSchema index_files;
    meta::GroupFilesSchema raw_files;
    for (auto &day_files : files) {
        for (auto &file : day_files.second) {
X
xj.lin 已提交
71 72
            file.file_type == meta::GroupFileSchema::INDEX ?
            index_files.push_back(file) : raw_files.push_back(file);
X
xj.lin 已提交
73 74 75
        }
    }

X
xj.lin 已提交
76 77 78 79 80 81 82 83
    int dim = 0;
    if (!index_files.empty()) {
        dim = index_files[0].dimension;
    } else if (!raw_files.empty()) {
        dim = raw_files[0].dimension;
    } else {
        return Status::OK();
    }
X
xj.lin 已提交
84

X
xj.lin 已提交
85
    // merge raw files and build flat index.
X
xj.lin 已提交
86 87 88
    faiss::Index *index(faiss::index_factory(dim, "IDMap,Flat"));
    for (auto &file : raw_files) {
        auto file_index = dynamic_cast<faiss::IndexIDMap *>(faiss::read_index(file.location.c_str()));
X
xj.lin 已提交
89 90
        index->add_with_ids(file_index->ntotal,
                            dynamic_cast<faiss::IndexFlat *>(file_index->index)->xb.data(),
X
xj.lin 已提交
91 92 93 94
                            file_index->id_map.data());
    }

    {
X
xj.lin 已提交
95 96 97 98 99 100 101 102 103 104 105 106 107 108
        // [{ids, distence}, ...]
        using SearchResult = std::pair<std::vector<long>, std::vector<float>>;
        std::vector<SearchResult> batchresult(nq); // allocate nq cells.

        auto cluster = [&](long *nns, float *dis) -> void {
            for (int i = 0; i < nq; ++i) {
                auto f_begin = batchresult[i].first.cbegin();
                auto s_begin = batchresult[i].second.cbegin();
                batchresult[i].first.insert(f_begin, nns + i * k, nns + i * k + k);
                batchresult[i].second.insert(s_begin, dis + i * k, dis + i * k + k);
            }
        };

        // Allocate Memory
X
xj.lin 已提交
109 110
        float *output_distence;
        long *output_ids;
X
xj.lin 已提交
111 112 113 114
        output_distence = (float *) malloc(k * nq * sizeof(float));
        output_ids = (long *) malloc(k * nq * sizeof(long));
        memset(output_distence, 0, k * nq * sizeof(float));
        memset(output_ids, 0, k * nq * sizeof(long));
X
xj.lin 已提交
115

X
xj.lin 已提交
116
        // search in raw file
X
xj.lin 已提交
117
        index->search(nq, vectors, k, output_distence, output_ids);
X
xj.lin 已提交
118 119 120
        cluster(output_ids, output_distence); // cluster to each query
        memset(output_distence, 0, k * nq * sizeof(float));
        memset(output_ids, 0, k * nq * sizeof(long));
X
xj.lin 已提交
121

X
xj.lin 已提交
122
        // Search in index file
X
xj.lin 已提交
123 124 125
        for (auto &file : index_files) {
            auto index = read_index(file.location.c_str());
            index->search(nq, vectors, k, output_distence, output_ids);
X
xj.lin 已提交
126 127 128
            cluster(output_ids, output_distence); // cluster to each query
            memset(output_distence, 0, k * nq * sizeof(float));
            memset(output_ids, 0, k * nq * sizeof(long));
X
xj.lin 已提交
129 130
        }

X
xj.lin 已提交
131 132 133 134 135 136 137 138 139 140 141 142 143 144
        auto cluster_topk = [&]() -> void {
            QueryResult res;
            for (auto &result_pair : batchresult) {
                auto &dis = result_pair.second;
                auto &nns = result_pair.first;
                TopK(dis.data(), dis.size(), k, output_distence, output_ids);
                for (int i = 0; i < k; ++i) {
                    res.emplace_back(nns[output_ids[i]]); // mapping
                }
                results.push_back(res); // append to result list
                res.clear();
            }
        };
        cluster_topk();
X
xj.lin 已提交
145 146 147 148 149

        free(output_distence);
        free(output_ids);
    }

X
xj.lin 已提交
150 151 152
    if (results.empty()) {
        return Status::NotFound("Group " + group_id + ", search result not found!");
    }
X
Xu Peng 已提交
153 154 155
    return Status::OK();
}

X
Xu Peng 已提交
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
void DBImpl::start_timer_task(int interval_) {
    std::thread bg_task(&DBImpl::background_timer_task, this, interval_);
    bg_task.detach();
}

void DBImpl::background_timer_task(int interval_) {
    Status status;
    while (true) {
        if (!_bg_error.ok()) break;
        if (_shutting_down.load(std::memory_order_acquire)) break;

        std::this_thread::sleep_for(std::chrono::seconds(interval_));

        try_schedule_compaction();
    }
171 172
}

X
Xu Peng 已提交
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
void DBImpl::try_schedule_compaction() {
    if (_bg_compaction_scheduled) return;
    if (!_bg_error.ok()) return;

    _bg_compaction_scheduled = true;
    _env->schedule(&DBImpl::BGWork, this);
}

void DBImpl::BGWork(void* db_) {
    reinterpret_cast<DBImpl*>(db_)->background_call();
}

void DBImpl::background_call() {
    std::lock_guard<std::mutex> lock(_mutex);
    assert(_bg_compaction_scheduled);

    if (!_bg_error.ok()) return;

    background_compaction();
X
Xu Peng 已提交
192 193 194

    _bg_compaction_scheduled = false;
    _bg_work_finish_signal.notify_all();
X
Xu Peng 已提交
195 196
}

197 198 199 200

Status DBImpl::merge_files(const std::string& group_id, const meta::DateT& date,
        const meta::GroupFilesSchema& files) {
    meta::GroupFileSchema group_file;
X
Xu Peng 已提交
201 202 203
    group_file.group_id = group_id;
    group_file.date = date;
    Status status = _pMeta->add_group_file(group_file);
X
Xu Peng 已提交
204

205
    if (!status.ok()) {
206
        LOG(INFO) << status.ToString() << std::endl;
207 208 209
        return status;
    }

X
Xu Peng 已提交
210
    std::shared_ptr<faiss::Index> index(faiss::index_factory(group_file.dimension, "IDMap,Flat"));
211 212 213 214 215

    meta::GroupFilesSchema updated;

    for (auto& file : files) {
        auto file_index = dynamic_cast<faiss::IndexIDMap*>(faiss::read_index(file.location.c_str()));
X
Xu Peng 已提交
216
        index->add_with_ids(file_index->ntotal, dynamic_cast<faiss::IndexFlat*>(file_index->index)->xb.data(),
217 218 219 220
                file_index->id_map.data());
        auto file_schema = file;
        file_schema.file_type = meta::GroupFileSchema::TO_DELETE;
        updated.push_back(file_schema);
221 222
        LOG(DEBUG) << "About to merge file " << file_schema.file_id <<
            " of size=" << file_schema.rows;
223 224
    }

X
Xu Peng 已提交
225
    auto index_size = group_file.dimension * index->ntotal;
X
Xu Peng 已提交
226
    faiss::write_index(index.get(), group_file.location.c_str());
X
Xu Peng 已提交
227 228 229 230 231 232

    if (index_size >= _options.index_trigger_size) {
        group_file.file_type = meta::GroupFileSchema::TO_INDEX;
    } else {
        group_file.file_type = meta::GroupFileSchema::RAW;
    }
X
Xu Peng 已提交
233
    group_file.rows = index_size;
234 235
    updated.push_back(group_file);
    status = _pMeta->update_files(updated);
236 237
    LOG(DEBUG) << "New merged file " << group_file.file_id <<
        " of size=" << group_file.rows;
238 239 240 241 242 243

    return status;
}

Status DBImpl::background_merge_files(const std::string& group_id) {
    meta::DatePartionedGroupFilesSchema raw_files;
X
Xu Peng 已提交
244 245 246 247
    auto status = _pMeta->files_to_merge(group_id, raw_files);
    if (!status.ok()) {
        return status;
    }
248

249 250 251
    /* if (raw_files.size() == 0) { */
    /*     return Status::OK(); */
    /* } */
252

X
Xu Peng 已提交
253 254
    bool has_merge = false;

255
    for (auto& kv : raw_files) {
X
Xu Peng 已提交
256
        auto files = kv.second;
X
Xu Peng 已提交
257
        if (files.size() <= _options.merge_trigger_number) {
X
Xu Peng 已提交
258 259
            continue;
        }
X
Xu Peng 已提交
260
        has_merge = true;
261 262
        merge_files(group_id, kv.first, kv.second);
    }
X
Xu Peng 已提交
263

264
    try_build_index();
X
Xu Peng 已提交
265

X
Xu Peng 已提交
266 267
    _pMeta->cleanup_ttl_files(1);

X
Xu Peng 已提交
268 269 270 271
    return Status::OK();
}

Status DBImpl::build_index(const meta::GroupFileSchema& file) {
X
Xu Peng 已提交
272
    meta::GroupFileSchema group_file;
X
Xu Peng 已提交
273 274 275
    group_file.group_id = file.group_id;
    group_file.date = file.date;
    Status status = _pMeta->add_group_file(group_file);
X
Xu Peng 已提交
276 277 278 279 280
    if (!status.ok()) {
        return status;
    }

    auto opd = std::make_shared<Operand>();
X
Xu Peng 已提交
281
    opd->d = file.dimension;
X
Xu Peng 已提交
282 283 284 285
    opd->index_type = "IDMap,Flat";
    IndexBuilderPtr pBuilder = GetIndexBuilder(opd);

    auto from_index = dynamic_cast<faiss::IndexIDMap*>(faiss::read_index(file.location.c_str()));
286
    LOG(DEBUG) << "Preparing build_index for file_id=" << file.file_id
X
Xu Peng 已提交
287
        << " with new index_file_id=" << group_file.file_id << std::endl;
X
Xu Peng 已提交
288 289 290
    auto index = pBuilder->build_all(from_index->ntotal,
            dynamic_cast<faiss::IndexFlat*>(from_index->index)->xb.data(),
            from_index->id_map.data());
291
    LOG(DEBUG) << "Ending build_index for file_id=" << file.file_id
X
Xu Peng 已提交
292
        << " with new index_file_id=" << group_file.file_id << std::endl;
X
Xu Peng 已提交
293
    /* std::cout << "raw size=" << from_index->ntotal << "   index size=" << index->ntotal << std::endl; */
X
Xu Peng 已提交
294 295
    write_index(index, group_file.location.c_str());
    group_file.file_type = meta::GroupFileSchema::INDEX;
X
Xu Peng 已提交
296
    group_file.rows = file.dimension * index->ntotal;
X
Xu Peng 已提交
297

X
Xu Peng 已提交
298 299
    auto to_remove = file;
    to_remove.file_type = meta::GroupFileSchema::TO_DELETE;
X
Xu Peng 已提交
300

X
Xu Peng 已提交
301 302
    meta::GroupFilesSchema update_files = {to_remove, group_file};
    _pMeta->update_files(update_files);
X
Xu Peng 已提交
303

X
Xu Peng 已提交
304 305 306
    return Status::OK();
}

X
Xu Peng 已提交
307
void DBImpl::background_build_index() {
X
Xu Peng 已提交
308
    std::lock_guard<std::mutex> lock(build_index_mutex_);
X
Xu Peng 已提交
309 310
    assert(bg_build_index_started_);
    meta::GroupFilesSchema to_index_files;
X
Xu Peng 已提交
311
    _pMeta->files_to_index(to_index_files);
X
Xu Peng 已提交
312 313 314 315 316
    Status status;
    for (auto& file : to_index_files) {
        status = build_index(file);
        if (!status.ok()) {
            _bg_error = status;
X
Xu Peng 已提交
317
            return;
X
Xu Peng 已提交
318 319 320 321
        }
    }

    bg_build_index_started_ = false;
X
Xu Peng 已提交
322
    bg_build_index_finish_signal_.notify_all();
X
Xu Peng 已提交
323 324 325 326 327 328 329
}

Status DBImpl::try_build_index() {
    if (bg_build_index_started_) return Status::OK();
    bg_build_index_started_ = true;
    std::thread build_index_task(&DBImpl::background_build_index, this);
    build_index_task.detach();
X
Xu Peng 已提交
330
    return Status::OK();
331 332
}

X
Xu Peng 已提交
333
void DBImpl::background_compaction() {
334 335
    std::vector<std::string> group_ids;
    _pMemMgr->serialize(group_ids);
336

X
Xu Peng 已提交
337 338 339 340 341 342 343
    Status status;
    for (auto group_id : group_ids) {
        status = background_merge_files(group_id);
        if (!status.ok()) {
            _bg_error = status;
            return;
        }
344
    }
X
Xu Peng 已提交
345 346
}

X
Xu Peng 已提交
347 348 349 350
Status DBImpl::drop_all() {
    return _pMeta->drop_all();
}

X
Xu Peng 已提交
351 352 353 354
Status DBImpl::count(const std::string& group_id, long& result) {
    return _pMeta->count(group_id, result);
}

X
Xu Peng 已提交
355
DBImpl::~DBImpl() {
X
Xu Peng 已提交
356 357 358 359 360 361 362 363 364 365 366 367
    {
        std::unique_lock<std::mutex> lock(_mutex);
        _shutting_down.store(true, std::memory_order_release);
        while (_bg_compaction_scheduled) {
            _bg_work_finish_signal.wait(lock);
        }
    }
    {
        std::unique_lock<std::mutex> lock(build_index_mutex_);
        while (bg_build_index_started_) {
            bg_build_index_finish_signal_.wait(lock);
        }
X
Xu Peng 已提交
368
    }
X
Xu Peng 已提交
369 370
    std::vector<std::string> ids;
    _pMemMgr->serialize(ids);
X
Xu Peng 已提交
371 372
}

X
Xu Peng 已提交
373 374 375 376 377 378
/*
 *  DB
 */

DB::~DB() {}

X
Xu Peng 已提交
379 380 381 382
void DB::Open(const Options& options, DB** dbptr) {
    *dbptr = nullptr;
    *dbptr = new DBImpl(options);
    return;
X
Xu Peng 已提交
383 384
}

X
Xu Peng 已提交
385 386 387
} // namespace engine
} // namespace vecwise
} // namespace zilliz