DBImpl.cpp 12.6 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
xj.lin 已提交
9 10
#include <cstring>
#include <wrapper/Topk.h>
11
#include <easylogging++.h>
X
Xu Peng 已提交
12 13
#include <wrapper/IndexBuilder.h>
#include <cache/CpuCacheMgr.h>
X
Xu Peng 已提交
14 15 16
#include "DBImpl.h"
#include "DBMetaImpl.h"
#include "Env.h"
X
Xu Peng 已提交
17

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

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

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

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

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

X
Xu Peng 已提交
50 51
}

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

X
xj.lin 已提交
60
// TODO(XUPENG): add search range based on time
X
xj.lin 已提交
61 62 63 64 65 66 67 68 69 70 71
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 已提交
72 73
            file.file_type == meta::GroupFileSchema::INDEX ?
            index_files.push_back(file) : raw_files.push_back(file);
X
xj.lin 已提交
74 75 76
        }
    }

X
xj.lin 已提交
77 78 79 80 81 82 83 84
    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 已提交
85

X
xj.lin 已提交
86
    // merge raw files and build flat index.
X
xj.lin 已提交
87 88 89
    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 已提交
90 91
        index->add_with_ids(file_index->ntotal,
                            dynamic_cast<faiss::IndexFlat *>(file_index->index)->xb.data(),
X
xj.lin 已提交
92
                            file_index->id_map.data());
X
Xu Peng 已提交
93
        delete file_index;
X
xj.lin 已提交
94 95 96
    }

    {
X
xj.lin 已提交
97 98 99 100 101 102 103 104 105 106 107 108 109 110
        // [{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 已提交
111 112
        float *output_distence;
        long *output_ids;
X
xj.lin 已提交
113 114 115 116
        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 已提交
117

X
xj.lin 已提交
118
        // search in raw file
X
xj.lin 已提交
119
        index->search(nq, vectors, k, output_distence, output_ids);
X
xj.lin 已提交
120 121 122
        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 已提交
123

X
xj.lin 已提交
124
        // Search in index file
X
xj.lin 已提交
125 126 127
        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 已提交
128 129 130
            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 已提交
131 132
        }

X
xj.lin 已提交
133 134 135 136 137 138 139 140 141 142 143 144 145 146
        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 已提交
147 148 149 150 151

        free(output_distence);
        free(output_ids);
    }

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

X
Xu Peng 已提交
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
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();
    }
173 174
}

X
Xu Peng 已提交
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
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 已提交
194 195 196

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

199 200 201 202

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

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

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

    meta::GroupFilesSchema updated;

    for (auto& file : files) {
X
Xu Peng 已提交
217 218 219 220 221
        auto to_merge = zilliz::vecwise::cache::CpuCacheMgr::GetInstance()->GetIndex(file.location);
        if (!to_merge) {
            to_merge = read_index(file.location.c_str());
        }
        auto file_index = dynamic_cast<faiss::IndexIDMap*>(to_merge->data().get());
X
Xu Peng 已提交
222
        index->add_with_ids(file_index->ntotal, dynamic_cast<faiss::IndexFlat*>(file_index->index)->xb.data(),
223 224 225 226
                file_index->id_map.data());
        auto file_schema = file;
        file_schema.file_type = meta::GroupFileSchema::TO_DELETE;
        updated.push_back(file_schema);
227 228
        LOG(DEBUG) << "About to merge file " << file_schema.file_id <<
            " of size=" << file_schema.rows;
229 230
    }

X
Xu Peng 已提交
231
    auto index_size = group_file.dimension * index->ntotal;
X
Xu Peng 已提交
232
    faiss::write_index(index.get(), group_file.location.c_str());
X
Xu Peng 已提交
233 234 235 236 237 238

    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 已提交
239
    group_file.rows = index_size;
240 241
    updated.push_back(group_file);
    status = _pMeta->update_files(updated);
242 243
    LOG(DEBUG) << "New merged file " << group_file.file_id <<
        " of size=" << group_file.rows;
244

X
Xu Peng 已提交
245 246 247
    zilliz::vecwise::cache::CpuCacheMgr::GetInstance()->InsertItem(
            group_file.location, std::make_shared<Index>(index));

248 249 250 251 252
    return status;
}

Status DBImpl::background_merge_files(const std::string& group_id) {
    meta::DatePartionedGroupFilesSchema raw_files;
X
Xu Peng 已提交
253 254 255 256
    auto status = _pMeta->files_to_merge(group_id, raw_files);
    if (!status.ok()) {
        return status;
    }
257

258 259 260
    /* if (raw_files.size() == 0) { */
    /*     return Status::OK(); */
    /* } */
261

X
Xu Peng 已提交
262 263
    bool has_merge = false;

264
    for (auto& kv : raw_files) {
X
Xu Peng 已提交
265
        auto files = kv.second;
X
Xu Peng 已提交
266
        if (files.size() <= _options.merge_trigger_number) {
X
Xu Peng 已提交
267 268
            continue;
        }
X
Xu Peng 已提交
269
        has_merge = true;
270 271
        merge_files(group_id, kv.first, kv.second);
    }
X
Xu Peng 已提交
272

273
    try_build_index();
X
Xu Peng 已提交
274

X
Xu Peng 已提交
275 276
    _pMeta->cleanup_ttl_files(1);

X
Xu Peng 已提交
277 278 279 280
    return Status::OK();
}

