Tarantool development patches archive
 help / color / mirror / Atom feed
From: Sergey Petrenko <sergepetrenko@tarantool.org>
To: Konstantin Osipov <kostja@tarantool.org>,
	tarantool-patches@freelists.org
Subject: [tarantool-patches] Re: [PATCH] Do not update schema_version on space:truncate().
Date: Fri, 6 Jul 2018 17:24:06 +0300	[thread overview]
Message-ID: <7de60a16-1273-6c1b-12d5-8e05ef1e3ff2@tarantool.org> (raw)
In-Reply-To: <20180706140754.GA3514@chai>

06.07.2018 17:07, Konstantin Osipov пишет:
> * Serge Petrenko <sergepetrenko@tarantool.org> [18/07/06 14:52]:
>> Schema version is used by both clients and internal modules to check
>> whether there vere any updates in spaces and indices. While clients
>> only need to be notified when there is a noticeable change, e.g.
>> space is removed, internal components also need to be notified when
>> something like space:truncate() happens, because even though this
>> operation doesn't change space id or any of its indices, it creates a
>> new space object, so all the pointers to the old object have to be updated.
>> Currently both clients and internals share the same schema version, which
>> leads to unnecessary updates on the client side.
>>
>> Fix this by implementing 2 separate counters for internal and public use:
>> schema_state gets updated on every change, including recreation of the same
>> space object, while schema_version is updated only when there are noticable
>> changes for the clients. Introduce a new AlterOp to alter.cc to update
>> public schema_version.
>> Now all the internals reference schema_state, while all the clients use
>> schema_version. box.iternal.schema_version() returns schema_version
>> (the public one).
> The new schema is instantiated/becomes effective in do(), not in commit.
>
> Before do() and commit() there is a yield and new queries
> can see the new schema already.
>
Will fix. I thought it'd be a good idea to only increment when we 
already know
we won't be returning to the old state.
So I should increase schema_version in UpdateSchemaVersion::alter() and 
decrease it in
UpdateSchemaVersion::rollback() ? And what about creation/drop of a 
space? Move
schema_version increment to on_replace_dd_space() and decrement in case 
of failure to
on_create_space_rollback() / on_drop_space_rollback() ?

  reply	other threads:[~2018-07-06 14:24 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-06 11:46 [tarantool-patches] " Serge Petrenko
2018-07-06 14:07 ` [tarantool-patches] " Konstantin Osipov
2018-07-06 14:24   ` Sergey Petrenko [this message]
2018-07-06 14:29     ` Konstantin Osipov
2018-07-06 15:15       ` Sergey 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=7de60a16-1273-6c1b-12d5-8e05ef1e3ff2@tarantool.org \
    --to=sergepetrenko@tarantool.org \
    --cc=kostja@tarantool.org \
    --cc=tarantool-patches@freelists.org \
    --subject='[tarantool-patches] Re: [PATCH] Do not update schema_version on space:truncate().' \
    /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