From: Konstantin Belyavskiy <k.belyavskiy@tarantool.org>
To: vdavydov@tarantool.org, georgy@tarantool.org
Cc: tarantool-patches@freelists.org
Subject: [PATCH v2] replication: fix bug with zero replication_connect_quorum
Date: Mon, 9 Apr 2018 13:35:30 +0300 [thread overview]
Message-ID: <20180409103530.21415-1-k.belyavskiy@tarantool.org> (raw)
If 'box.cfg.read_only' is false, 'replication' defines at least one
replica (other than itself), but they are not available at the time
of box.cfg execution and replication_connect_quorum is set to zero,
master displays 'orphan' status instead of 'running' since logic
which cnange this state is executed only after successfull connection.
Changes in v2:
Change test to @locker version.
ticket: https://github.com/tarantool/tarantool/issues/3278
branch: https://github.com/tarantool/tarantool/compare/gh-3278-fix-bug-with-zero-replication-connect-quorum
Closes #3278
---
src/box/replication.cc | 8 +++--
test/replication/quorum.result | 66 ++++++++++++++++++++++++++++++++++
test/replication/quorum.test.lua | 22 ++++++++++++
test/replication/replica_no_quorum.lua | 11 ++++++
4 files changed, 105 insertions(+), 2 deletions(-)
create mode 100644 test/replication/replica_no_quorum.lua
diff --git a/src/box/replication.cc b/src/box/replication.cc
index b1c84d36c..760f83751 100644
--- a/src/box/replication.cc
+++ b/src/box/replication.cc
@@ -600,8 +600,12 @@ error:
void
replicaset_follow(void)
{
- if (replicaset.applier.total == 0) {
- /* Replication is not configured. */
+ if (replicaset.applier.total == 0 || replicaset_quorum() == 0) {
+ /*
+ * Replication is not configured or quorum is set to
+ * zero so in the latter case we have no need to wait
+ * for others.
+ */
box_clear_orphan();
return;
}
diff --git a/test/replication/quorum.result b/test/replication/quorum.result
index 34408d421..909bfb55b 100644
--- a/test/replication/quorum.result
+++ b/test/replication/quorum.result
@@ -239,3 +239,69 @@ test_run:cmd('switch default')
test_run:drop_cluster(SERVERS)
---
...
+--
+-- gh-3278: test different replication and replication_connect_quorum configs.
+--
+box.schema.user.grant('guest', 'replication')
+---
+...
+test_run:cmd("create server replica with rpl_master=default, script='replication/replica_no_quorum.lua'")
+---
+- true
+...
+test_run:cmd("start server replica")
+---
+- true
+...
+test_run:cmd("switch replica")
+---
+- true
+...
+box.info.status -- running
+---
+- running
+...
+test_run:cmd("switch default")
+---
+- true
+...
+test_run:cmd("stop server replica")
+---
+- true
+...
+listen = box.cfg.listen
+---
+...
+box.cfg{listen = ''}
+---
+...
+test_run:cmd("start server replica")
+---
+- true
+...
+test_run:cmd("switch replica")
+---
+- true
+...
+box.info.status -- running
+---
+- running
+...
+test_run:cmd("switch default")
+---
+- true
+...
+test_run:cmd("stop server replica")
+---
+- true
+...
+test_run:cmd("cleanup server replica")
+---
+- true
+...
+box.schema.user.revoke('guest', 'replication')
+---
+...
+box.cfg{listen = listen}
+---
+...
diff --git a/test/replication/quorum.test.lua b/test/replication/quorum.test.lua
index 856006843..a96dec759 100644
--- a/test/replication/quorum.test.lua
+++ b/test/replication/quorum.test.lua
@@ -97,3 +97,25 @@ box.info.replication[4].upstream.status
-- Cleanup.
test_run:cmd('switch default')
test_run:drop_cluster(SERVERS)
+
+--
+-- gh-3278: test different replication and replication_connect_quorum configs.
+--
+
+box.schema.user.grant('guest', 'replication')
+test_run:cmd("create server replica with rpl_master=default, script='replication/replica_no_quorum.lua'")
+test_run:cmd("start server replica")
+test_run:cmd("switch replica")
+box.info.status -- running
+test_run:cmd("switch default")
+test_run:cmd("stop server replica")
+listen = box.cfg.listen
+box.cfg{listen = ''}
+test_run:cmd("start server replica")
+test_run:cmd("switch replica")
+box.info.status -- running
+test_run:cmd("switch default")
+test_run:cmd("stop server replica")
+test_run:cmd("cleanup server replica")
+box.schema.user.revoke('guest', 'replication')
+box.cfg{listen = listen}
diff --git a/test/replication/replica_no_quorum.lua b/test/replication/replica_no_quorum.lua
new file mode 100644
index 000000000..b9edeea94
--- /dev/null
+++ b/test/replication/replica_no_quorum.lua
@@ -0,0 +1,11 @@
+#!/usr/bin/env tarantool
+
+box.cfg({
+ listen = os.getenv("LISTEN"),
+ replication = os.getenv("MASTER"),
+ memtx_memory = 107374182,
+ replication_connect_quorum = 0,
+ replication_connect_timeout = 0.1,
+})
+
+require('console').listen(os.getenv('ADMIN'))
--
2.14.3 (Apple Git-98)
next reply other threads:[~2018-04-09 10:35 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-04-09 10:35 Konstantin Belyavskiy [this message]
2018-04-09 14:07 ` Vladimir Davydov
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=20180409103530.21415-1-k.belyavskiy@tarantool.org \
--to=k.belyavskiy@tarantool.org \
--cc=georgy@tarantool.org \
--cc=tarantool-patches@freelists.org \
--cc=vdavydov@tarantool.org \
--subject='Re: [PATCH v2] replication: fix bug with zero replication_connect_quorum' \
/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