From: Cyrill Gorcunov via Tarantool-patches <tarantool-patches@dev.tarantool.org> To: tml <tarantool-patches@dev.tarantool.org> Cc: Vladislav Shpilevoy <v.shpilevoy@tarantool.org> Subject: [Tarantool-patches] [PATCH v14 2/6] qsync: update confirmed lsn on initial promote request Date: Fri, 10 Sep 2021 18:29:06 +0300 [thread overview] Message-ID: <20210910152910.607398-3-gorcunov@gmail.com> (raw) In-Reply-To: <20210910152910.607398-1-gorcunov@gmail.com> When promote request is handled we drop last confirmed lsn to zero because its value make sense for sync queue owner only. Still the case where we become queue owner for the first time is special - we need to fetch the obtained lsn from the request and remember it so we will be able to filter any next malformed requests with wrong lsn numbers (see queue filtering procedure in next patch). Part-of #6036 Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com> --- src/box/txn_limbo.c | 8 +++++++- src/box/txn_limbo.h | 6 ++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/src/box/txn_limbo.c b/src/box/txn_limbo.c index cca2ce493..08463219d 100644 --- a/src/box/txn_limbo.c +++ b/src/box/txn_limbo.c @@ -50,6 +50,7 @@ txn_limbo_create(struct txn_limbo *limbo) limbo->confirmed_lsn = 0; limbo->rollback_count = 0; limbo->is_in_rollback = false; + limbo->has_initial_promote = false; } bool @@ -521,8 +522,13 @@ txn_limbo_read_promote(struct txn_limbo *limbo, uint32_t replica_id, txn_limbo_read_rollback(limbo, lsn + 1); assert(txn_limbo_is_empty(&txn_limbo)); limbo->owner_id = replica_id; + if (likely(limbo->has_initial_promote)) { + limbo->confirmed_lsn = 0; + } else { + limbo->confirmed_lsn = lsn; + limbo->has_initial_promote = true; + } box_update_ro_summary(); - limbo->confirmed_lsn = 0; } void diff --git a/src/box/txn_limbo.h b/src/box/txn_limbo.h index 53e52f676..e0d17de4b 100644 --- a/src/box/txn_limbo.h +++ b/src/box/txn_limbo.h @@ -179,6 +179,12 @@ struct txn_limbo { * by the 'reversed rollback order' rule - contradiction. */ bool is_in_rollback; + /** + * Whether the limbo received initial PROMOTE request. It is needed to + * update confirmed_lsn appropriately and pass packet validation/filtering + * procedure. + */ + bool has_initial_promote; }; /** -- 2.31.1
next prev parent reply other threads:[~2021-09-10 15:30 UTC|newest] Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-09-10 15:29 [Tarantool-patches] [PATCH v14 0/6] qsync: implement packets filtering Cyrill Gorcunov via Tarantool-patches 2021-09-10 15:29 ` [Tarantool-patches] [PATCH v14 1/6] qsync: track confirmed lsn number on reads Cyrill Gorcunov via Tarantool-patches 2021-09-12 15:44 ` Vladislav Shpilevoy via Tarantool-patches 2021-09-12 22:18 ` Cyrill Gorcunov via Tarantool-patches 2021-09-13 8:33 ` Serge Petrenko via Tarantool-patches 2021-09-13 8:50 ` Serge Petrenko via Tarantool-patches 2021-09-10 15:29 ` Cyrill Gorcunov via Tarantool-patches [this message] 2021-09-12 15:44 ` [Tarantool-patches] [PATCH v14 2/6] qsync: update confirmed lsn on initial promote request Vladislav Shpilevoy via Tarantool-patches 2021-09-12 22:25 ` Cyrill Gorcunov via Tarantool-patches 2021-09-13 8:52 ` Serge Petrenko via Tarantool-patches 2021-09-13 14:20 ` [Tarantool-patches] [RFC] qsync: overall design Cyrill Gorcunov via Tarantool-patches 2021-09-10 15:29 ` [Tarantool-patches] [PATCH v14 3/6] latch: add latch_is_locked helper Cyrill Gorcunov via Tarantool-patches 2021-09-10 15:29 ` [Tarantool-patches] [PATCH v14 4/6] qsync: order access to the limbo terms Cyrill Gorcunov via Tarantool-patches 2021-09-12 15:44 ` Vladislav Shpilevoy via Tarantool-patches 2021-09-13 10:52 ` Cyrill Gorcunov via Tarantool-patches 2021-09-10 15:29 ` [Tarantool-patches] [PATCH v14 5/6] qsync: filter incoming synchro requests Cyrill Gorcunov via Tarantool-patches 2021-09-12 15:44 ` Vladislav Shpilevoy via Tarantool-patches 2021-09-14 19:41 ` Cyrill Gorcunov via Tarantool-patches 2021-09-10 15:29 ` [Tarantool-patches] [PATCH v14 6/6] test: add replication/gh-6036-rollback-confirm Cyrill Gorcunov via Tarantool-patches 2021-09-12 15:44 ` Vladislav Shpilevoy via Tarantool-patches 2021-09-12 15:43 ` [Tarantool-patches] [PATCH v14 0/6] qsync: implement packets filtering Vladislav Shpilevoy via Tarantool-patches
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=20210910152910.607398-3-gorcunov@gmail.com \ --to=tarantool-patches@dev.tarantool.org \ --cc=gorcunov@gmail.com \ --cc=v.shpilevoy@tarantool.org \ --subject='Re: [Tarantool-patches] [PATCH v14 2/6] qsync: update confirmed lsn on initial promote request' \ /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