BuildIndexJob.cpp 2.3 KB
Newer Older
1
// Copyright (C) 2019-2020 Zilliz. All rights reserved.
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
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.
11

Y
Yu Kun 已提交
12
#include "scheduler/job/BuildIndexJob.h"
13

Y
Yu Kun 已提交
14 15
#include <utility>

Z
update  
Zhiru Zhu 已提交
16 17
#include "utils/Log.h"

18 19 20
namespace milvus {
namespace scheduler {

W
wxyu 已提交
21 22
BuildIndexJob::BuildIndexJob(engine::meta::MetaPtr meta_ptr, engine::DBOptions options)
    : Job(JobType::BUILD), meta_ptr_(std::move(meta_ptr)), options_(std::move(options)) {
23 24 25 26 27 28
    SetIdentity("BuildIndexJob");
    AddCacheInsertDataListener();
}

BuildIndexJob::~BuildIndexJob() {
    RemoveCacheInsertDataListener();
29 30 31
}

bool
Y
Yu Kun 已提交
32
BuildIndexJob::AddToIndexFiles(const engine::meta::TableFileSchemaPtr& to_index_file) {
33
    std::unique_lock<std::mutex> lock(mutex_);
Y
Yu Kun 已提交
34
    if (to_index_file == nullptr || to_index_files_.find(to_index_file->id_) != to_index_files_.end()) {
35 36 37
        return false;
    }

Z
update  
Zhiru Zhu 已提交
38 39
    SERVER_LOG_DEBUG << "BuildIndexJob " << id() << " add to_index file: " << to_index_file->id_
                     << ", location: " << to_index_file->location_;
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54

    to_index_files_[to_index_file->id_] = to_index_file;
}

Status&
BuildIndexJob::WaitBuildIndexFinish() {
    std::unique_lock<std::mutex> lock(mutex_);
    cv_.wait(lock, [this] { return to_index_files_.empty(); });
    SERVER_LOG_DEBUG << "BuildIndexJob " << id() << " all done";
}

void
BuildIndexJob::BuildIndexDone(size_t to_index_id) {
    std::unique_lock<std::mutex> lock(mutex_);
    to_index_files_.erase(to_index_id);
Y
youny626 已提交
55
    cv_.notify_all();
56 57 58
    SERVER_LOG_DEBUG << "BuildIndexJob " << id() << " finish index file: " << to_index_id;
}

W
wxyu 已提交
59 60 61 62 63
json
BuildIndexJob::Dump() const {
    json ret{
        {"number_of_to_index_file", to_index_files_.size()},
    };
W
wxyu 已提交
64 65
    auto base = Job::Dump();
    ret.insert(base.begin(), base.end());
W
wxyu 已提交
66 67 68
    return ret;
}

69 70 71 72 73
void
BuildIndexJob::OnCacheInsertDataChanged(bool value) {
    options_.insert_cache_immediately_ = value;
}

Y
Yu Kun 已提交
74 75
}  // namespace scheduler
}  // namespace milvus