Status DBImpl::build_index(const meta::GroupFileSchema& file) {
X
Xu Peng 已提交
281
    meta::GroupFileSchema group_file;
X
Xu Peng 已提交
282 283 284
    group_file.group_id = file.group_id;
    group_file.date = file.date;
    Status status = _pMeta->add_group_file(group_file);
X
Xu Peng 已提交
285 286 287 288 289
    if (!status.ok()) {
        return status;
    }

    auto opd = std::make_shared<Operand>();
X
Xu Peng 已提交
290
    opd->d = file.dimension;
X
Xu Peng 已提交
291 292 293
    opd->index_type = "IDMap,Flat";
    IndexBuilderPtr pBuilder = GetIndexBuilder(opd);

X
Xu Peng 已提交
294 295 296 297 298 299
    auto to_index = zilliz::vecwise::cache::CpuCacheMgr::GetInstance()->GetIndex(file.location);
    if (!to_index) {
        to_index = read_index(file.location.c_str());
    }
    auto from_index = dynamic_cast<faiss::IndexIDMap*>(to_index->data().get());

300
    LOG(DEBUG) << "Preparing build_index for file_id=" << file.file_id
X
Xu Peng 已提交
301
        << " with new index_file_id=" << group_file.file_id << std::endl;
X
Xu Peng 已提交
302 303 304
    auto index = pBuilder->build_all(from_index->ntotal,
            dynamic_cast<faiss::IndexFlat*>(from_index->index)->xb.data(),
            from_index->id_map.data());
305
    LOG(DEBUG) << "Ending build_index for file_id=" << file.file_id
X
Xu Peng 已提交
306
        << " with new index_file_id=" << group_file.file_id << std::endl;
X
Xu Peng 已提交
307
    /* std::cout << "raw size=" << from_index->ntotal << "   index size=" << index->ntotal << std::endl; */
X
Xu Peng 已提交
308 309
    write_index(index, group_file.location.c_str());
    group_file.file_type = meta::GroupFileSchema::INDEX;
X
Xu Peng 已提交
310
    group_file.rows = file.dimension * index->ntotal;
X
Xu Peng 已提交
311

X
Xu Peng 已提交
312 313
    auto to_remove = file;
    to_remove.file_type = meta::GroupFileSchema::TO_DELETE;
X
Xu Peng 已提交
314

X
Xu Peng 已提交
315 316
    meta::GroupFilesSchema update_files = {to_remove, group_file};
    _pMeta->update_files(update_files);
X
Xu Peng 已提交
317

X
Xu Peng 已提交
318 319
    zilliz::vecwise::cache::CpuCacheMgr::GetInstance()->InsertItem(group_file.location, index);

X
Xu Peng 已提交
320

X
Xu Peng 已提交
321 322 323
    return Status::OK();
}

X
Xu Peng 已提交
324
void DBImpl::background_build_index() {
X
Xu Peng 已提交
325
    std::lock_guard<std::mutex> lock(build_index_mutex_);
X
Xu Peng 已提交
326 327
    assert(bg_build_index_started_);
    meta::GroupFilesSchema to_index_files;
X
Xu Peng 已提交
328
    _pMeta->files_to_index(to_index_files);
X
Xu Peng 已提交
329 330 331 332 333
    Status status;
    for (auto& file : to_index_files) {
        status = build_index(file);
        if (!status.ok()) {
            _bg_error = status;
X
Xu Peng 已提交
334
            return;
X
Xu Peng 已提交
335 336 337 338
        }
    }

    bg_build_index_started_ = false;
X
Xu Peng 已提交
339
    bg_build_index_finish_signal_.notify_all();
X
Xu Peng 已提交
340 341 342 343 344 345 346
}

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 已提交
347
    return Status::OK();
348 349
}

X
Xu Peng 已提交
350
void DBImpl::background_compaction() {
351 352
    std::vector<std::string> group_ids;
    _pMemMgr->serialize(group_ids);
353

X
Xu Peng 已提交
354 355 356 357 358 359 360
    Status status;
    for (auto group_id : group_ids) {
        status = background_merge_files(group_id);
        if (!status.ok()) {
            _bg_error = status;
            return;
        }
361
    }
X
Xu Peng 已提交
362 363
}

X
Xu Peng 已提交
364 365 366 367
Status DBImpl::drop_all() {
    return _pMeta->drop_all();
}

X
Xu Peng 已提交
368 369 370 371
Status DBImpl::count(const std::string& group_id, long& result) {
    return _pMeta->count(group_id, result);
}

X
Xu Peng 已提交
372
DBImpl::~DBImpl() {
X
Xu Peng 已提交
373 374 375 376 377 378 379 380 381 382 383 384
    {
        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 已提交
385
    }
X
Xu Peng 已提交
386 387
    std::vector<std::string> ids;
    _pMemMgr->serialize(ids);
X
Xu Peng 已提交
388 389
}

X
Xu Peng 已提交
390 391 392 393 394 395
/*
 *  DB
 */

DB::~DB() {}

X
Xu Peng 已提交
396 397 398 399
void DB::Open(const Options& options, DB** dbptr) {
    *dbptr = nullptr;
    *dbptr = new DBImpl(options);
    return;
X
Xu Peng 已提交
400 401
}

X
Xu Peng 已提交
402 403 404
} // namespace engine
} // namespace vecwise
} // namespace zilliz