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: Re: [Tarantool-patches] [PATCH 1/2] box: rework local_recovery to use async txn_commit Date: Fri, 19 Jun 2020 21:45:01 +0300 [thread overview] Message-ID: <30f75001-3ecc-9d7f-9cba-88c824087f4e@tarantool.org> (raw) In-Reply-To: <46ed0cc08e6ecf7ee7c9250d9cdfc3d68aa5c764.1592589312.git.sergepetrenko@tarantool.org> 19.06.2020 21:00, Serge Petrenko пишет: > Local recovery should use asynchronous txn commit procedure in order to > get to CONFIRM and ROLLBACK statements for a transaction that needs > confirmation before confirmation timeout happens. > Using async txn commit doesn't harm other transactions, since the > journal used during local recovery fakes writes and its write_async() > method may reuse plain write(). Added a new commit. I didn't squash it, because its debatable. commit 83760f8b0d1a59e17ab6adeeda60efc1bc6e94ad Author: Serge Petrenko <sergepetrenko@tarantool.org> Date: Fri Jun 19 21:42:35 2020 +0300 box: fix for 'box: rework local_recovery to use async txn_commit' [TO BE SQUASHED INTO THE PREVIOUS COMMIT] diff --git a/src/box/box.cc b/src/box/box.cc index f80d6f8e6..0fe7625fb 100644 --- a/src/box/box.cc +++ b/src/box/box.cc @@ -222,6 +222,12 @@ box_process_rw(struct request *request, struct space *space, */ if (is_local_recovery) { res = txn_commit_async(txn); + /* + * Hack: remove the unnecessary trigger. + * I don't know of a better place to do + * it. + */ + trigger_clear(&txn->on_write_failure); } else { res = txn_commit(txn); } diff --git a/src/box/txn.c b/src/box/txn.c index 2360ecae3..d36c11dda 100644 --- a/src/box/txn.c +++ b/src/box/txn.c @@ -688,9 +688,9 @@ txn_commit_async(struct txn *txn) * Set a trigger to abort waiting for confirm on WAL write * failure. */ - trigger_create(&txn->on_write_failure, txn_limbo_on_rollback, - limbo_entry, NULL); if (is_sync) { + trigger_create(&txn->on_write_failure, txn_limbo_on_rollback, + limbo_entry, NULL); txn_on_rollback(txn, &txn->on_write_failure); } return 0; -- Serge Petrenko
next prev parent reply other threads:[~2020-06-19 18:45 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 [this message] 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 ` [Tarantool-patches] [PATCH 2/2] replication: support ROLLBACK and CONFIRM during recovery Serge Petrenko 2020-06-23 11:50 ` 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=30f75001-3ecc-9d7f-9cba-88c824087f4e@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 1/2] box: rework local_recovery to use async txn_commit' \ /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