Tarantool development patches archive
 help / color / mirror / Atom feed
From: Konstantin Osipov <kostja.osipov@gmail.com>
To: Cyrill Gorcunov <gorcunov@gmail.com>
Cc: tml <tarantool-patches@dev.tarantool.org>
Subject: Re: [Tarantool-patches] [PATCH] box/txn: do not zap fiber txn pointer before txn_write_to_wal completes
Date: Fri, 31 Jan 2020 22:44:48 +0300	[thread overview]
Message-ID: <20200131194448.GA17326@atlas> (raw)
In-Reply-To: <20200124151706.18482-1-gorcunov@gmail.com>

* Cyrill Gorcunov <gorcunov@gmail.com> [20/01/24 18:18]:
> The txn_write_to_wal operates with txn by own: on success it calls
> txn_entry_done_cb which completes transaction, on error it calls
> txn_rollback which expects the transaction we're rolling back is
> the one the fiber carries in storage.
> 
>  | txn_write
>  |   fiber_set_txn(fiber(), NULL); // zap fiber's storage.txn
>  |   txn_write_to_wal(txn);
>  |     journal_entry_new(..., txn_entry_done_cb, ...)
>  |     if (req == NULL)
>  |       txn_rollback(txn);
>  |         assert(txn == in_txn()); // in_txn()=nil, triggers

Wile I agree this call chain is problematic...


> index bedb57449..060d91536 100644
> --- a/src/box/txn.c
> +++ b/src/box/txn.c
> @@ -583,7 +583,6 @@ txn_write(struct txn *txn)
>  		fiber_set_txn(fiber(), NULL);
>  		return 0;
>  	}
> -	fiber_set_txn(fiber(), NULL);
>  	return txn_write_to_wal(txn);

I believe Georgy added this for a reason - since the current fiber
is no longer locked until the transaction is resumed, it should
be removed from the fiber key (this change AFAIU comes from
parallel applier patch).

I suggest you move this statement inside txn_write_to_wal(). I
can't find a good place for it yet though.

-- 
Konstantin Osipov, Moscow, Russia

  parent reply	other threads:[~2020-01-31 19:44 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-24 15:17 Cyrill Gorcunov
2020-01-24 15:24 ` Cyrill Gorcunov
2020-01-31 19:44 ` Konstantin Osipov [this message]
2020-01-31 19:57   ` Cyrill Gorcunov
2020-02-03 19:54     ` Georgy Kirichenko

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=20200131194448.GA17326@atlas \
    --to=kostja.osipov@gmail.com \
    --cc=gorcunov@gmail.com \
    --cc=tarantool-patches@dev.tarantool.org \
    --subject='Re: [Tarantool-patches] [PATCH] box/txn: do not zap fiber txn pointer before txn_write_to_wal completes' \
    /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