acc655f4fd
This PR adds support for generating randomized workloads that will be executed against a simulated cluster, as well as against a correctness model. Initially this just generates ScanAll and CreateVertex requests, and anything that it creates, it also inserts into a `std::set`, and when we do a ScanAll, it asserts that we get the same number of requests back. This will become much more sophisticated over time, but it's already hitting pay-dirt.
264 lines
7.2 KiB
C++
264 lines
7.2 KiB
C++
// Copyright 2022 Memgraph Ltd.
|
|
//
|
|
// Use of this software is governed by the Business Source License
|
|
// included in the file licenses/BSL.txt; by using this file, you agree to be bound by the terms of the Business Source
|
|
// License, and you may not use this file except in compliance with the Business Source License.
|
|
//
|
|
// As of the Change Date specified in that file, in accordance with
|
|
// the Business Source License, use of this software will be governed
|
|
// by the Apache License, Version 2.0, included in the file
|
|
// licenses/APL.txt.
|
|
|
|
#include <chrono>
|
|
#include <deque>
|
|
#include <iostream>
|
|
#include <map>
|
|
#include <optional>
|
|
#include <set>
|
|
#include <thread>
|
|
#include <vector>
|
|
|
|
#include "io/address.hpp"
|
|
#include "io/rsm/raft.hpp"
|
|
#include "io/rsm/rsm_client.hpp"
|
|
#include "io/simulator/simulator.hpp"
|
|
#include "io/simulator/simulator_transport.hpp"
|
|
|
|
using memgraph::io::Address;
|
|
using memgraph::io::Duration;
|
|
using memgraph::io::Io;
|
|
using memgraph::io::ResponseEnvelope;
|
|
using memgraph::io::ResponseFuture;
|
|
using memgraph::io::ResponseResult;
|
|
using memgraph::io::Time;
|
|
using memgraph::io::rsm::Raft;
|
|
using memgraph::io::rsm::ReadRequest;
|
|
using memgraph::io::rsm::ReadResponse;
|
|
using memgraph::io::rsm::RsmClient;
|
|
using memgraph::io::rsm::WriteRequest;
|
|
using memgraph::io::rsm::WriteResponse;
|
|
using memgraph::io::simulator::Simulator;
|
|
using memgraph::io::simulator::SimulatorConfig;
|
|
using memgraph::io::simulator::SimulatorStats;
|
|
using memgraph::io::simulator::SimulatorTransport;
|
|
|
|
struct CasRequest {
|
|
int key;
|
|
std::optional<int> old_value;
|
|
std::optional<int> new_value;
|
|
};
|
|
|
|
struct CasResponse {
|
|
bool cas_success;
|
|
std::optional<int> last_value;
|
|
};
|
|
|
|
struct GetRequest {
|
|
int key;
|
|
};
|
|
|
|
struct GetResponse {
|
|
std::optional<int> value;
|
|
};
|
|
|
|
class TestState {
|
|
std::map<int, int> state_;
|
|
|
|
public:
|
|
GetResponse Read(GetRequest request) {
|
|
GetResponse ret;
|
|
if (state_.contains(request.key)) {
|
|
ret.value = state_[request.key];
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
CasResponse Apply(CasRequest request) {
|
|
CasResponse ret;
|
|
|
|
// Key exist
|
|
if (state_.contains(request.key)) {
|
|
auto &val = state_[request.key];
|
|
|
|
/*
|
|
* Delete
|
|
*/
|
|
if (!request.new_value) {
|
|
ret.last_value = val;
|
|
ret.cas_success = true;
|
|
|
|
state_.erase(state_.find(request.key));
|
|
}
|
|
|
|
/*
|
|
* Update
|
|
*/
|
|
// Does old_value match?
|
|
if (request.old_value == val) {
|
|
ret.last_value = val;
|
|
ret.cas_success = true;
|
|
|
|
val = request.new_value.value();
|
|
} else {
|
|
ret.last_value = val;
|
|
ret.cas_success = false;
|
|
}
|
|
}
|
|
/*
|
|
* Create
|
|
*/
|
|
else {
|
|
ret.last_value = std::nullopt;
|
|
ret.cas_success = true;
|
|
|
|
state_.emplace(request.key, std::move(request.new_value).value());
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
};
|
|
|
|
template <typename IoImpl>
|
|
void RunRaft(Raft<IoImpl, TestState, CasRequest, CasResponse, GetRequest, GetResponse> server) {
|
|
server.Run();
|
|
}
|
|
|
|
void RunSimulation() {
|
|
SimulatorConfig config{
|
|
.drop_percent = 5,
|
|
.perform_timeouts = true,
|
|
.scramble_messages = true,
|
|
.rng_seed = 0,
|
|
.start_time = Time::min() + std::chrono::microseconds{256 * 1024},
|
|
.abort_time = Time::max(),
|
|
};
|
|
|
|
auto simulator = Simulator(config);
|
|
|
|
auto cli_addr = Address::TestAddress(1);
|
|
auto srv_addr_1 = Address::TestAddress(2);
|
|
auto srv_addr_2 = Address::TestAddress(3);
|
|
auto srv_addr_3 = Address::TestAddress(4);
|
|
|
|
Io<SimulatorTransport> cli_io = simulator.Register(cli_addr);
|
|
Io<SimulatorTransport> srv_io_1 = simulator.Register(srv_addr_1);
|
|
Io<SimulatorTransport> srv_io_2 = simulator.Register(srv_addr_2);
|
|
Io<SimulatorTransport> srv_io_3 = simulator.Register(srv_addr_3);
|
|
|
|
std::vector<Address> srv_1_peers = {srv_addr_2, srv_addr_3};
|
|
std::vector<Address> srv_2_peers = {srv_addr_1, srv_addr_3};
|
|
std::vector<Address> srv_3_peers = {srv_addr_1, srv_addr_2};
|
|
|
|
using RaftClass = Raft<SimulatorTransport, TestState, CasRequest, CasResponse, GetRequest, GetResponse>;
|
|
RaftClass srv_1{std::move(srv_io_1), srv_1_peers, TestState{}};
|
|
RaftClass srv_2{std::move(srv_io_2), srv_2_peers, TestState{}};
|
|
RaftClass srv_3{std::move(srv_io_3), srv_3_peers, TestState{}};
|
|
|
|
auto srv_thread_1 = std::jthread(RunRaft<SimulatorTransport>, std::move(srv_1));
|
|
simulator.IncrementServerCountAndWaitForQuiescentState(srv_addr_1);
|
|
|
|
auto srv_thread_2 = std::jthread(RunRaft<SimulatorTransport>, std::move(srv_2));
|
|
simulator.IncrementServerCountAndWaitForQuiescentState(srv_addr_2);
|
|
|
|
auto srv_thread_3 = std::jthread(RunRaft<SimulatorTransport>, std::move(srv_3));
|
|
simulator.IncrementServerCountAndWaitForQuiescentState(srv_addr_3);
|
|
|
|
spdlog::info("beginning test after servers have become quiescent");
|
|
|
|
std::mt19937 cli_rng_{0};
|
|
std::vector<Address> server_addrs{srv_addr_1, srv_addr_2, srv_addr_3};
|
|
Address leader = server_addrs[0];
|
|
|
|
RsmClient<SimulatorTransport, CasRequest, CasResponse, GetRequest, GetResponse> client(cli_io, leader, server_addrs);
|
|
|
|
const int key = 0;
|
|
std::optional<int> last_known_value = 0;
|
|
|
|
bool success = false;
|
|
|
|
for (int i = 0; !success; i++) {
|
|
/*
|
|
* Write Request
|
|
*/
|
|
CasRequest cas_req;
|
|
cas_req.key = key;
|
|
|
|
cas_req.old_value = last_known_value;
|
|
|
|
cas_req.new_value = i;
|
|
|
|
auto write_cas_response_result = client.SendWriteRequest(cas_req);
|
|
if (write_cas_response_result.HasError()) {
|
|
// timed out
|
|
continue;
|
|
}
|
|
CasResponse cas_response = write_cas_response_result.GetValue();
|
|
|
|
bool cas_succeeded = cas_response.cas_success;
|
|
|
|
spdlog::info("Client received CasResponse! success: {} last_known_value {}", cas_succeeded, (int)*last_known_value);
|
|
|
|
if (cas_succeeded) {
|
|
last_known_value = i;
|
|
} else {
|
|
last_known_value = cas_response.last_value;
|
|
continue;
|
|
}
|
|
|
|
/*
|
|
* Get Request
|
|
*/
|
|
GetRequest get_req;
|
|
get_req.key = key;
|
|
|
|
auto read_get_response_result = client.SendReadRequest(get_req);
|
|
if (read_get_response_result.HasError()) {
|
|
// timed out
|
|
continue;
|
|
}
|
|
GetResponse get_response = read_get_response_result.GetValue();
|
|
|
|
MG_ASSERT(get_response.value == i);
|
|
|
|
spdlog::info("client successfully cas'd a value and read it back! value: {}", i);
|
|
|
|
success = true;
|
|
}
|
|
|
|
MG_ASSERT(success);
|
|
|
|
simulator.ShutDown();
|
|
|
|
SimulatorStats stats = simulator.Stats();
|
|
|
|
spdlog::info("total messages: {}", stats.total_messages);
|
|
spdlog::info("dropped messages: {}", stats.dropped_messages);
|
|
spdlog::info("timed out requests: {}", stats.timed_out_requests);
|
|
spdlog::info("total requests: {}", stats.total_requests);
|
|
spdlog::info("total responses: {}", stats.total_responses);
|
|
spdlog::info("simulator ticks: {}", stats.simulator_ticks);
|
|
|
|
spdlog::info("========================== SUCCESS :) ==========================");
|
|
|
|
/*
|
|
this is implicit in jthread's dtor
|
|
srv_thread_1.join();
|
|
srv_thread_2.join();
|
|
srv_thread_3.join();
|
|
*/
|
|
}
|
|
|
|
int main() {
|
|
int n_tests = 50;
|
|
|
|
for (int i = 0; i < n_tests; i++) {
|
|
spdlog::info("========================== NEW SIMULATION {} ==========================", i);
|
|
spdlog::info("\tTime\t\tTerm\tPort\tRole\t\tMessage\n");
|
|
RunSimulation();
|
|
}
|
|
|
|
spdlog::info("passed {} tests!", n_tests);
|
|
|
|
return 0;
|
|
}
|