From: Serge Petrenko <sergepetrenko@tarantool.org> To: v.shpilevoy@tarantool.org, gorcunov@tarantool.org, sergos@tarantool.org, lvasiliev@tarantool.org Cc: tarantool-patches@dev.tarantool.org Subject: [Tarantool-patches] [PATCH 4/4] replication: only send confirmed data during final join Date: Mon, 29 Jun 2020 18:32:28 +0300 [thread overview] Message-ID: <717dd5300a840fe8462a0dc30ed8af72457aee6e.1593444131.git.sergepetrenko@tarantool.org> (raw) In-Reply-To: <cover.1593444131.git.sergepetrenko@tarantool.org> Final join (or register) stage is needed to deliver the replica its _cluster registration. Since this stage is followed by a snapshot on replica, the data received during this stage must be confirmed. Make master check that there are no rollbacks for the data to be sent during final join and that all the data is confirmed before final join starts. Closes #5097 --- src/box/box.cc | 33 +++++++++++++++++++++++++++++++++ src/box/txn_limbo.c | 5 +++++ src/box/txn_limbo.h | 35 +++++++++++++++++++++++++++++++++++ 3 files changed, 73 insertions(+) diff --git a/src/box/box.cc b/src/box/box.cc index dfd7dcb5a..abf9d0b2a 100644 --- a/src/box/box.cc +++ b/src/box/box.cc @@ -1712,6 +1712,11 @@ box_process_register(struct ev_io *io, struct xrow_header *header) say_info("registering replica %s at %s", tt_uuid_str(&instance_uuid), sio_socketname(io->fd)); + /* See box_process_join() */ + txn_limbo_start_recording(&txn_limbo); + auto limbo_guard = make_scoped_guard([&] { + txn_limbo_stop_recording(&txn_limbo); + }); struct vclock start_vclock; vclock_copy(&start_vclock, &replicaset.vclock); @@ -1727,6 +1732,14 @@ box_process_register(struct ev_io *io, struct xrow_header *header) struct vclock stop_vclock; vclock_copy(&stop_vclock, &replicaset.vclock); + if (txn_limbo_got_rollback(&txn_limbo)) + tnt_raise(ClientError, ER_SYNC_ROLLBACK); + txn_limbo_stop_recording(&txn_limbo); + limbo_guard.is_active = false; + + if (txn_limbo_wait_confirm(&txn_limbo) != 0) + diag_raise(); + /* * Feed replica with WALs in range * (start_vclock, stop_vclock) so that it gets its @@ -1848,6 +1861,18 @@ box_process_join(struct ev_io *io, struct xrow_header *header) say_info("joining replica %s at %s", tt_uuid_str(&instance_uuid), sio_socketname(io->fd)); + /* + * In order to join a replica, master has to make sure it + * doesn't send unconfirmed data. We have to check that + * there are no rolled back transactions between + * start_vclock and stop_vclock, and that the data right + * before stop_vclock is confirmed, before we can proceed + * to final join. + */ + txn_limbo_start_recording(&txn_limbo); + auto limbo_guard = make_scoped_guard([&] { + txn_limbo_stop_recording(&txn_limbo); + }); /* * Initial stream: feed replica with dirty data from engines. */ @@ -1869,6 +1894,14 @@ box_process_join(struct ev_io *io, struct xrow_header *header) struct vclock stop_vclock; vclock_copy(&stop_vclock, &replicaset.vclock); + if (txn_limbo_got_rollback(&txn_limbo)) + tnt_raise(ClientError, ER_SYNC_ROLLBACK); + txn_limbo_stop_recording(&txn_limbo); + limbo_guard.is_active = false; + + if (txn_limbo_wait_confirm(&txn_limbo) != 0) + diag_raise(); + /* Send end of initial stage data marker */ struct xrow_header row; xrow_encode_vclock_xc(&row, &stop_vclock); diff --git a/src/box/txn_limbo.c b/src/box/txn_limbo.c index abea26731..fbe4dcecf 100644 --- a/src/box/txn_limbo.c +++ b/src/box/txn_limbo.c @@ -40,6 +40,8 @@ txn_limbo_create(struct txn_limbo *limbo) rlist_create(&limbo->queue); limbo->instance_id = REPLICA_ID_NIL; vclock_create(&limbo->vclock); + limbo->is_recording = false; + limbo->got_rollback = false; } struct txn_limbo_entry * @@ -90,8 +92,11 @@ txn_limbo_pop(struct txn_limbo *limbo, struct txn_limbo_entry *entry) assert(!rlist_empty(&entry->in_queue)); assert(rlist_last_entry(&limbo->queue, struct txn_limbo_entry, in_queue) == entry); + assert(entry->is_rollback); (void) limbo; rlist_del_entry(entry, in_queue); + if (limbo->is_recording) + limbo->got_rollback = true; } void diff --git a/src/box/txn_limbo.h b/src/box/txn_limbo.h index 138093c7c..a9fc83b0c 100644 --- a/src/box/txn_limbo.h +++ b/src/box/txn_limbo.h @@ -117,6 +117,13 @@ struct txn_limbo { * transactions, created on the limbo's owner node. */ struct vclock vclock; + /** Set to true when limbo records rollback occurrence. */ + bool is_recording; + /** + * Whether any rollbacks happened during the recording + * period. + */ + bool got_rollback; }; /** @@ -126,6 +133,34 @@ struct txn_limbo { */ extern struct txn_limbo txn_limbo; +/** + * Make limbo remember the occurrence of rollbacks due to failed + * quorum collection. + */ +static inline void +txn_limbo_start_recording(struct txn_limbo *limbo) +{ + limbo->is_recording = true; +} + +/** Stop the recording of failed quorum collection events. */ +static inline void +txn_limbo_stop_recording(struct txn_limbo *limbo) +{ + limbo->is_recording = false; + limbo->got_rollback = false; +} + +/** + * Returns true in case the limbo rolled back any tx since the + * moment txn_limbo_start_recording() was called. + */ +static inline bool +txn_limbo_got_rollback(struct txn_limbo *limbo) +{ + return limbo->got_rollback; +} + /** * Allocate, create, and append a new transaction to the limbo. * The limbo entry is allocated on the transaction's region. -- 2.24.3 (Apple Git-128)
next prev parent reply other threads:[~2020-06-29 15:32 UTC|newest] Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top 2020-06-29 15:32 [Tarantool-patches] [PATCH 0/4] make master send only confirmed data during join Serge Petrenko 2020-06-29 15:32 ` [Tarantool-patches] [PATCH 1/4] [tosquash] move wait_confirm from gc.c to txn_limbo.c Serge Petrenko 2020-06-29 15:32 ` [Tarantool-patches] [PATCH 2/4] txn_limbo: add diag_set in txn_limbo_wait_confirm Serge Petrenko 2020-06-29 15:32 ` [Tarantool-patches] [PATCH 3/4] replication: delay initial join until confirmation Serge Petrenko 2020-06-29 15:32 ` Serge Petrenko [this message] 2020-06-29 21:14 ` [Tarantool-patches] [PATCH 0/4] make master send only confirmed data during join Vladislav Shpilevoy
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=717dd5300a840fe8462a0dc30ed8af72457aee6e.1593444131.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 4/4] replication: only send confirmed data during final join' \ /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