JobMgr.cpp 5.4 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

S
starlord 已提交
12
#include "scheduler/JobMgr.h"
13

14 15
#include "src/db/Utils.h"
#include "src/segment/SegmentReader.h"
16 17 18 19

#include <limits>
#include <utility>

20
#include "SchedInst.h"
21
#include "TaskCreator.h"
W
wxyu 已提交
22
#include "scheduler/Algorithm.h"
23
#include "scheduler/CPUBuilder.h"
W
wxyu 已提交
24
#include "scheduler/tasklabel/SpecResLabel.h"
25
#include "selector/Optimizer.h"
W
wxyu 已提交
26
#include "task/Task.h"
27 28 29 30

namespace milvus {
namespace scheduler {

S
starlord 已提交
31
JobMgr::JobMgr(ResourceMgrPtr res_mgr) : res_mgr_(std::move(res_mgr)) {
S
starlord 已提交
32
}
33 34 35 36 37

void
JobMgr::Start() {
    if (not running_) {
        running_ = true;
W
wxyu 已提交
38
        worker_thread_ = std::thread(&JobMgr::worker_function, this);
39 40 41 42 43 44 45 46 47 48 49 50
    }
}

void
JobMgr::Stop() {
    if (running_) {
        this->Put(nullptr);
        worker_thread_.join();
        running_ = false;
    }
}

W
wxyu 已提交
51 52 53 54 55 56 57 58 59
json
JobMgr::Dump() const {
    json ret{
        {"running", running_},
        {"event_queue_length", queue_.size()},
    };
    return ret;
}

60
void
S
starlord 已提交
61
JobMgr::Put(const JobPtr& job) {
62 63 64 65 66 67 68 69 70
    {
        std::lock_guard<std::mutex> lock(mutex_);
        queue_.push(job);
    }
    cv_.notify_one();
}

void
JobMgr::worker_function() {
71
    SetThreadName("jobmgr_thread");
72 73
    while (running_) {
        std::unique_lock<std::mutex> lock(mutex_);
W
wxyu 已提交
74
        cv_.wait(lock, [this] { return !queue_.empty(); });
75 76 77 78 79 80 81 82
        auto job = queue_.front();
        queue_.pop();
        lock.unlock();
        if (job == nullptr) {
            break;
        }

        auto tasks = build_task(job);
83 84 85 86

        // TODO(zhiru): if the job is search by ids, pass any task where the ids don't exist
        auto search_job = std::dynamic_pointer_cast<SearchJob>(job);
        if (search_job != nullptr) {
S
shengjun.li 已提交
87 88
            search_job->GetResultIds().resize(search_job->nq(), -1);
            search_job->GetResultDistances().resize(search_job->nq(), std::numeric_limits<float>::max());
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128

            if (search_job->vectors().float_data_.empty() && search_job->vectors().binary_data_.empty() &&
                !search_job->vectors().id_array_.empty()) {
                for (auto task = tasks.begin(); task != tasks.end();) {
                    auto search_task = std::static_pointer_cast<XSearchTask>(*task);
                    auto location = search_task->GetLocation();

                    // Load bloom filter
                    std::string segment_dir;
                    engine::utils::GetParentPath(location, segment_dir);
                    segment::SegmentReader segment_reader(segment_dir);
                    segment::IdBloomFilterPtr id_bloom_filter_ptr;
                    segment_reader.LoadBloomFilter(id_bloom_filter_ptr);

                    // Check if the id is present.
                    bool pass = true;
                    for (auto& id : search_job->vectors().id_array_) {
                        if (id_bloom_filter_ptr->Check(id)) {
                            pass = false;
                            break;
                        }
                    }

                    if (pass) {
                        //                        std::cout << search_task->GetIndexId() << std::endl;
                        search_job->SearchDone(search_task->GetIndexId());
                        task = tasks.erase(task);
                    } else {
                        task++;
                    }
                }
            }
        }

        //        for (auto &task : tasks) {
        //            if ...
        //            search_job->SearchDone(task->id);
        //            tasks.erase(task);
        //        }

129 130 131
        for (auto& task : tasks) {
            OptimizerInst::GetInstance()->Run(task);
        }
W
wxyu 已提交
132

W
wxyu 已提交
133
        for (auto& task : tasks) {
F
fishpenguin 已提交
134
            calculate_path(res_mgr_, task);
W
wxyu 已提交
135 136
        }

137 138
        // disk resources NEVER be empty.
        if (auto disk = res_mgr_->GetDiskResources()[0].lock()) {
139
            // if (auto disk = res_mgr_->GetCpuResources()[0].lock()) {
140
            for (auto& task : tasks) {
141 142 143 144 145
                if (task->Type() == TaskType::BuildIndexTask && task->path().Last() == "cpu") {
                    CPUBuilderInst::GetInstance()->Put(task);
                } else {
                    disk->task_table().Put(task, nullptr);
                }
146 147 148 149 150 151
            }
        }
    }
}

std::vector<TaskPtr>
S
starlord 已提交
152
JobMgr::build_task(const JobPtr& job) {
153 154 155
    return TaskCreator::Create(job);
}

W
wxyu 已提交
156
void
F
fishpenguin 已提交
157
JobMgr::calculate_path(const ResourceMgrPtr& res_mgr, const TaskPtr& task) {
158
    if (task->type_ != TaskType::SearchTask && task->type_ != TaskType::BuildIndexTask) {
Y
youny626 已提交
159 160
        return;
    }
W
wxyu 已提交
161

Y
youny626 已提交
162 163
    if (task->label()->Type() != TaskLabelType::SPECIFIED_RESOURCE) {
        return;
W
wxyu 已提交
164
    }
Y
youny626 已提交
165 166 167

    std::vector<std::string> path;
    auto spec_label = std::static_pointer_cast<SpecResLabel>(task->label());
F
fishpenguin 已提交
168
    auto src = res_mgr->GetDiskResources()[0];
Y
youny626 已提交
169
    auto dest = spec_label->resource();
F
fishpenguin 已提交
170
    ShortestPath(src.lock(), dest.lock(), res_mgr, path);
Y
youny626 已提交
171
    task->path() = Path(path, path.size() - 1);
W
wxyu 已提交
172 173
}

S
starlord 已提交
174 175
}  // namespace scheduler
}  // namespace milvus