From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTP id 24E4828A3A for ; Sun, 3 Mar 2019 15:26:25 -0500 (EST) Received: from turing.freelists.org ([127.0.0.1]) by localhost (turing.freelists.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id TAIwp8szCxLh for ; Sun, 3 Mar 2019 15:26:25 -0500 (EST) Received: from smtp10.mail.ru (smtp10.mail.ru [94.100.181.92]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTPS id 6B03D289A2 for ; Sun, 3 Mar 2019 15:26:24 -0500 (EST) From: Georgy Kirichenko Subject: [tarantool-patches] [PATCH 0/3] Transaction boundaries for applier Date: Sun, 3 Mar 2019 23:26:15 +0300 Message-Id: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: tarantool-patches-bounce@freelists.org Errors-to: tarantool-patches-bounce@freelists.org Reply-To: tarantool-patches@freelists.org List-Help: List-Unsubscribe: List-software: Ecartis version 1.0.0 List-Id: tarantool-patches List-Subscribe: List-Owner: List-post: List-Archive: To: tarantool-patches@freelists.org Cc: Georgy Kirichenko This patchset consists of three patches. The first two are refactoring which removes xstream dependency from applier. The last one fixes txn in order to move local transaction effect to the transaction tail which allows to replicate this effects back and then makes applier to follow transaction boundaries. Issue: https://github.com/tarantool/tarantool/issues/2798 Branch: https://github.com/tarantool/tarantool/tree/g.kirichenko/gh-2798-transaction-boundaries Georgy Kirichenko (3): Applier gets rid of a xstream Merge apply row and apply_initial_join_row Transaction support for applier src/box/applier.cc | 259 +++++++++++++++++++------- src/box/applier.h | 9 +- src/box/box.cc | 77 +++----- src/box/box.h | 9 + src/box/txn.c | 21 ++- src/box/txn.h | 4 + test/replication/transaction.result | 240 ++++++++++++++++++++++++ test/replication/transaction.test.lua | 86 +++++++++ 8 files changed, 577 insertions(+), 128 deletions(-) create mode 100644 test/replication/transaction.result create mode 100644 test/replication/transaction.test.lua -- 2.21.0