diff options
author | Sage Weil <sage@inktank.com> | 2013-08-22 15:54:48 -0700 |
---|---|---|
committer | Sage Weil <sage@inktank.com> | 2013-08-26 13:08:57 -0700 |
commit | 43e7ad989dcb4deb18b32ec31f76c8755354d2a6 (patch) | |
tree | f9c3763948b0c0307e8eadb9014401f6984bce5e | |
parent | 2de1515289f49f2e388448506f4788db56d0e25a (diff) | |
download | ceph-43e7ad989dcb4deb18b32ec31f76c8755354d2a6.tar.gz |
mon/Paxos: fix another uncommitted value corner case
It is possible that we begin the paxos recovery with an uncommitted
value for, say, commit 100. During last/collect we discover 100 has been
committed already. But also, another node provides an uncommitted value
for 101 with the same pn. Currently, we refuse to learn it, because the
pn is not strictly > than our current uncommitted pn... even though it is
the next last_committed+1 value that we need.
There are two possible fixes here:
- make this a >= as we can accept newer values from the same pn.
- discard our uncommitted value metadata when we commit the value.
Let's do both!
Fixes: #6090
Signed-off-by: Sage Weil <sage@inktank.com>
(cherry picked from commit fe5010380a3a18ca85f39403e8032de1dddbe905)
-rw-r--r-- | src/mon/Paxos.cc | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/mon/Paxos.cc b/src/mon/Paxos.cc index 6ba09dad838..4c940a41221 100644 --- a/src/mon/Paxos.cc +++ b/src/mon/Paxos.cc @@ -341,6 +341,15 @@ void Paxos::store_state(MMonPaxos *m) // apply. decode_append_transaction(t, it->second); } + + // discard obsolete uncommitted value? + if (uncommitted_v && uncommitted_v <= last_committed) { + dout(10) << " forgetting obsolete uncommitted value " << uncommitted_v + << " pn " << uncommitted_pn << dendl; + uncommitted_v = 0; + uncommitted_pn = 0; + uncommitted_value.clear(); + } } if (!t.empty()) { dout(30) << __func__ << " transaction dump:\n"; @@ -416,7 +425,7 @@ void Paxos::handle_last(MMonPaxos *last) // did this person send back an accepted but uncommitted value? if (last->uncommitted_pn) { - if (last->uncommitted_pn > uncommitted_pn && + if (last->uncommitted_pn >= uncommitted_pn && last->last_committed >= last_committed && last->last_committed + 1 >= uncommitted_v) { uncommitted_v = last->last_committed+1; |