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 67451279EB for ; Thu, 21 Feb 2019 10:27:05 -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 Ybo-9M3eH6BB for ; Thu, 21 Feb 2019 10:27:05 -0500 (EST) Received: from smtp63.i.mail.ru (smtp63.i.mail.ru [217.69.128.43]) (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 E8CEE279DD for ; Thu, 21 Feb 2019 10:27:04 -0500 (EST) From: Georgy Kirichenko Subject: [tarantool-patches] [PATCH v5 0/2] Transaction boundaries in replication protocol Date: Thu, 21 Feb 2019 18:29: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 introduces transactional replication and consist of two commits: * the first one forms transaction boundaries in a xlog * the second one forms a transaction in applier buffers and then applies them between begin and commit boundaries. Changes in v5: - Renames according to review - Missing files were added Changes in v4: - Minor fixes according to review - xlog transaction boundaries test - Rebased against latest 2.1 Changes in v3: - Change encoding in order to achieve better compaction - Transactional replication test Changes in v2: - Rebased against latest 2.1 - Fixed extraction for local replication effects Issue: https://github.com/tarantool/tarantool/issues/2798 Branch: https://github.com/tarantool/tarantool/tree/g.kirichenko/gh-2798-transaction-boundaries Georgy Kirichenko (2): Journal transaction boundaries Transaction support for applier src/box/applier.cc | 216 ++++++++++++++++++----- src/box/applier.h | 5 + src/box/iproto_constants.c | 8 +- src/box/iproto_constants.h | 7 + src/box/lua/xlog.c | 10 ++ src/box/txn.c | 17 +- src/box/txn.h | 4 + src/box/wal.c | 5 + src/box/xrow.c | 33 ++++ src/box/xrow.h | 4 +- test/replication/transaction.result | 240 ++++++++++++++++++++++++++ test/replication/transaction.test.lua | 86 +++++++++ test/unit/xrow.cc | 2 + 13 files changed, 584 insertions(+), 53 deletions(-) create mode 100644 test/replication/transaction.result create mode 100644 test/replication/transaction.test.lua -- 2.20.1