From: Georgy Kirichenko <georgy@tarantool.org> To: tarantool-patches@freelists.org Cc: Georgy Kirichenko <georgy@tarantool.org> Subject: [tarantool-patches] [PATCH v3 0/2] Transaction boundaries for applier Date: Sun, 10 Mar 2019 23:21:25 +0300 [thread overview] Message-ID: <cover.1552248901.git.georgy@tarantool.org> (raw) This patchset consists of thwo patches. * The first one creates a separate journal transaction for all local effects in case of replication what is needed to be able to replicate such effects back. * The second one turns applier into transaction mode - an applier first fetches the whole transaction and then applies all rows within transaction boundaries. Changes in v3: * rebased against latest 2.1. * use n_local_rows/n_remote_rows counters. * fixes and refactoring according to review. Changes in v2: * Get rid of apply_initial_journal_row and apply_row from box.cc and purge box dependency from applier. * txn.cc and txn.h changes moved into a separate commit. * applier_read_tx uses stailq to form a list of rows in a transaction. * use exceptions for applier routines. * slight changes according to review. Issue: https://github.com/tarantool/tarantool/issues/2798 Branch: https://github.com/tarantool/tarantool/tree/g.kirichenko/gh-2798-transaction-boundaries Georgy Kirichenko (2): Write rows without a lsn to the transaction tail Transaction support for applier src/box/applier.cc | 219 +++++++++++++++++------ src/box/txn.c | 42 +++-- src/box/txn.h | 6 +- test/replication/transaction.result | 242 ++++++++++++++++++++++++++ test/replication/transaction.test.lua | 86 +++++++++ 5 files changed, 525 insertions(+), 70 deletions(-) create mode 100644 test/replication/transaction.result create mode 100644 test/replication/transaction.test.lua -- 2.21.0
next reply other threads:[~2019-03-10 20:21 UTC|newest] Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top 2019-03-10 20:21 Georgy Kirichenko [this message] 2019-03-10 20:21 ` [tarantool-patches] [PATCH] Don't free fiber gc on while txn_rollback Georgy Kirichenko 2019-03-11 8:12 ` [tarantool-patches] " Konstantin Osipov 2019-03-10 20:21 ` [tarantool-patches] [PATCH v3 1/2] Write rows without a lsn to the transaction tail Georgy Kirichenko 2019-03-11 8:14 ` [tarantool-patches] " Konstantin Osipov 2019-03-11 8:40 ` [tarantool-patches] " Vladimir Davydov 2019-03-11 9:59 ` [tarantool-patches] " Konstantin Osipov 2019-03-11 10:54 ` Georgy Kirichenko 2019-03-11 14:04 ` Konstantin Osipov 2019-03-11 19:52 ` Георгий Кириченко 2019-03-10 20:21 ` [tarantool-patches] [PATCH v3 2/2] Transaction support for applier Georgy Kirichenko 2019-03-11 8:18 ` [tarantool-patches] " Konstantin Osipov
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=cover.1552248901.git.georgy@tarantool.org \ --to=georgy@tarantool.org \ --cc=tarantool-patches@freelists.org \ --subject='Re: [tarantool-patches] [PATCH v3 0/2] Transaction boundaries for applier' \ /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