Tarantool development patches archive
 help / color / mirror / Atom feed
* [Tarantool-patches] [PATCH 0/6] Raft auto-commit
@ 2020-10-13 23:28 Vladislav Shpilevoy
  2020-10-13 23:28 ` [Tarantool-patches] [PATCH 1/6] test: add '_stress' suffix to election_qsync test Vladislav Shpilevoy
                   ` (7 more replies)
  0 siblings, 8 replies; 13+ messages in thread
From: Vladislav Shpilevoy @ 2020-10-13 23:28 UTC (permalink / raw)
  To: tarantool-patches, sergepetrenko

The patchset implements Raft auto-commit feature, so when a new
leader is elected, it clears the limbo queue after the old leader.

There are 4 preparatory patches for that, and 1 follow-up not
related to the auto-commit - the last commit fixes the issue 5395
about a crash in the limbo, which started failing on every run of
the tests now.

Branch: http://github.com/tarantool/tarantool/tree/gerold103/gh-5339-raft-auto-commit
Issue: https://github.com/tarantool/tarantool/issues/5339

@ChangeLog
* When election is enabled, a newly elected leader will automatically finish all the synchronous transactions, created by the old leader (gh-5339).

Vladislav Shpilevoy (6):
  test: add '_stress' suffix to election_qsync test
  raft: factor out the code to wakeup worker fiber
  raft: new candidate should wait for leader death
  raft: introduce on_update trigger
  raft: auto-commit transactions of the old leader
  qsync: reset confirmed lsn in limbo on owner change

 src/box/box.cc                                |  42 ++++-
 src/box/box.h                                 |   3 +-
 src/box/lua/ctl.c                             |   2 +-
 src/box/raft.c                                |  58 ++++--
 src/box/raft.h                                |  13 ++
 src/box/txn_limbo.c                           |   1 +
 test/replication/election_qsync.result        | 177 ++++++++++--------
 test/replication/election_qsync.test.lua      | 129 ++++++-------
 test/replication/election_qsync_stress.result | 127 +++++++++++++
 .../election_qsync_stress.test.lua            |  72 +++++++
 test/replication/suite.ini                    |   2 +-
 11 files changed, 460 insertions(+), 166 deletions(-)
 create mode 100644 test/replication/election_qsync_stress.result
 create mode 100644 test/replication/election_qsync_stress.test.lua

-- 
2.21.1 (Apple Git-122.3)

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2020-11-24 23:23 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-13 23:28 [Tarantool-patches] [PATCH 0/6] Raft auto-commit Vladislav Shpilevoy
2020-10-13 23:28 ` [Tarantool-patches] [PATCH 1/6] test: add '_stress' suffix to election_qsync test Vladislav Shpilevoy
2020-10-13 23:28 ` [Tarantool-patches] [PATCH 2/6] raft: factor out the code to wakeup worker fiber Vladislav Shpilevoy
2020-10-14 13:29   ` Cyrill Gorcunov
2020-10-14 22:40     ` Vladislav Shpilevoy
2020-10-15  6:50       ` Cyrill Gorcunov
2020-10-13 23:28 ` [Tarantool-patches] [PATCH 3/6] raft: new candidate should wait for leader death Vladislav Shpilevoy
2020-10-13 23:28 ` [Tarantool-patches] [PATCH 4/6] raft: introduce on_update trigger Vladislav Shpilevoy
2020-10-13 23:28 ` [Tarantool-patches] [PATCH 5/6] raft: auto-commit transactions of the old leader Vladislav Shpilevoy
2020-10-13 23:28 ` [Tarantool-patches] [PATCH 6/6] qsync: reset confirmed lsn in limbo on owner change Vladislav Shpilevoy
2020-11-24 23:23   ` Vladislav Shpilevoy
2020-10-14  7:34 ` [Tarantool-patches] [PATCH 0/6] Raft auto-commit Serge Petrenko
2020-10-14 22:40 ` Vladislav Shpilevoy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox