]> git.proxmox.com Git - ceph.git/blob - ceph/src/mon/Paxos.h
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / mon / Paxos.h
1 // -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
2 // vim: ts=8 sw=2 smarttab
3 /*
4 * Ceph - scalable distributed file system
5 *
6 * Copyright (C) 2004-2006 Sage Weil <sage@newdream.net>
7 *
8 * This is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License version 2.1, as published by the Free Software
11 * Foundation. See file COPYING.
12 *
13 */
14
15 /*
16 time---->
17
18 cccccccccccccccccca????????????????????????????????????????
19 cccccccccccccccccca????????????????????????????????????????
20 cccccccccccccccccca???????????????????????????????????????? leader
21 cccccccccccccccccc?????????????????????????????????????????
22 ccccc??????????????????????????????????????????????????????
23
24 last_committed
25
26 pn_from
27 pn
28
29 a 12v
30 b 12v
31 c 14v
32 d
33 e 12v
34 */
35
36 /**
37 * Paxos storage layout and behavior
38 *
39 * Currently, we use a key/value store to hold all the Paxos-related data, but
40 * it can logically be depicted as this:
41 *
42 * paxos:
43 * first_committed -> 1
44 * last_committed -> 4
45 * 1 -> value_1
46 * 2 -> value_2
47 * 3 -> value_3
48 * 4 -> value_4
49 *
50 * Since we are relying on a k/v store supporting atomic transactions, we can
51 * guarantee that if 'last_committed' has a value of '4', then we have up to
52 * version 4 on the store, and no more than that; the same applies to
53 * 'first_committed', which holding '1' will strictly meaning that our lowest
54 * version is 1.
55 *
56 * Each version's value (value_1, value_2, ..., value_n) is a blob of data,
57 * incomprehensible to the Paxos. These values are proposed to the Paxos on
58 * propose_new_value() and each one is a transaction encoded in a bufferlist.
59 *
60 * The Paxos will write the value to disk, associating it with its version,
61 * but will take a step further: the value shall be decoded, and the operations
62 * on that transaction shall be applied during the same transaction that will
63 * write the value's encoded bufferlist to disk. This behavior ensures that
64 * whatever is being proposed will only be available on the store when it is
65 * applied by Paxos, which will then be aware of such new values, guaranteeing
66 * the store state is always consistent without requiring shady workarounds.
67 *
68 * So, let's say that FooMonitor proposes the following transaction, neatly
69 * encoded on a bufferlist of course:
70 *
71 * Tx_Foo
72 * put(foo, last_committed, 3)
73 * put(foo, 3, foo_value_3)
74 * erase(foo, 2)
75 * erase(foo, 1)
76 * put(foo, first_committed, 3)
77 *
78 * And knowing that the Paxos is proposed Tx_Foo as a bufferlist, once it is
79 * ready to commit, and assuming we are now committing version 5 of the Paxos,
80 * we will do something along the lines of:
81 *
82 * Tx proposed_tx;
83 * proposed_tx.decode(Tx_foo_bufferlist);
84 *
85 * Tx our_tx;
86 * our_tx.put(paxos, last_committed, 5);
87 * our_tx.put(paxos, 5, Tx_foo_bufferlist);
88 * our_tx.append(proposed_tx);
89 *
90 * store_apply(our_tx);
91 *
92 * And the store should look like this after we apply 'our_tx':
93 *
94 * paxos:
95 * first_committed -> 1
96 * last_committed -> 5
97 * 1 -> value_1
98 * 2 -> value_2
99 * 3 -> value_3
100 * 4 -> value_4
101 * 5 -> Tx_foo_bufferlist
102 * foo:
103 * first_committed -> 3
104 * last_committed -> 3
105 * 3 -> foo_value_3
106 *
107 */
108
109 #ifndef CEPH_MON_PAXOS_H
110 #define CEPH_MON_PAXOS_H
111
112 #include "include/types.h"
113 #include "mon_types.h"
114 #include "include/buffer.h"
115 #include "msg/msg_types.h"
116 #include "include/Context.h"
117 #include "common/perf_counters.h"
118 #include <errno.h>
119
120 #include "MonitorDBStore.h"
121 #include "mon/MonOpRequest.h"
122
123 class Monitor;
124 class MMonPaxos;
125
126 enum {
127 l_paxos_first = 45800,
128 l_paxos_start_leader,
129 l_paxos_start_peon,
130 l_paxos_restart,
131 l_paxos_refresh,
132 l_paxos_refresh_latency,
133 l_paxos_begin,
134 l_paxos_begin_keys,
135 l_paxos_begin_bytes,
136 l_paxos_begin_latency,
137 l_paxos_commit,
138 l_paxos_commit_keys,
139 l_paxos_commit_bytes,
140 l_paxos_commit_latency,
141 l_paxos_collect,
142 l_paxos_collect_keys,
143 l_paxos_collect_bytes,
144 l_paxos_collect_latency,
145 l_paxos_collect_uncommitted,
146 l_paxos_collect_timeout,
147 l_paxos_accept_timeout,
148 l_paxos_lease_ack_timeout,
149 l_paxos_lease_timeout,
150 l_paxos_store_state,
151 l_paxos_store_state_keys,
152 l_paxos_store_state_bytes,
153 l_paxos_store_state_latency,
154 l_paxos_share_state,
155 l_paxos_share_state_keys,
156 l_paxos_share_state_bytes,
157 l_paxos_new_pn,
158 l_paxos_new_pn_latency,
159 l_paxos_last,
160 };
161
162
163 // i am one state machine.
164 /**
165 * This libary is based on the Paxos algorithm, but varies in a few key ways:
166 * 1- Only a single new value is generated at a time, simplifying the recovery logic.
167 * 2- Nodes track "committed" values, and share them generously (and trustingly)
168 * 3- A 'leasing' mechanism is built-in, allowing nodes to determine when it is
169 * safe to "read" their copy of the last committed value.
170 *
171 * This provides a simple replication substrate that services can be built on top of.
172 * See PaxosService.h
173 */
174 class Paxos {
175 /**
176 * @defgroup Paxos_h_class Paxos
177 * @{
178 */
179 /**
180 * The Monitor to which this Paxos class is associated with.
181 */
182 Monitor *mon;
183
184 /// perf counter for internal instrumentations
185 PerfCounters *logger;
186
187 void init_logger();
188
189 // my state machine info
190 const string paxos_name;
191
192 friend class Monitor;
193 friend class PaxosService;
194
195 list<std::string> extra_state_dirs;
196
197 // LEADER+PEON
198
199 // -- generic state --
200 public:
201 /**
202 * @defgroup Paxos_h_states States on which the leader/peon may be.
203 * @{
204 */
205 enum {
206 /**
207 * Leader/Peon is in Paxos' Recovery state
208 */
209 STATE_RECOVERING,
210 /**
211 * Leader/Peon is idle, and the Peon may or may not have a valid lease.
212 */
213 STATE_ACTIVE,
214 /**
215 * Leader/Peon is updating to a new value.
216 */
217 STATE_UPDATING,
218 /*
219 * Leader proposing an old value
220 */
221 STATE_UPDATING_PREVIOUS,
222 /*
223 * Leader/Peon is writing a new commit. readable, but not
224 * writeable.
225 */
226 STATE_WRITING,
227 /*
228 * Leader/Peon is writing a new commit from a previous round.
229 */
230 STATE_WRITING_PREVIOUS,
231 // leader: refresh following a commit
232 STATE_REFRESH,
233 };
234
235 /**
236 * Obtain state name from constant value.
237 *
238 * @note This function will raise a fatal error if @p s is not
239 * a valid state value.
240 *
241 * @param s State value.
242 * @return The state's name.
243 */
244 static const string get_statename(int s) {
245 switch (s) {
246 case STATE_RECOVERING:
247 return "recovering";
248 case STATE_ACTIVE:
249 return "active";
250 case STATE_UPDATING:
251 return "updating";
252 case STATE_UPDATING_PREVIOUS:
253 return "updating-previous";
254 case STATE_WRITING:
255 return "writing";
256 case STATE_WRITING_PREVIOUS:
257 return "writing-previous";
258 case STATE_REFRESH:
259 return "refresh";
260 default:
261 return "UNKNOWN";
262 }
263 }
264
265 private:
266 /**
267 * The state we are in.
268 */
269 int state;
270 /**
271 * @}
272 */
273
274 public:
275 /**
276 * Check if we are recovering.
277 *
278 * @return 'true' if we are on the Recovering state; 'false' otherwise.
279 */
280 bool is_recovering() const { return (state == STATE_RECOVERING); }
281 /**
282 * Check if we are active.
283 *
284 * @return 'true' if we are on the Active state; 'false' otherwise.
285 */
286 bool is_active() const { return state == STATE_ACTIVE; }
287 /**
288 * Check if we are updating.
289 *
290 * @return 'true' if we are on the Updating state; 'false' otherwise.
291 */
292 bool is_updating() const { return state == STATE_UPDATING; }
293
294 /**
295 * Check if we are updating/proposing a previous value from a
296 * previous quorum
297 */
298 bool is_updating_previous() const { return state == STATE_UPDATING_PREVIOUS; }
299
300 /// @return 'true' if we are writing an update to disk
301 bool is_writing() const { return state == STATE_WRITING; }
302
303 /// @return 'true' if we are writing an update-previous to disk
304 bool is_writing_previous() const { return state == STATE_WRITING_PREVIOUS; }
305
306 /// @return 'true' if we are refreshing an update just committed
307 bool is_refresh() const { return state == STATE_REFRESH; }
308
309 private:
310 /**
311 * @defgroup Paxos_h_recovery_vars Common recovery-related member variables
312 * @note These variables are common to both the Leader and the Peons.
313 * @{
314 */
315 /**
316 *
317 */
318 version_t first_committed;
319 /**
320 * Last Proposal Number
321 *
322 * @todo Expand description
323 */
324 version_t last_pn;
325 /**
326 * Last committed value's version.
327 *
328 * On both the Leader and the Peons, this is the last value's version that
329 * was accepted by a given quorum and thus committed, that this instance
330 * knows about.
331 *
332 * @note It may not be the last committed value's version throughout the
333 * system. If we are a Peon, we may have not been part of the quorum
334 * that accepted the value, and for this very same reason we may still
335 * be a (couple of) version(s) behind, until we learn about the most
336 * recent version. This should only happen if we are not active (i.e.,
337 * part of the quorum), which should not happen if we are up, running
338 * and able to communicate with others -- thus able to be part of the
339 * monmap and trigger new elections.
340 */
341 version_t last_committed;
342 /**
343 * Last committed value's time.
344 *
345 * When the commit finished.
346 */
347 utime_t last_commit_time;
348 /**
349 * The last Proposal Number we have accepted.
350 *
351 * On the Leader, it will be the Proposal Number picked by the Leader
352 * itself. On the Peon, however, it will be the proposal sent by the Leader
353 * and it will only be updated iif its value is higher than the one
354 * already known by the Peon.
355 */
356 version_t accepted_pn;
357 /**
358 * The last_committed epoch of the leader at the time we accepted the last pn.
359 *
360 * This has NO SEMANTIC MEANING, and is there only for the debug output.
361 */
362 version_t accepted_pn_from;
363 /**
364 * Map holding the first committed version by each quorum member.
365 *
366 * The versions kept in this map are updated during the collect phase.
367 * When the Leader starts the collect phase, each Peon will reply with its
368 * first committed version, which will then be kept in this map.
369 */
370 map<int,version_t> peer_first_committed;
371 /**
372 * Map holding the last committed version by each quorum member.
373 *
374 * The versions kept in this map are updated during the collect phase.
375 * When the Leader starts the collect phase, each Peon will reply with its
376 * last committed version, which will then be kept in this map.
377 */
378 map<int,version_t> peer_last_committed;
379 /**
380 * @}
381 */
382
383 // active (phase 2)
384 /**
385 * @defgroup Paxos_h_active_vars Common active-related member variables
386 * @{
387 */
388 /**
389 * When does our read lease expires.
390 *
391 * Instead of performing a full commit each time a read is requested, we
392 * keep leases. Each lease will have an expiration date, which may or may
393 * not be extended.
394 */
395 utime_t lease_expire;
396 /**
397 * List of callbacks waiting for our state to change into STATE_ACTIVE.
398 */
399 list<Context*> waiting_for_active;
400 /**
401 * List of callbacks waiting for the chance to read a version from us.
402 *
403 * Each entry on the list may result from an attempt to read a version that
404 * wasn't available at the time, or an attempt made during a period during
405 * which we could not satisfy the read request. The first case happens if
406 * the requested version is greater than our last committed version. The
407 * second scenario may happen if we are recovering, or if we don't have a
408 * valid lease.
409 *
410 * The list will be woken up once we change to STATE_ACTIVE with an extended
411 * lease -- which can be achieved if we have everyone on the quorum on board
412 * with the latest proposal, or if we don't really care about the remaining
413 * uncommitted values --, or if we're on a quorum of one.
414 */
415 list<Context*> waiting_for_readable;
416 /**
417 * @}
418 */
419
420 // -- leader --
421 // recovery (paxos phase 1)
422 /**
423 * @defgroup Paxos_h_leader_recovery Leader-specific Recovery-related vars
424 * @{
425 */
426 /**
427 * Number of replies to the collect phase we've received so far.
428 *
429 * This variable is reset to 1 each time we start a collect phase; it is
430 * incremented each time we receive a reply to the collect message, and
431 * is used to determine whether or not we have received replies from the
432 * whole quorum.
433 */
434 unsigned num_last;
435 /**
436 * Uncommitted value's version.
437 *
438 * If we have, or end up knowing about, an uncommitted value, then its
439 * version will be kept in this variable.
440 *
441 * @note If this version equals @p last_committed+1 when we reach the final
442 * steps of recovery, then the algorithm will assume this is a value
443 * the Leader does not know about, and trustingly the Leader will
444 * propose this version's value.
445 */
446 version_t uncommitted_v;
447 /**
448 * Uncommitted value's Proposal Number.
449 *
450 * We use this variable to assess if the Leader should take into consideration
451 * an uncommitted value sent by a Peon. Given that the Peon will send back to
452 * the Leader the last Proposal Number it accepted, the Leader will be able
453 * to infer if this value is more recent than the one the Leader has, thus
454 * more relevant.
455 */
456 version_t uncommitted_pn;
457 /**
458 * Uncommitted Value.
459 *
460 * If the system fails in-between the accept replies from the Peons and the
461 * instruction to commit from the Leader, then we may end up with accepted
462 * but yet-uncommitted values. During the Leader's recovery, it will attempt
463 * to bring the whole system to the latest state, and that means committing
464 * past accepted but uncommitted values.
465 *
466 * This variable will hold an uncommitted value, which may originate either
467 * on the Leader, or learnt by the Leader from a Peon during the collect
468 * phase.
469 */
470 bufferlist uncommitted_value;
471 /**
472 * Used to specify when an on-going collect phase times out.
473 */
474 Context *collect_timeout_event;
475 /**
476 * @}
477 */
478
479 // active
480 /**
481 * @defgroup Paxos_h_leader_active Leader-specific Active-related vars
482 * @{
483 */
484 /**
485 * Set of participants (Leader & Peons) that have acked a lease extension.
486 *
487 * Each Peon that acknowledges a lease extension will have its place in this
488 * set, which will be used to account for all the acks from all the quorum
489 * members, guaranteeing that we trigger new elections if some don't ack in
490 * the expected timeframe.
491 */
492 set<int> acked_lease;
493 /**
494 * Callback responsible for extending the lease periodically.
495 */
496 Context *lease_renew_event;
497 /**
498 * Callback to trigger new elections once the time for acks is out.
499 */
500 Context *lease_ack_timeout_event;
501 /**
502 * @}
503 */
504 /**
505 * @defgroup Paxos_h_peon_active Peon-specific Active-related vars
506 * @{
507 */
508 /**
509 * Callback to trigger new elections when the Peon's lease times out.
510 *
511 * If the Peon's lease is extended, this callback will be reset (i.e.,
512 * we cancel the event and reschedule a new one with starting from the
513 * beginning).
514 */
515 Context *lease_timeout_event;
516 /**
517 * @}
518 */
519
520 // updating (paxos phase 2)
521 /**
522 * @defgroup Paxos_h_leader_updating Leader-specific Updating-related vars
523 * @{
524 */
525 /**
526 * New Value being proposed to the Peons.
527 *
528 * This bufferlist holds the value the Leader is proposing to the Peons, and
529 * that will be committed if the Peons do accept the proposal.
530 */
531 bufferlist new_value;
532 /**
533 * Set of participants (Leader & Peons) that accepted the new proposed value.
534 *
535 * This set is used to keep track of those who have accepted the proposed
536 * value, so the leader may know when to issue a commit (when a majority of
537 * participants has accepted the proposal), and when to extend the lease
538 * (when all the quorum members have accepted the proposal).
539 */
540 set<int> accepted;
541 /**
542 * Callback to trigger a new election if the proposal is not accepted by the
543 * full quorum within a given timeframe.
544 *
545 * If the full quorum does not accept the proposal, then it means that the
546 * Leader may no longer be recognized as the leader, or that the quorum has
547 * changed, and the value may have not reached all the participants. Thus,
548 * the leader must call new elections, and go through a recovery phase in
549 * order to propagate the new value throughout the system.
550 *
551 * This does not mean that we won't commit. We will commit as soon as we
552 * have a majority of acceptances. But if we do not have full acceptance
553 * from the quorum, then we cannot extend the lease, as some participants
554 * may not have the latest committed value.
555 */
556 Context *accept_timeout_event;
557
558 /**
559 * List of callbacks waiting for it to be possible to write again.
560 *
561 * @remarks It is not possible to write if we are not the Leader, or we are
562 * not on the active state, or if the lease has expired.
563 */
564 list<Context*> waiting_for_writeable;
565 /**
566 * List of callbacks waiting for a commit to finish.
567 *
568 * @remarks This may be used to a) wait for an on-going commit to finish
569 * before we proceed with, say, a new proposal; or b) wait for the
570 * next commit to be finished so we are sure that our value was
571 * fully committed.
572 */
573 list<Context*> waiting_for_commit;
574
575 /**
576 * Pending proposal transaction
577 *
578 * This is the transaction that is under construction and pending
579 * proposal. We will add operations to it until we decide it is
580 * time to start a paxos round.
581 */
582 MonitorDBStore::TransactionRef pending_proposal;
583
584 /**
585 * Finishers for pending transaction
586 *
587 * These are waiting for updates in the pending proposal/transaction
588 * to be committed.
589 */
590 list<Context*> pending_finishers;
591
592 /**
593 * Finishers for committing transaction
594 *
595 * When the pending_proposal is submitted, pending_finishers move to
596 * this list. When it commits, these finishers are notified.
597 */
598 list<Context*> committing_finishers;
599
600 /**
601 * @defgroup Paxos_h_sync_warns Synchronization warnings
602 * @todo Describe these variables
603 * @{
604 */
605 utime_t last_clock_drift_warn;
606 int clock_drift_warned;
607 /**
608 * @}
609 */
610
611 /**
612 * Should be true if we have proposed to trim, or are in the middle of
613 * trimming; false otherwise.
614 */
615 bool trimming;
616
617 /**
618 * @defgroup Paxos_h_callbacks Callback classes.
619 * @{
620 */
621 /**
622 * Callback class responsible for handling a Collect Timeout.
623 */
624 class C_CollectTimeout;
625 /**
626 * Callback class responsible for handling an Accept Timeout.
627 */
628 class C_AcceptTimeout;
629 /**
630 * Callback class responsible for handling a Lease Ack Timeout.
631 */
632 class C_LeaseAckTimeout;
633
634 /**
635 * Callback class responsible for handling a Lease Timeout.
636 */
637 class C_LeaseTimeout;
638
639 /**
640 * Callback class responsible for handling a Lease Renew Timeout.
641 */
642 class C_LeaseRenew;
643
644 class C_Trimmed;
645 /**
646 *
647 */
648 public:
649 class C_Proposal : public Context {
650 Context *proposer_context;
651 public:
652 bufferlist bl;
653 // for debug purposes. Will go away. Soon.
654 bool proposed;
655 utime_t proposal_time;
656
657 C_Proposal(Context *c, bufferlist& proposal_bl) :
658 proposer_context(c),
659 bl(proposal_bl),
660 proposed(false),
661 proposal_time(ceph_clock_now())
662 { }
663
664 void finish(int r) override {
665 if (proposer_context) {
666 proposer_context->complete(r);
667 proposer_context = NULL;
668 }
669 }
670 };
671 /**
672 * @}
673 */
674 private:
675 /**
676 * @defgroup Paxos_h_election_triggered Steps triggered by an election.
677 *
678 * @note All these functions play a significant role in the Recovery Phase,
679 * which is triggered right after an election once someone becomes
680 * the Leader.
681 * @{
682 */
683 /**
684 * Create a new Proposal Number and propose it to the Peons.
685 *
686 * This function starts the Recovery Phase, which can be directly mapped
687 * onto the original Paxos' Prepare phase. Basically, we'll generate a
688 * Proposal Number, taking @p oldpn into consideration, and we will send
689 * it to a quorum, along with our first and last committed versions. By
690 * sending these information in a message to the quorum, we expect to
691 * obtain acceptances from a majority, allowing us to commit, or be
692 * informed of a higher Proposal Number known by one or more of the Peons
693 * in the quorum.
694 *
695 * @pre We are the Leader.
696 * @post Recovery Phase initiated by sending messages to the quorum.
697 *
698 * @param oldpn A proposal number taken as the highest known so far, that
699 * should be taken into consideration when generating a new
700 * Proposal Number for the Recovery Phase.
701 */
702 void collect(version_t oldpn);
703 /**
704 * Handle the reception of a collect message from the Leader and reply
705 * accordingly.
706 *
707 * Once a Peon receives a collect message from the Leader it will reply
708 * with its first and last committed versions, as well as information so
709 * the Leader may know if its Proposal Number was, or was not, accepted by
710 * the Peon. The Peon will accept the Leader's Proposal Number iif it is
711 * higher than the Peon's currently accepted Proposal Number. The Peon may
712 * also inform the Leader of accepted but uncommitted values.
713 *
714 * @invariant The message is an operation of type OP_COLLECT.
715 * @pre We are a Peon.
716 * @post Replied to the Leader, accepting or not accepting its PN.
717 *
718 * @param collect The collect message sent by the Leader to the Peon.
719 */
720 void handle_collect(MonOpRequestRef op);
721 /**
722 * Handle a response from a Peon to the Leader's collect phase.
723 *
724 * The received message will state the Peon's last committed version, as
725 * well as its last proposal number. This will lead to one of the following
726 * scenarios: if the replied Proposal Number is equal to the one we proposed,
727 * then the Peon has accepted our proposal, and if all the Peons do accept
728 * our Proposal Number, then we are allowed to proceed with the commit;
729 * however, if a Peon replies with a higher Proposal Number, we assume he
730 * knows something we don't and the Leader will have to abort the current
731 * proposal in order to retry with the Proposal Number specified by the Peon.
732 * It may also occur that the Peon replied with a lower Proposal Number, in
733 * which case we assume it is a reply to an older value and we'll simply
734 * drop it.
735 * This function will also check if the Peon replied with an accepted but
736 * yet uncommitted value. In this case, if its version is higher than our
737 * last committed value by one, we assume that the Peon knows a value from a
738 * previous proposal that has never been committed, and we should try to
739 * commit that value by proposing it next. On the other hand, if that is
740 * not the case, we'll assume it is an old, uncommitted value, we do not
741 * care about and we'll consider the system active by extending the leases.
742 *
743 * @invariant The message is an operation of type OP_LAST.
744 * @pre We are the Leader.
745 * @post We initiate a commit, or we retry with a higher Proposal Number,
746 * or we drop the message.
747 * @post We move from STATE_RECOVERING to STATE_ACTIVE.
748 *
749 * @param last The message sent by the Peon to the Leader.
750 */
751 void handle_last(MonOpRequestRef op);
752 /**
753 * The Recovery Phase timed out, meaning that a significant part of the
754 * quorum does not believe we are the Leader, and we thus should trigger new
755 * elections.
756 *
757 * @pre We believe to be the Leader.
758 * @post Trigger new elections.
759 */
760 void collect_timeout();
761 /**
762 * @}
763 */
764
765 /**
766 * @defgroup Paxos_h_updating_funcs Functions used during the Updating State
767 *
768 * These functions may easily be mapped to the original Paxos Algorithm's
769 * phases.
770 *
771 * Taking into account the algorithm can be divided in 4 phases (Prepare,
772 * Promise, Accept Request and Accepted), we can easily map Paxos::begin to
773 * both the Prepare and Accept Request phases; the Paxos::handle_begin to
774 * the Promise phase; and the Paxos::handle_accept to the Accepted phase.
775 * @{
776 */
777 /**
778 * Start a new proposal with the intent of committing @p value.
779 *
780 * If we are alone on the system (i.e., a quorum of one), then we will
781 * simply commit the value, but if we are not alone, then we need to propose
782 * the value to the quorum.
783 *
784 * @pre We are the Leader
785 * @pre We are on STATE_ACTIVE
786 * @post We commit, iif we are alone, or we send a message to each quorum
787 * member
788 * @post We are on STATE_ACTIVE, iif we are alone, or on
789 * STATE_UPDATING otherwise
790 *
791 * @param value The value being proposed to the quorum
792 */
793 void begin(bufferlist& value);
794 /**
795 * Accept or decline (by ignoring) a proposal from the Leader.
796 *
797 * We will decline the proposal (by ignoring it) if we have promised to
798 * accept a higher numbered proposal. If that is not the case, we will
799 * accept it and accordingly reply to the Leader.
800 *
801 * @pre We are a Peon
802 * @pre We are on STATE_ACTIVE
803 * @post We are on STATE_UPDATING iif we accept the Leader's proposal
804 * @post We send a reply message to the Leader iif we accept its proposal
805 *
806 * @invariant The received message is an operation of type OP_BEGIN
807 *
808 * @param begin The message sent by the Leader to the Peon during the
809 * Paxos::begin function
810 *
811 */
812 void handle_begin(MonOpRequestRef op);
813 /**
814 * Handle an Accept message sent by a Peon.
815 *
816 * In order to commit, the Leader has to receive accepts from a majority of
817 * the quorum. If that does happen, then the Leader may proceed with the
818 * commit. However, the Leader needs the accepts from all the quorum members
819 * in order to extend the lease and move on to STATE_ACTIVE.
820 *
821 * This function handles these two situations, accounting for the amount of
822 * received accepts.
823 *
824 * @pre We are the Leader
825 * @pre We are on STATE_UPDATING
826 * @post We are on STATE_ACTIVE iif we received accepts from the full quorum
827 * @post We extended the lease iif we moved on to STATE_ACTIVE
828 * @post We are on STATE_UPDATING iif we didn't received accepts from the
829 * full quorum
830 * @post We have committed iif we received accepts from a majority
831 *
832 * @invariant The received message is an operation of type OP_ACCEPT
833 *
834 * @param accept The message sent by the Peons to the Leader during the
835 * Paxos::handle_begin function
836 */
837 void handle_accept(MonOpRequestRef op);
838 /**
839 * Trigger a fresh election.
840 *
841 * During Paxos::begin we set a Callback of type Paxos::C_AcceptTimeout in
842 * order to limit the amount of time we spend waiting for Accept replies.
843 * This callback will call Paxos::accept_timeout when it is fired.
844 *
845 * This is essential to the algorithm because there may be the chance that
846 * we are no longer the Leader (i.e., others don't believe in us) and we
847 * are getting ignored, or we dropped out of the quorum and haven't realised
848 * it. So, our only option is to trigger fresh elections.
849 *
850 * @pre We are the Leader
851 * @pre We are on STATE_UPDATING
852 * @post Triggered fresh elections
853 */
854 void accept_timeout();
855 /**
856 * @}
857 */
858
859
860 utime_t commit_start_stamp;
861 friend struct C_Committed;
862
863 /**
864 * Commit a value throughout the system.
865 *
866 * The Leader will cancel the current lease (as it was for the old value),
867 * and will store the committed value locally. It will then instruct every
868 * quorum member to do so as well.
869 *
870 * @pre We are the Leader
871 * @pre We are on STATE_UPDATING
872 * @pre A majority of quorum members accepted our proposal
873 * @post Value locally stored
874 * @post Quorum members instructed to commit the new value.
875 */
876 void commit_start();
877 void commit_finish(); ///< finish a commit after txn becomes durable
878 /**
879 * Commit the new value to stable storage as being the latest available
880 * version.
881 *
882 * @pre We are a Peon
883 * @post The new value is locally stored
884 * @post Fire up the callbacks waiting on waiting_for_commit
885 *
886 * @invariant The received message is an operation of type OP_COMMIT
887 *
888 * @param commit The message sent by the Leader to the Peon during
889 * Paxos::commit
890 */
891 void handle_commit(MonOpRequestRef op);
892 /**
893 * Extend the system's lease.
894 *
895 * This means that the Leader considers that it should now safe to read from
896 * any node on the system, since every quorum member is now in possession of
897 * the latest version. Therefore, the Leader will send a message stating just
898 * this to each quorum member, and will impose a limited timeframe during
899 * which acks will be accepted. If there aren't as many acks as expected
900 * (i.e, if at least one quorum member does not ack the lease) during this
901 * timeframe, then we will force fresh elections.
902 *
903 * @pre We are the Leader
904 * @pre We are on STATE_ACTIVE
905 * @post A message extending the lease is sent to each quorum member
906 * @post A timeout callback is set to limit the amount of time we will wait
907 * for lease acks.
908 * @post A timer is set in order to renew the lease after a certain amount
909 * of time.
910 */
911 void extend_lease();
912 /**
913 * Update the lease on the Peon's side of things.
914 *
915 * Once a Peon receives a Lease message, it will update its lease_expire
916 * variable, reply to the Leader acknowledging the lease update and set a
917 * timeout callback to be fired upon the lease's expiration. Finally, the
918 * Peon will fire up all the callbacks waiting for it to become active,
919 * which it just did, and all those waiting for it to become readable,
920 * which should be true if the Peon's lease didn't expire in the mean time.
921 *
922 * @pre We are a Peon
923 * @post We update the lease accordingly
924 * @post A lease timeout callback is set
925 * @post Move to STATE_ACTIVE
926 * @post Fire up all the callbacks waiting for STATE_ACTIVE
927 * @post Fire up all the callbacks waiting for readable iif we are readable
928 * @post Ack the lease to the Leader
929 *
930 * @invariant The received message is an operation of type OP_LEASE
931 *
932 * @param lease The message sent by the Leader to the Peon during the
933 * Paxos::extend_lease function
934 */
935 void handle_lease(MonOpRequestRef op);
936 /**
937 * Account for all the Lease Acks the Leader receives from the Peons.
938 *
939 * Once the Leader receives all the Lease Acks from the Peons, it will be
940 * able to cancel the Lease Ack timeout callback, thus avoiding calling
941 * fresh elections.
942 *
943 * @pre We are the Leader
944 * @post Cancel the Lease Ack timeout callback iif we receive acks from all
945 * the quorum members
946 *
947 * @invariant The received message is an operation of type OP_LEASE_ACK
948 *
949 * @param ack The message sent by a Peon to the Leader during the
950 * Paxos::handle_lease function
951 */
952 void handle_lease_ack(MonOpRequestRef op);
953 /**
954 * Call fresh elections because at least one Peon didn't acked our lease.
955 *
956 * @pre We are the Leader
957 * @pre We are on STATE_ACTIVE
958 * @post Trigger fresh elections
959 */
960 void lease_ack_timeout();
961 /**
962 * Extend lease since we haven't had new committed values meanwhile.
963 *
964 * @pre We are the Leader
965 * @pre We are on STATE_ACTIVE
966 * @post Go through with Paxos::extend_lease
967 */
968 void lease_renew_timeout();
969 /**
970 * Call fresh elections because the Peon's lease expired without being
971 * renewed or receiving a fresh lease.
972 *
973 * This means that the Peon is no longer assumed as being in the quorum
974 * (or there is no Leader to speak of), so just trigger fresh elections
975 * to circumvent this issue.
976 *
977 * @pre We are a Peon
978 * @post Trigger fresh elections
979 */
980 void lease_timeout(); // on peon, if lease isn't extended
981
982 /// restart the lease timeout timer
983 void reset_lease_timeout();
984
985 /**
986 * Cancel all of Paxos' timeout/renew events.
987 */
988 void cancel_events();
989 /**
990 * Shutdown this Paxos machine
991 */
992 void shutdown();
993
994 /**
995 * Generate a new Proposal Number based on @p gt
996 *
997 * @todo Check what @p gt actually means and what its usage entails
998 * @param gt A hint for the geration of the Proposal Number
999 * @return A globally unique, monotonically increasing Proposal Number
1000 */
1001 version_t get_new_proposal_number(version_t gt=0);
1002
1003 /**
1004 * @todo document sync function
1005 */
1006 void warn_on_future_time(utime_t t, entity_name_t from);
1007
1008 /**
1009 * Begin proposing the pending_proposal.
1010 */
1011 void propose_pending();
1012
1013 /**
1014 * refresh state from store
1015 *
1016 * Called when we have new state for the mon to consume. If we return false,
1017 * abort (we triggered a bootstrap).
1018 *
1019 * @returns true on success, false if we are now bootstrapping
1020 */
1021 bool do_refresh();
1022
1023 void commit_proposal();
1024 void finish_round();
1025
1026 public:
1027 /**
1028 * @param m A monitor
1029 * @param name A name for the paxos service. It serves as the naming space
1030 * of the underlying persistent storage for this service.
1031 */
1032 Paxos(Monitor *m, const string &name)
1033 : mon(m),
1034 logger(NULL),
1035 paxos_name(name),
1036 state(STATE_RECOVERING),
1037 first_committed(0),
1038 last_pn(0),
1039 last_committed(0),
1040 accepted_pn(0),
1041 accepted_pn_from(0),
1042 num_last(0),
1043 uncommitted_v(0), uncommitted_pn(0),
1044 collect_timeout_event(0),
1045 lease_renew_event(0),
1046 lease_ack_timeout_event(0),
1047 lease_timeout_event(0),
1048 accept_timeout_event(0),
1049 clock_drift_warned(0),
1050 trimming(false) { }
1051
1052 const string get_name() const {
1053 return paxos_name;
1054 }
1055
1056 void dispatch(MonOpRequestRef op);
1057
1058 void read_and_prepare_transactions(MonitorDBStore::TransactionRef tx,
1059 version_t from, version_t last);
1060
1061 void init();
1062
1063 /**
1064 * dump state info to a formatter
1065 */
1066 void dump_info(Formatter *f);
1067
1068 /**
1069 * This function runs basic consistency checks. Importantly, if
1070 * it is inconsistent and shouldn't be, it asserts out.
1071 *
1072 * @return True if consistent, false if not.
1073 */
1074 bool is_consistent();
1075
1076 void restart();
1077 /**
1078 * Initiate the Leader after it wins an election.
1079 *
1080 * Once an election is won, the Leader will be initiated and there are two
1081 * possible outcomes of this method: the Leader directly jumps to the active
1082 * state (STATE_ACTIVE) if it believes to be the only one in the quorum, or
1083 * will start recovering (STATE_RECOVERING) by initiating the collect phase.
1084 *
1085 * @pre Our monitor is the Leader.
1086 * @post We are either on STATE_ACTIVE if we're the only one in the quorum,
1087 * or on STATE_RECOVERING otherwise.
1088 */
1089 void leader_init();
1090 /**
1091 * Initiate a Peon after it loses an election.
1092 *
1093 * If we are a Peon, then there must be a Leader and we are not alone in the
1094 * quorum, thus automatically assume we are on STATE_RECOVERING, which means
1095 * we will soon be enrolled into the Leader's collect phase.
1096 *
1097 * @pre There is a Leader, and it?s about to start the collect phase.
1098 * @post We are on STATE_RECOVERING and will soon receive collect phase's
1099 * messages.
1100 */
1101 void peon_init();
1102
1103 /**
1104 * Include an incremental state of values, ranging from peer_first_committed
1105 * to the last committed value, on the message m
1106 *
1107 * @param m A message
1108 * @param peer_first_committed Lowest version to take into account
1109 * @param peer_last_committed Highest version to take into account
1110 */
1111 void share_state(MMonPaxos *m, version_t peer_first_committed,
1112 version_t peer_last_committed);
1113 /**
1114 * Store on disk a state that was shared with us
1115 *
1116 * Basically, we received a set of version. Or just one. It doesn't matter.
1117 * What matters is that we have to stash it in the store. So, we will simply
1118 * write every single bufferlist into their own versions on our side (i.e.,
1119 * onto paxos-related keys), and then we will decode those same bufferlists
1120 * we just wrote and apply the transactions they hold. We will also update
1121 * our first and last committed values to point to the new values, if need
1122 * be. All this is done tightly wrapped in a transaction to ensure we
1123 * enjoy the atomicity guarantees given by our awesome k/v store.
1124 *
1125 * @param m A message
1126 * @returns true if we stored something new; false otherwise
1127 */
1128 bool store_state(MMonPaxos *m);
1129 void _sanity_check_store();
1130
1131 /**
1132 * Helper function to decode a bufferlist into a transaction and append it
1133 * to another transaction.
1134 *
1135 * This function is used during the Leader's commit and during the
1136 * Paxos::store_state in order to apply the bufferlist's transaction onto
1137 * the store.
1138 *
1139 * @param t The transaction to which we will append the operations
1140 * @param bl A bufferlist containing an encoded transaction
1141 */
1142 static void decode_append_transaction(MonitorDBStore::TransactionRef t,
1143 bufferlist& bl) {
1144 auto vt(std::make_shared<MonitorDBStore::Transaction>());
1145 bufferlist::iterator it = bl.begin();
1146 vt->decode(it);
1147 t->append(vt);
1148 }
1149
1150 /**
1151 * @todo This appears to be used only by the OSDMonitor, and I would say
1152 * its objective is to allow a third-party to have a "private"
1153 * state dir. -JL
1154 */
1155 void add_extra_state_dir(string s) {
1156 extra_state_dirs.push_back(s);
1157 }
1158
1159 // -- service interface --
1160 /**
1161 * Add c to the list of callbacks waiting for us to become active.
1162 *
1163 * @param c A callback
1164 */
1165 void wait_for_active(MonOpRequestRef op, Context *c) {
1166 if (op)
1167 op->mark_event("paxos:wait_for_active");
1168 waiting_for_active.push_back(c);
1169 }
1170 void wait_for_active(Context *c) {
1171 MonOpRequestRef o;
1172 wait_for_active(o, c);
1173 }
1174
1175 /**
1176 * Trim the Paxos state as much as we can.
1177 */
1178 void trim();
1179
1180 /**
1181 * Check if we should trim.
1182 *
1183 * If trimming is disabled, we must take that into consideration and only
1184 * return true if we are positively sure that we should trim soon.
1185 *
1186 * @returns true if we should trim; false otherwise.
1187 */
1188 bool should_trim() {
1189 int available_versions = get_version() - get_first_committed();
1190 int maximum_versions = g_conf->paxos_min + g_conf->paxos_trim_min;
1191
1192 if (trimming || (available_versions <= maximum_versions))
1193 return false;
1194
1195 return true;
1196 }
1197
1198 // read
1199 /**
1200 * @defgroup Paxos_h_read_funcs Read-related functions
1201 * @{
1202 */
1203 /**
1204 * Get latest committed version
1205 *
1206 * @return latest committed version
1207 */
1208 version_t get_version() { return last_committed; }
1209 /**
1210 * Get first committed version
1211 *
1212 * @return the first committed version
1213 */
1214 version_t get_first_committed() { return first_committed; }
1215 /**
1216 * Get the last commit time
1217 *
1218 * @returns Our last commit time
1219 */
1220 utime_t get_last_commit_time() const{
1221 return last_commit_time;
1222 }
1223 /**
1224 * Check if a given version is readable.
1225 *
1226 * A version may not be readable for a myriad of reasons:
1227 * @li the version @e v is higher that the last committed version
1228 * @li we are not the Leader nor a Peon (election may be on-going)
1229 * @li we do not have a committed value yet
1230 * @li we do not have a valid lease
1231 *
1232 * @param seen The version we want to check if it is readable.
1233 * @return 'true' if the version is readable; 'false' otherwise.
1234 */
1235 bool is_readable(version_t seen=0);
1236 /**
1237 * Read version @e v and store its value in @e bl
1238 *
1239 * @param[in] v The version we want to read
1240 * @param[out] bl The version's value
1241 * @return 'true' if we successfully read the value; 'false' otherwise
1242 */
1243 bool read(version_t v, bufferlist &bl);
1244 /**
1245 * Read the latest committed version
1246 *
1247 * @param[out] bl The version's value
1248 * @return the latest committed version if we successfully read the value;
1249 * or 0 (zero) otherwise.
1250 */
1251 version_t read_current(bufferlist &bl);
1252 /**
1253 * Add onreadable to the list of callbacks waiting for us to become readable.
1254 *
1255 * @param onreadable A callback
1256 */
1257 void wait_for_readable(MonOpRequestRef op, Context *onreadable) {
1258 assert(!is_readable());
1259 if (op)
1260 op->mark_event("paxos:wait_for_readable");
1261 waiting_for_readable.push_back(onreadable);
1262 }
1263 void wait_for_readable(Context *onreadable) {
1264 MonOpRequestRef o;
1265 wait_for_readable(o, onreadable);
1266 }
1267 /**
1268 * @}
1269 */
1270
1271 /**
1272 * Check if we have a valid lease.
1273 *
1274 * @returns true if the lease is still valid; false otherwise.
1275 */
1276 bool is_lease_valid();
1277 // write
1278 /**
1279 * @defgroup Paxos_h_write_funcs Write-related functions
1280 * @{
1281 */
1282 /**
1283 * Check if we are writeable.
1284 *
1285 * We are writeable if we are alone (i.e., a quorum of one), or if we match
1286 * all the following conditions:
1287 * @li We are the Leader
1288 * @li We are on STATE_ACTIVE
1289 * @li We have a valid lease
1290 *
1291 * @return 'true' if we are writeable; 'false' otherwise.
1292 */
1293 bool is_writeable();
1294 /**
1295 * Add c to the list of callbacks waiting for us to become writeable.
1296 *
1297 * @param c A callback
1298 */
1299 void wait_for_writeable(MonOpRequestRef op, Context *c) {
1300 assert(!is_writeable());
1301 if (op)
1302 op->mark_event("paxos:wait_for_writeable");
1303 waiting_for_writeable.push_back(c);
1304 }
1305 void wait_for_writeable(Context *c) {
1306 MonOpRequestRef o;
1307 wait_for_writeable(o, c);
1308 }
1309
1310 /**
1311 * Get a transaction to submit operations to propose against
1312 *
1313 * Apply operations to this transaction. It will eventually be proposed
1314 * to paxos.
1315 */
1316 MonitorDBStore::TransactionRef get_pending_transaction();
1317
1318 /**
1319 * Queue a completion for the pending proposal
1320 *
1321 * This completion will get triggered when the pending proposal
1322 * transaction commits.
1323 */
1324 void queue_pending_finisher(Context *onfinished);
1325
1326 /**
1327 * (try to) trigger a proposal
1328 *
1329 * Tell paxos that it should submit the pending proposal. Note that if it
1330 * is not active (e.g., because it is already in the midst of committing
1331 * something) that will be deferred (e.g., until the current round finishes).
1332 */
1333 bool trigger_propose();
1334
1335 /**
1336 * Add oncommit to the back of the list of callbacks waiting for us to
1337 * finish committing.
1338 *
1339 * @param oncommit A callback
1340 */
1341 void wait_for_commit(Context *oncommit) {
1342 waiting_for_commit.push_back(oncommit);
1343 }
1344 /**
1345 * Add oncommit to the front of the list of callbacks waiting for us to
1346 * finish committing.
1347 *
1348 * @param oncommit A callback
1349 */
1350 void wait_for_commit_front(Context *oncommit) {
1351 waiting_for_commit.push_front(oncommit);
1352 }
1353 /**
1354 * @}
1355 */
1356
1357 /**
1358 * @}
1359 */
1360 protected:
1361 MonitorDBStore *get_store();
1362 };
1363
1364 inline ostream& operator<<(ostream& out, Paxos::C_Proposal& p)
1365 {
1366 string proposed = (p.proposed ? "proposed" : "unproposed");
1367 out << " " << proposed
1368 << " queued " << (ceph_clock_now() - p.proposal_time)
1369 << " tx dump:\n";
1370 auto t(std::make_shared<MonitorDBStore::Transaction>());
1371 bufferlist::iterator p_it = p.bl.begin();
1372 t->decode(p_it);
1373 JSONFormatter f(true);
1374 t->dump(&f);
1375 f.flush(out);
1376 return out;
1377 }
1378
1379 #endif
1380