2022-01-31 13:56:44 +01:00
|
|
|
//
|
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
|
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
2022-01-28 13:50:59 +01:00
|
|
|
#include "td/utils/algorithm.h"
|
2022-01-31 13:56:44 +01:00
|
|
|
#include "td/utils/ChainScheduler.h"
|
|
|
|
#include "td/utils/common.h"
|
|
|
|
#include "td/utils/logging.h"
|
2022-01-28 17:12:20 +01:00
|
|
|
#include "td/utils/misc.h"
|
2022-01-31 13:56:44 +01:00
|
|
|
#include "td/utils/Random.h"
|
2022-01-28 13:50:59 +01:00
|
|
|
#include "td/utils/Span.h"
|
2022-01-31 13:56:44 +01:00
|
|
|
#include "td/utils/StringBuilder.h"
|
2022-01-28 13:50:59 +01:00
|
|
|
#include "td/utils/tests.h"
|
|
|
|
|
2022-01-31 13:56:44 +01:00
|
|
|
#include <memory>
|
2022-01-28 13:50:59 +01:00
|
|
|
#include <numeric>
|
|
|
|
|
2022-01-28 16:59:22 +01:00
|
|
|
TEST(ChainScheduler, CreateAfterActive) {
|
|
|
|
td::ChainScheduler<int> scheduler;
|
2022-02-23 20:46:32 +01:00
|
|
|
td::vector<td::ChainScheduler<int>::ChainId> chains{1};
|
2022-01-28 16:59:22 +01:00
|
|
|
|
2022-02-01 16:25:02 +01:00
|
|
|
auto first_task_id = scheduler.create_task(chains, 1);
|
2022-01-28 16:59:22 +01:00
|
|
|
ASSERT_EQ(first_task_id, scheduler.start_next_task().unwrap().task_id);
|
2022-02-01 16:25:02 +01:00
|
|
|
auto second_task_id = scheduler.create_task(chains, 2);
|
2022-01-28 16:59:22 +01:00
|
|
|
ASSERT_EQ(second_task_id, scheduler.start_next_task().unwrap().task_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
TEST(ChainScheduler, RestartAfterActive) {
|
|
|
|
td::ChainScheduler<int> scheduler;
|
2022-02-23 20:46:32 +01:00
|
|
|
std::vector<td::ChainScheduler<int>::ChainId> chains{1};
|
2022-01-28 16:59:22 +01:00
|
|
|
|
2022-02-01 16:25:02 +01:00
|
|
|
auto first_task_id = scheduler.create_task(chains, 1);
|
|
|
|
auto second_task_id = scheduler.create_task(chains, 2);
|
2022-01-28 16:59:22 +01:00
|
|
|
ASSERT_EQ(first_task_id, scheduler.start_next_task().unwrap().task_id);
|
|
|
|
ASSERT_EQ(second_task_id, scheduler.start_next_task().unwrap().task_id);
|
|
|
|
|
|
|
|
scheduler.reset_task(first_task_id);
|
|
|
|
ASSERT_EQ(first_task_id, scheduler.start_next_task().unwrap().task_id);
|
|
|
|
|
|
|
|
scheduler.reset_task(second_task_id);
|
|
|
|
ASSERT_EQ(second_task_id, scheduler.start_next_task().unwrap().task_id);
|
|
|
|
}
|
|
|
|
|
2022-02-01 09:13:59 +01:00
|
|
|
TEST(ChainScheduler, SendAfterRestart) {
|
|
|
|
td::ChainScheduler<int> scheduler;
|
2022-02-23 20:46:32 +01:00
|
|
|
std::vector<td::ChainScheduler<int>::ChainId> chains{1};
|
2022-02-01 09:13:59 +01:00
|
|
|
|
2022-02-01 16:25:02 +01:00
|
|
|
auto first_task_id = scheduler.create_task(chains, 1);
|
|
|
|
auto second_task_id = scheduler.create_task(chains, 2);
|
2022-02-01 09:13:59 +01:00
|
|
|
ASSERT_EQ(first_task_id, scheduler.start_next_task().unwrap().task_id);
|
|
|
|
ASSERT_EQ(second_task_id, scheduler.start_next_task().unwrap().task_id);
|
|
|
|
|
|
|
|
scheduler.reset_task(first_task_id);
|
|
|
|
|
2022-02-01 16:25:02 +01:00
|
|
|
scheduler.create_task(chains, 3);
|
2022-02-01 09:13:59 +01:00
|
|
|
|
|
|
|
ASSERT_EQ(first_task_id, scheduler.start_next_task().unwrap().task_id);
|
|
|
|
ASSERT_TRUE(!scheduler.start_next_task());
|
|
|
|
}
|
|
|
|
|
2022-01-28 13:50:59 +01:00
|
|
|
TEST(ChainScheduler, Basic) {
|
|
|
|
td::ChainScheduler<int> scheduler;
|
|
|
|
for (int i = 0; i < 100; i++) {
|
2022-02-23 20:46:32 +01:00
|
|
|
scheduler.create_task({td::ChainScheduler<int>::ChainId{1}}, i);
|
2022-01-28 13:50:59 +01:00
|
|
|
}
|
|
|
|
int j = 0;
|
|
|
|
while (j != 100) {
|
2022-02-23 20:46:32 +01:00
|
|
|
td::vector<td::ChainScheduler<int>::TaskId> tasks;
|
2022-01-28 13:50:59 +01:00
|
|
|
while (true) {
|
|
|
|
auto o_task_id = scheduler.start_next_task();
|
|
|
|
if (!o_task_id) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
auto task_id = o_task_id.value().task_id;
|
|
|
|
auto extra = *scheduler.get_task_extra(task_id);
|
2022-01-31 13:56:44 +01:00
|
|
|
auto parents =
|
|
|
|
td::transform(o_task_id.value().parents, [&](auto parent) { return *scheduler.get_task_extra(parent); });
|
|
|
|
LOG(INFO) << "Start " << extra << parents;
|
2022-01-28 13:50:59 +01:00
|
|
|
CHECK(extra == j);
|
|
|
|
j++;
|
|
|
|
tasks.push_back(task_id);
|
|
|
|
}
|
|
|
|
for (auto &task_id : tasks) {
|
|
|
|
auto extra = *scheduler.get_task_extra(task_id);
|
2022-01-31 13:56:44 +01:00
|
|
|
LOG(INFO) << "Finish " << extra;
|
2022-01-28 13:50:59 +01:00
|
|
|
scheduler.finish_task(task_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-10 22:11:02 +01:00
|
|
|
struct ChainSchedulerQuery;
|
|
|
|
using QueryPtr = std::shared_ptr<ChainSchedulerQuery>;
|
2022-01-28 13:50:59 +01:00
|
|
|
using ChainId = td::ChainScheduler<QueryPtr>::ChainId;
|
|
|
|
using TaskId = td::ChainScheduler<QueryPtr>::TaskId;
|
2022-02-01 16:25:02 +01:00
|
|
|
|
2022-02-10 22:11:02 +01:00
|
|
|
struct ChainSchedulerQuery {
|
2022-01-28 13:50:59 +01:00
|
|
|
int id{};
|
|
|
|
TaskId task_id{};
|
|
|
|
bool is_ok{};
|
2022-02-01 09:13:59 +01:00
|
|
|
bool skipped{};
|
2022-01-28 13:50:59 +01:00
|
|
|
};
|
2022-02-01 16:25:02 +01:00
|
|
|
|
2022-01-28 13:50:59 +01:00
|
|
|
TEST(ChainScheduler, Stress) {
|
|
|
|
td::Random::Xorshift128plus rnd(123);
|
2022-02-01 09:13:59 +01:00
|
|
|
int max_query_id = 100000;
|
2022-01-28 13:50:59 +01:00
|
|
|
int MAX_INFLIGHT_QUERIES = 20;
|
|
|
|
int ChainsN = 4;
|
|
|
|
|
|
|
|
struct QueryWithParents {
|
2022-02-01 09:13:59 +01:00
|
|
|
TaskId task_id;
|
2022-01-28 13:50:59 +01:00
|
|
|
QueryPtr id;
|
2022-01-31 13:56:44 +01:00
|
|
|
td::vector<QueryPtr> parents;
|
2022-01-28 13:50:59 +01:00
|
|
|
};
|
2022-01-31 13:56:44 +01:00
|
|
|
td::vector<QueryWithParents> active_queries;
|
2022-01-28 13:50:59 +01:00
|
|
|
|
|
|
|
td::ChainScheduler<QueryPtr> scheduler;
|
2022-01-31 13:56:44 +01:00
|
|
|
td::vector<td::vector<QueryPtr>> chains(ChainsN);
|
2022-01-28 13:50:59 +01:00
|
|
|
int inflight_queries{};
|
|
|
|
int current_query_id{};
|
2022-02-01 09:13:59 +01:00
|
|
|
int sent_cnt{};
|
2022-01-28 13:50:59 +01:00
|
|
|
bool done = false;
|
2022-02-01 09:13:59 +01:00
|
|
|
std::vector<TaskId> pending_queries;
|
2022-01-28 13:50:59 +01:00
|
|
|
|
|
|
|
auto schedule_new_query = [&] {
|
|
|
|
if (current_query_id > max_query_id) {
|
|
|
|
if (inflight_queries == 0) {
|
|
|
|
done = true;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (inflight_queries >= MAX_INFLIGHT_QUERIES) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
auto query_id = current_query_id++;
|
2022-02-10 22:11:02 +01:00
|
|
|
auto query = std::make_shared<ChainSchedulerQuery>();
|
2022-01-28 13:50:59 +01:00
|
|
|
query->id = query_id;
|
|
|
|
int chain_n = rnd.fast(1, ChainsN);
|
2022-01-31 13:56:44 +01:00
|
|
|
td::vector<ChainId> chain_ids(ChainsN);
|
2022-01-28 13:50:59 +01:00
|
|
|
std::iota(chain_ids.begin(), chain_ids.end(), 0);
|
|
|
|
td::random_shuffle(td::as_mutable_span(chain_ids), rnd);
|
|
|
|
chain_ids.resize(chain_n);
|
|
|
|
for (auto chain_id : chain_ids) {
|
2022-01-28 17:12:20 +01:00
|
|
|
chains[td::narrow_cast<size_t>(chain_id)].push_back(query);
|
2022-01-28 13:50:59 +01:00
|
|
|
}
|
|
|
|
auto task_id = scheduler.create_task(chain_ids, query);
|
|
|
|
query->task_id = task_id;
|
2022-02-01 09:13:59 +01:00
|
|
|
pending_queries.push_back(task_id);
|
2022-01-28 13:50:59 +01:00
|
|
|
inflight_queries++;
|
|
|
|
};
|
|
|
|
|
2022-01-31 13:56:44 +01:00
|
|
|
auto check_parents_ok = [&](const QueryWithParents &query_with_parents) -> bool {
|
2022-01-28 13:50:59 +01:00
|
|
|
return td::all_of(query_with_parents.parents, [](auto &parent) { return parent->is_ok; });
|
|
|
|
};
|
|
|
|
|
|
|
|
auto to_query_ptr = [&](TaskId task_id) {
|
|
|
|
return *scheduler.get_task_extra(task_id);
|
|
|
|
};
|
2022-01-31 13:56:44 +01:00
|
|
|
auto flush_pending_queries = [&] {
|
2022-01-28 13:50:59 +01:00
|
|
|
while (true) {
|
|
|
|
auto o_task_with_parents = scheduler.start_next_task();
|
|
|
|
if (!o_task_with_parents) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
auto task_with_parents = o_task_with_parents.unwrap();
|
|
|
|
QueryWithParents query_with_parents;
|
2022-02-01 09:13:59 +01:00
|
|
|
query_with_parents.task_id = task_with_parents.task_id;
|
2022-01-28 13:50:59 +01:00
|
|
|
query_with_parents.id = to_query_ptr(task_with_parents.task_id);
|
|
|
|
query_with_parents.parents = td::transform(task_with_parents.parents, to_query_ptr);
|
|
|
|
active_queries.push_back(query_with_parents);
|
2022-02-01 09:13:59 +01:00
|
|
|
sent_cnt++;
|
2022-01-28 13:50:59 +01:00
|
|
|
}
|
|
|
|
};
|
2022-02-01 16:25:02 +01:00
|
|
|
auto skip_one_query = [&] {
|
2022-02-01 09:13:59 +01:00
|
|
|
if (pending_queries.empty()) {
|
|
|
|
return;
|
|
|
|
}
|
2022-02-01 16:25:02 +01:00
|
|
|
auto it = pending_queries.begin() + rnd.fast(0, static_cast<int>(pending_queries.size()) - 1);
|
2022-02-01 09:13:59 +01:00
|
|
|
auto task_id = *it;
|
|
|
|
pending_queries.erase(it);
|
2022-02-01 16:25:02 +01:00
|
|
|
td::remove_if(active_queries, [&](auto &q) { return q.task_id == task_id; });
|
2022-02-01 09:13:59 +01:00
|
|
|
|
|
|
|
auto query = *scheduler.get_task_extra(task_id);
|
|
|
|
query->skipped = true;
|
|
|
|
scheduler.finish_task(task_id);
|
|
|
|
inflight_queries--;
|
2022-02-03 20:01:09 +01:00
|
|
|
LOG(INFO) << "Skip " << query->id;
|
2022-02-01 09:13:59 +01:00
|
|
|
};
|
2022-01-31 13:56:44 +01:00
|
|
|
auto execute_one_query = [&] {
|
2022-01-28 13:50:59 +01:00
|
|
|
if (active_queries.empty()) {
|
|
|
|
return;
|
|
|
|
}
|
2022-01-31 13:56:44 +01:00
|
|
|
auto it = active_queries.begin() + rnd.fast(0, static_cast<int>(active_queries.size()) - 1);
|
2022-01-28 13:50:59 +01:00
|
|
|
auto query_with_parents = *it;
|
|
|
|
active_queries.erase(it);
|
|
|
|
|
|
|
|
auto query = query_with_parents.id;
|
|
|
|
if (rnd.fast(0, 20) == 0) {
|
|
|
|
scheduler.finish_task(query->task_id);
|
2022-02-01 09:13:59 +01:00
|
|
|
td::remove(pending_queries, query->task_id);
|
2022-01-28 13:50:59 +01:00
|
|
|
inflight_queries--;
|
2022-01-31 13:56:44 +01:00
|
|
|
LOG(INFO) << "Fail " << query->id;
|
2022-01-28 13:50:59 +01:00
|
|
|
} else if (check_parents_ok(query_with_parents)) {
|
|
|
|
query->is_ok = true;
|
|
|
|
scheduler.finish_task(query->task_id);
|
2022-02-01 09:13:59 +01:00
|
|
|
td::remove(pending_queries, query->task_id);
|
2022-01-28 13:50:59 +01:00
|
|
|
inflight_queries--;
|
2022-01-31 13:56:44 +01:00
|
|
|
LOG(INFO) << "OK " << query->id;
|
2022-01-28 13:50:59 +01:00
|
|
|
} else {
|
|
|
|
scheduler.reset_task(query->task_id);
|
2022-02-03 20:01:09 +01:00
|
|
|
LOG(INFO) << "Reset " << query->id;
|
2022-01-28 13:50:59 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-02-01 09:13:59 +01:00
|
|
|
td::RandomSteps steps({{schedule_new_query, 100}, {execute_one_query, 100}, {skip_one_query, 10}});
|
2022-01-28 13:50:59 +01:00
|
|
|
while (!done) {
|
|
|
|
steps.step(rnd);
|
|
|
|
flush_pending_queries();
|
2022-01-31 13:56:44 +01:00
|
|
|
// LOG(INFO) << scheduler;
|
2022-01-28 13:50:59 +01:00
|
|
|
}
|
2022-02-03 20:01:09 +01:00
|
|
|
LOG(INFO) << "Sent queries count " << sent_cnt;
|
|
|
|
LOG(INFO) << "Total queries " << current_query_id;
|
2022-01-28 13:50:59 +01:00
|
|
|
for (auto &chain : chains) {
|
|
|
|
int prev_ok = -1;
|
|
|
|
int failed_cnt = 0;
|
|
|
|
int ok_cnt = 0;
|
2022-02-01 09:13:59 +01:00
|
|
|
int skipped_cnt = 0;
|
2022-01-28 13:50:59 +01:00
|
|
|
for (auto &q : chain) {
|
|
|
|
if (q->is_ok) {
|
2022-01-31 13:56:44 +01:00
|
|
|
CHECK(prev_ok < q->id);
|
2022-01-28 13:50:59 +01:00
|
|
|
prev_ok = q->id;
|
|
|
|
ok_cnt++;
|
|
|
|
} else {
|
2022-02-01 09:13:59 +01:00
|
|
|
if (q->skipped) {
|
|
|
|
skipped_cnt++;
|
|
|
|
} else {
|
|
|
|
failed_cnt++;
|
|
|
|
}
|
2022-01-28 13:50:59 +01:00
|
|
|
}
|
|
|
|
}
|
2022-02-01 09:13:59 +01:00
|
|
|
LOG(INFO) << "Chain ok " << ok_cnt << " failed " << failed_cnt << " skipped " << skipped_cnt;
|
2022-01-28 13:50:59 +01:00
|
|
|
}
|
|
|
|
}
|