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"
22
#include "optimizer/Optimizer.h"
W
wxyu 已提交
23
#include "scheduler/Algorithm.h"
W
wxyu 已提交
24 25 26
#include "scheduler/optimizer/Optimizer.h"
#include "scheduler/tasklabel/SpecResLabel.h"
#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 87 88 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 129 130 131

        // 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) {
            scheduler::ResultIds ids(search_job->nq() * search_job->topk(), -1);
            scheduler::ResultDistances distances(search_job->nq() * search_job->topk(),
                                                 std::numeric_limits<float>::max());
            search_job->GetResultIds() = ids;
            search_job->GetResultDistances() = distances;

            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);
        //        }

132 133 134
        for (auto& task : tasks) {
            OptimizerInst::GetInstance()->Run(task);
        }
W
wxyu 已提交
135

W
wxyu 已提交
136
        for (auto& task : tasks) {
F
fishpenguin 已提交
137
            calculate_path(res_mgr_, task);
W
wxyu 已提交
138 139
        }

140 141
        // disk resources NEVER be empty.
        if (auto disk = res_mgr_->GetDiskResources()[0].lock()) {
142
            // if (auto disk = res_mgr_->GetCpuResources()[0].lock()) {
143
            for (auto& task : tasks) {
144
                disk->task_table().Put(task, nullptr);
145 146 147 148 149 150
            }
        }
    }
}

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

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

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

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

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