Throw exceptions on RPC failure and Distributed error handling
Summary: This diff changes the RPC layer to directly return `TResponse` to the user when issuing a `Call<...>` RPC call. The call throws an exception on failure (instead of the previous return `nullopt`). All servers (network, RPC and distributed) are set to have explicit `Shutdown` methods so that a controlled shutdown can always be performed. The object destructors now have `CHECK`s to enforce that the `AwaitShutdown` methods were called. The distributed memgraph is changed that none of the binaries (master/workers) crash when there is a communication failure. Instead, the whole cluster starts a graceful shutdown when a persistent communication error is detected. Transient errors are allowed during execution. The transaction that errored out will be aborted on the whole cluster. The cluster state is managed using a new Heartbeat RPC call. Reviewers: buda, teon.banek, msantl Reviewed By: teon.banek Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D1604
This commit is contained in:
@@ -32,7 +32,7 @@ bool Client::Connect(const io::network::Endpoint &endpoint) {
|
||||
// Create a new SSL object that will be used for SSL communication.
|
||||
ssl_ = SSL_new(context_->context());
|
||||
if (ssl_ == nullptr) {
|
||||
LOG(WARNING) << "Couldn't create client SSL object!";
|
||||
LOG(ERROR) << "Couldn't create client SSL object!";
|
||||
socket_.Close();
|
||||
return false;
|
||||
}
|
||||
@@ -43,7 +43,7 @@ bool Client::Connect(const io::network::Endpoint &endpoint) {
|
||||
// handle that in our socket destructor).
|
||||
bio_ = BIO_new_socket(socket_.fd(), BIO_NOCLOSE);
|
||||
if (bio_ == nullptr) {
|
||||
LOG(WARNING) << "Couldn't create client BIO object!";
|
||||
LOG(ERROR) << "Couldn't create client BIO object!";
|
||||
socket_.Close();
|
||||
return false;
|
||||
}
|
||||
@@ -111,7 +111,7 @@ bool Client::Read(size_t len) {
|
||||
continue;
|
||||
} else {
|
||||
// This is a fatal error.
|
||||
LOG(WARNING) << "Received an unexpected SSL error: " << err;
|
||||
LOG(ERROR) << "Received an unexpected SSL error: " << err;
|
||||
return false;
|
||||
}
|
||||
} else if (got == 0) {
|
||||
|
||||
Reference in New Issue
Block a user