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

S
starlord 已提交
12
#include "scheduler/JobMgr.h"
13 14 15 16 17 18 19

#include <src/db/Utils.h>
#include <src/segment/SegmentReader.h>

#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 71 72
    {
        std::lock_guard<std::mutex> lock(mutex_);
        queue_.push(job);
    }
    cv_.notify_one();
}

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

        auto tasks = build_task(job);
82 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

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

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

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

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

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

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

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

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

S
starlord 已提交
171 172
}  // namespace scheduler
}  // namespace milvus