Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
// -*- mode: c++; c-file-style: "k&r"; c-basic-offset: 4 -*-
/***********************************************************************
*
* ir/client.cc:
* Inconsistent replication client
*
* Copyright 2013-2015 Dan R. K. Ports <drkp@cs.washington.edu>
* Irene Zhang Ports <iyzhang@cs.washington.edu>
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use, copy,
* modify, merge, publish, distribute, sublicense, and/or sell copies
* of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
**********************************************************************/
#include "replication/common/client.h"
#include "replication/common/request.pb.h"
#include "lib/assert.h"
#include "lib/message.h"
#include "lib/transport.h"
#include "replication/ir/client.h"
#include "replication/ir/ir-proto.pb.h"
#include <math.h>
namespace replication {
namespace ir {
using namespace std;
IRClient::IRClient(const transport::Configuration &config,
Transport *transport,
uint64_t clientid)
: Client(config, transport, clientid),
view(0),
lastReqId(0),
inconsistentReplyQuorum(config.QuorumSize()-1),
consensusReplyQuorum(config.QuorumSize() + ceil(0.5 * config.QuorumSize()) -1),
confirmQuorum(config.QuorumSize()-1)
{
pendingInconsistentRequest = NULL;
pendingConsensusRequest = NULL;
pendingUnloggedRequest = NULL;
inconsistentRequestTimeout = new Timeout(transport, 500, [this]() {
ResendInconsistent();
});
consensusRequestTimeout = new Timeout(transport, 500, [this]() {
ConsensusSlowPath();
});
confirmationTimeout = new Timeout(transport, 500, [this]() {
ResendConfirmation();
});
unloggedRequestTimeout = new Timeout(transport, 500, [this]() {
UnloggedRequestTimeoutCallback();
});
}
IRClient::~IRClient()
{
if (pendingInconsistentRequest) {
delete pendingInconsistentRequest;
}
if (pendingInconsistentRequest) {
delete pendingConsensusRequest;
}
if (pendingUnloggedRequest) {
delete pendingUnloggedRequest;
}
delete inconsistentRequestTimeout;
delete consensusRequestTimeout;
delete confirmationTimeout;
delete unloggedRequestTimeout;
}
void
IRClient::Invoke(const string &request,
continuation_t continuation)
{
InvokeInconsistent(request, continuation);
}
void
IRClient::InvokeInconsistent(const string &request,
continuation_t continuation)
{
// XXX Can only handle one pending request for now
if (pendingInconsistentRequest != NULL) {
Panic("Client only supports one pending request");
}
++lastReqId;
uint64_t reqId = lastReqId;
pendingInconsistentRequest = new PendingRequest(request, reqId, continuation);
SendInconsistent();
}
void
IRClient::SendInconsistent()
{
ASSERT(pendingInconsistentRequest != NULL);
proto::ProposeInconsistentMessage reqMsg;
reqMsg.mutable_req()->set_op(pendingInconsistentRequest->request);
reqMsg.mutable_req()->set_clientid(clientid);
reqMsg.mutable_req()->set_clientreqid(pendingInconsistentRequest->clientReqId);
if (transport->SendMessageToAll(this, reqMsg)) {
inconsistentRequestTimeout->Reset();
} else {
Warning("Could not send inconsistent request to replicas");
}
}
void
IRClient::InvokeConsensus(const string &request,
decide_t decide,
continuation_t continuation)
{
// XXX Can only handle one pending request for now
if (pendingConsensusRequest != NULL) {
Panic("Client only supports one pending request");
}
++lastReqId;
uint64_t reqId = lastReqId;
pendingConsensusRequest = new PendingRequest(request, reqId, continuation);
pendingConsensusRequest->decide = decide;
proto::ProposeConsensusMessage reqMsg;
reqMsg.mutable_req()->set_op(pendingConsensusRequest->request);
reqMsg.mutable_req()->set_clientid(clientid);
reqMsg.mutable_req()->set_clientreqid(pendingConsensusRequest->clientReqId);
if (transport->SendMessageToAll(this, reqMsg)) {
consensusRequestTimeout->Reset();
} else {
Warning("Could not send consensus request to replicas");
}
}
void
IRClient::InvokeUnlogged(int replicaIdx,
const string &request,
continuation_t continuation,
timeout_continuation_t timeoutContinuation,
uint32_t timeout)
{
// XXX Can only handle one pending request for now
if (pendingUnloggedRequest != NULL) {
Panic("Client only supports one pending unlogged request");
}
++lastReqId;
uint64_t reqId = lastReqId;
pendingUnloggedRequest = new PendingRequest(request, reqId, continuation);
pendingUnloggedRequest->timeoutContinuation = timeoutContinuation;
proto::UnloggedRequestMessage reqMsg;
reqMsg.mutable_req()->set_op(pendingUnloggedRequest->request);
reqMsg.mutable_req()->set_clientid(clientid);
reqMsg.mutable_req()->set_clientreqid(pendingUnloggedRequest->clientReqId);
ASSERT(!unloggedRequestTimeout->Active());
if (transport->SendMessageToReplica(this, replicaIdx, reqMsg)) {
unloggedRequestTimeout->SetTimeout(timeout);
unloggedRequestTimeout->Start();
} else {
Warning("Could not send unlogged request to replica");
}
}
void
IRClient::ResendInconsistent()
{
if (pendingInconsistentRequest == NULL) {
inconsistentRequestTimeout->Stop();
return;
}
Warning("Client timeout; resending inconsistent request: %lu", pendingInconsistentRequest->clientReqId);
SendInconsistent();
}
void
IRClient::ConsensusSlowPath()
{
// Give up on the fast path
consensusRequestTimeout->Stop();
if (pendingConsensusRequest == NULL) {
Warning("No consensus operation pending");
return;
}
Notice("Client timeout; taking consensus slow path: %lu", pendingConsensusRequest->clientReqId);
// get results so far
viewstamp_t vs = { view, pendingConsensusRequest->clientReqId };
auto msgs = consensusReplyQuorum.GetMessages(vs);
// construct result set
set<string> results;
for (auto &msg : msgs) {
results.insert(msg.second.result());
}
// Upcall into the application
ASSERT(pendingConsensusRequest->decide != NULL);
string result = pendingConsensusRequest->decide(results);
// Put the result in the request to store for later retries
pendingConsensusRequest->request = result;
// Send finalize message
proto::FinalizeConsensusMessage response;
response.mutable_opid()->set_clientid(clientid);
response.mutable_opid()->set_clientreqid(pendingConsensusRequest->clientReqId);
response.set_result(result);
if(transport->SendMessageToAll(this, response)) {
confirmationTimeout->Reset();
} else {
Warning("Could not send finalize message to replicas");
}
}
void
IRClient::ResendConfirmation()
{
if (pendingConsensusRequest == NULL) {
// Unless we are waiting for a confirm to finish up a
// consensus slow path, just ignore
confirmationTimeout->Stop();
} else {
proto::FinalizeConsensusMessage response;
response.mutable_opid()->set_clientid(clientid);
response.mutable_opid()->set_clientreqid(pendingConsensusRequest->clientReqId);
response.set_result(pendingConsensusRequest->request);
if(transport->SendMessageToAll(this, response)) {
confirmationTimeout->Reset();
} else {
Warning("Could not send finalize message to replicas");
}
}
}
void
IRClient::ReceiveMessage(const TransportAddress &remote,
const string &type,
const string &data)
{
static proto::ReplyInconsistentMessage replyInconsistent;
static proto::ReplyConsensusMessage replyConsensus;
static proto::ConfirmMessage confirm;
static proto::UnloggedReplyMessage unloggedReply;
if (type == replyInconsistent.GetTypeName()) {
replyInconsistent.ParseFromString(data);
HandleInconsistentReply(remote, replyInconsistent);
} else if (type == replyConsensus.GetTypeName()) {
replyConsensus.ParseFromString(data);
HandleConsensusReply(remote, replyConsensus);
} else if (type == confirm.GetTypeName()) {
confirm.ParseFromString(data);
HandleConfirm(remote, confirm);
} else if (type == unloggedReply.GetTypeName()) {
unloggedReply.ParseFromString(data);
HandleUnloggedReply(remote, unloggedReply);
} else {
Client::ReceiveMessage(remote, type, data);
}
}
void
IRClient::HandleInconsistentReply(const TransportAddress &remote,
const proto::ReplyInconsistentMessage &msg)
{
if (pendingInconsistentRequest == NULL) {
Warning("Received reply when no request was pending");
return;
}
if (msg.opid().clientreqid() != pendingInconsistentRequest->clientReqId) {
Debug("Received reply for a different request");
return;
}
Debug("Client received reply: %lu", pendingInconsistentRequest->clientReqId);
// Record replies
viewstamp_t vs = { msg.view(), msg.opid().clientreqid() };
if (inconsistentReplyQuorum.AddAndCheckForQuorum(vs, msg.replicaidx(), msg)) {
// If all quorum received, then send finalize and return to client
inconsistentRequestTimeout->Stop();
PendingRequest *req = pendingInconsistentRequest;
pendingInconsistentRequest = NULL;
// asynchronously send the finalize message
proto::FinalizeInconsistentMessage response;
*(response.mutable_opid()) = msg.opid();
if (!transport->SendMessageToAll(this, response)) {
Warning("Could not send finalize message to replicas");
} // don't use the confirmation timeout for async replies
// Return to client
req->continuation(req->request, "");
delete req;
}
}
void
IRClient::HandleConsensusReply(const TransportAddress &remote,
const proto::ReplyConsensusMessage &msg)
{
if (pendingConsensusRequest == NULL) {
Warning("Received reply when no request was pending");
return;
}
if (msg.opid().clientreqid() != pendingConsensusRequest->clientReqId) {
Debug("Received reply for a different request");
return;
}
Debug("Client received reply: %lu", pendingConsensusRequest->clientReqId);
// Record replies
viewstamp_t vs = { msg.view(), msg.opid().clientreqid() };
if (auto msgs =
(consensusReplyQuorum.AddAndCheckForQuorum(vs, msg.replicaidx(), msg))) {
// If all quorum received, then check return values
map<string, int> results;
// count matching results
for (auto &m : *msgs) {
results[m.second.result()] = results.count(m.second.result()) + 1;
}
// Check that there are a quorum of *matching* results
for (auto result : results) {
if (result.second >= consensusReplyQuorum.NumRequired()) {
consensusRequestTimeout->Stop();
PendingRequest *req = pendingConsensusRequest;
pendingConsensusRequest = NULL;
// asynchronously send the finalize message
proto::FinalizeConsensusMessage response;
*response.mutable_opid() = msg.opid();
response.set_result(result.first);
if(!transport->SendMessageToAll(this, response)) {
Warning("Could not send finalize message to replicas");
} // don't reset the confirm timeout on fast path
// Return to client
req->continuation(req->request, result.first);
delete req;
break;
}
}
}
}
void
IRClient::HandleConfirm(const TransportAddress &remote,
const proto::ConfirmMessage &msg)
{
if (pendingConsensusRequest == NULL) {
// if no pending request, then we were waiting for a synchronous confirmation
return;
}
if (msg.opid().clientreqid() != pendingConsensusRequest->clientReqId) {
Debug("Received reply for a different request");
return;
}
// otherwise, we are waiting on a finalized consensus result
// Record replies
viewstamp_t vs = { msg.view(), msg.opid().clientreqid() };
if (confirmQuorum.AddAndCheckForQuorum(vs, msg.replicaidx(), msg)) {
confirmationTimeout->Stop();
PendingRequest *req = pendingConsensusRequest;
pendingConsensusRequest = NULL;
// Return to client
req->continuation(req->request, pendingConsensusRequest->request);
delete req;
}
}
void
IRClient::HandleUnloggedReply(const TransportAddress &remote,
const proto::UnloggedReplyMessage &msg)
{
if (pendingUnloggedRequest == NULL) {
Warning("Received unloggedReply when no request was pending");
return;
}
Debug("Client received unloggedReply");
unloggedRequestTimeout->Stop();
PendingRequest *req = pendingUnloggedRequest;
pendingUnloggedRequest = NULL;
req->continuation(req->request, msg.reply());
delete req;
}
void
IRClient::UnloggedRequestTimeoutCallback()
{
PendingRequest *req = pendingUnloggedRequest;
pendingUnloggedRequest = NULL;
Warning("Unlogged request timed out");
unloggedRequestTimeout->Stop();
req->timeoutContinuation(req->request);
}
} // namespace ir
} // namespace replication