From: Serge Petrenko <sergepetrenko@tarantool.org>
To: v.shpilevoy@tarantool.org, sergos@tarantool.org,
gorcunov@tarantool.org, lvasiliev@tarantool.org
Cc: tarantool-patches@dev.tarantool.org
Subject: [Tarantool-patches] [PATCH 2/2] replication: support ROLLBACK and CONFIRM during recovery
Date: Fri, 19 Jun 2020 21:00:15 +0300 [thread overview]
Message-ID: <b5b28351312c9c934eb5996f640d471f92ddcd66.1592589312.git.sergepetrenko@tarantool.org> (raw)
In-Reply-To: <cover.1592589312.git.sergepetrenko@tarantool.org>
Follow-up #4847
Follow-up #4848
---
src/box/box.cc | 20 ++++++++++++++++++--
src/box/txn_limbo.c | 6 ++----
2 files changed, 20 insertions(+), 6 deletions(-)
diff --git a/src/box/box.cc b/src/box/box.cc
index f80d6f8e6..f4c22b340 100644
--- a/src/box/box.cc
+++ b/src/box/box.cc
@@ -374,9 +374,25 @@ static void
apply_wal_row(struct xstream *stream, struct xrow_header *row)
{
struct request request;
- // TODO: process confirmation during recovery.
- if (iproto_type_is_synchro_request(row->type))
+ if (iproto_type_is_synchro_request(row->type)) {
+ uint32_t replica_id;
+ int64_t lsn;
+ switch(row->type) {
+ case IPROTO_CONFIRM:
+ if (xrow_decode_confirm(row, &replica_id, &lsn) < 0)
+ diag_raise();
+ assert(txn_limbo.instance_id == replica_id);
+ txn_limbo_read_confirm(&txn_limbo, lsn);
+ break;
+ case IPROTO_ROLLBACK:
+ if (xrow_decode_rollback(row, &replica_id, &lsn) < 0)
+ diag_raise();
+ assert(txn_limbo.instance_id == replica_id);
+ txn_limbo_read_rollback(&txn_limbo, lsn);
+ break;
+ }
return;
+ }
xrow_decode_dml_xc(row, &request, dml_request_key_map(row->type));
if (request.type != IPROTO_NOP) {
struct space *space = space_cache_find_xc(request.space_id);
diff --git a/src/box/txn_limbo.c b/src/box/txn_limbo.c
index 1e1fa1aaf..ed19d4ec5 100644
--- a/src/box/txn_limbo.c
+++ b/src/box/txn_limbo.c
@@ -228,8 +228,7 @@ txn_limbo_write_confirm(struct txn_limbo *limbo,
void
txn_limbo_read_confirm(struct txn_limbo *limbo, int64_t lsn)
{
- assert(limbo->instance_id != REPLICA_ID_NIL &&
- limbo->instance_id != instance_id);
+ assert(limbo->instance_id != REPLICA_ID_NIL);
struct txn_limbo_entry *e, *tmp;
rlist_foreach_entry_safe(e, &limbo->queue, in_queue, tmp) {
if (e->lsn > lsn)
@@ -262,8 +261,7 @@ txn_limbo_write_rollback(struct txn_limbo *limbo,
void
txn_limbo_read_rollback(struct txn_limbo *limbo, int64_t lsn)
{
- assert(limbo->instance_id != REPLICA_ID_NIL &&
- limbo->instance_id != instance_id);
+ assert(limbo->instance_id != REPLICA_ID_NIL);
struct txn_limbo_entry *e, *tmp;
rlist_foreach_entry_safe_reverse(e, &limbo->queue, in_queue, tmp) {
if (e->lsn <= lsn)
--
2.24.3 (Apple Git-128)
next prev parent reply other threads:[~2020-06-19 18:00 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-06-19 18:00 [Tarantool-patches] [PATCH 0/2] replication: support CONFIRM and ROLLBACK in recovery Serge Petrenko
2020-06-19 18:00 ` [Tarantool-patches] [PATCH 1/2] box: rework local_recovery to use async txn_commit Serge Petrenko
2020-06-19 18:45 ` Serge Petrenko
2020-06-21 16:25 ` Vladislav Shpilevoy
2020-06-22 11:19 ` Serge Petrenko
2020-06-22 18:55 ` Serge Petrenko
2020-06-22 21:43 ` Vladislav Shpilevoy
2020-06-23 8:39 ` Serge Petrenko
2020-06-26 22:00 ` Vladislav Shpilevoy
2020-06-19 18:00 ` Serge Petrenko [this message]
2020-06-23 11:50 ` [Tarantool-patches] [PATCH 2/2] replication: support ROLLBACK and CONFIRM during recovery Serge Petrenko
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=b5b28351312c9c934eb5996f640d471f92ddcd66.1592589312.git.sergepetrenko@tarantool.org \
--to=sergepetrenko@tarantool.org \
--cc=gorcunov@tarantool.org \
--cc=lvasiliev@tarantool.org \
--cc=sergos@tarantool.org \
--cc=tarantool-patches@dev.tarantool.org \
--cc=v.shpilevoy@tarantool.org \
--subject='Re: [Tarantool-patches] [PATCH 2/2] replication: support ROLLBACK and CONFIRM during recovery' \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox