From: Olga Arkhangelskaia <krishtal.olja@gmail.com> To: tarantool-patches@freelists.org Cc: Olga Arkhangelskaia <krishtal.olja@gmail.com> Subject: [tarantool-patches] [PATCH] replication: adds replication sync after cfg. update Date: Thu, 16 Aug 2018 22:05:21 +0300 [thread overview] Message-ID: <20180816190521.9310-1-krishtal.olja@gmail.com> (raw) When replica reconnects to replica set not for the first time, we suffer from absence of data sync. Such behavior leads to giving away outdated data. Closes #3427 --- https://github.com/tarantool/tarantool/issues/3427 https://github.com/tarantool/tarantool/tree/OKriw/replication_no_sync-1.9 src/box/box.cc | 2 + test/replication/orphan.result | 103 ++++++++++++++++++++++++++++++++++++ test/replication/orphan.test.lua | 47 ++++++++++++++++ test/replication/replica_orphan.lua | 11 ++++ 4 files changed, 163 insertions(+) create mode 100644 test/replication/orphan.result create mode 100644 test/replication/orphan.test.lua create mode 100644 test/replication/replica_orphan.lua diff --git a/src/box/box.cc b/src/box/box.cc index 8d7454d1f..af8a3ccd9 100644 --- a/src/box/box.cc +++ b/src/box/box.cc @@ -634,6 +634,8 @@ box_set_replication(void) box_sync_replication(true); /* Follow replica */ replicaset_follow(); + /* Sync replica up to quorum */ + replicaset_sync(); } void diff --git a/test/replication/orphan.result b/test/replication/orphan.result new file mode 100644 index 000000000..2230d4546 --- /dev/null +++ b/test/replication/orphan.result @@ -0,0 +1,103 @@ +-- +-- gh-3427: no sync after configuration update +-- +env = require('test_run') +--- +... +test_run = env.new() +--- +... +engine = test_run:get_cfg('engine') +--- +... +box.schema.user.grant('guest', 'read,write,execute', 'universe') +--- +... +box.schema.user.grant('guest', 'replication') +--- +... +test_run:cmd("create server replica with rpl_master=default, script='replication/replica_orphan.lua'") +--- +- true +... +test_run:cmd("start server replica") +--- +- true +... +repl = test_run:eval('replica', 'return box.cfg.listen')[1] +--- +... +box.cfg{replication = repl} +--- +... +test_run:cmd("switch replica") +--- +- true +... +test_run:cmd("switch default") +--- +- true +... +s = box.schema.space.create('test', {engine = engine}); +--- +... +index = s:create_index('primary') +--- +... +-- change replica configuration +test_run:cmd("switch replica") +--- +- true +... +box.cfg{replication={}} +--- +... +test_run:cmd("switch default") +--- +- true +... +-- insert values on the master while replica is unconfigured +a = 100000 while a > 0 do a = a-1 box.space.test:insert{a,'A'..a} end +--- +... +test_run:cmd("switch replica") +--- +- true +... +box.cfg{replication = os.getenv("MASTER")} +--- +... +test_run:cmd("switch default") +--- +- true +... +test_run:cmd("switch replica") +--- +- true +... +box.info.replication[1].upstream.lag > 1 +--- +- false +... +test_run:cmd("switch default") +--- +- true +... +-- cleanup +test_run:cmd("stop server replica") +--- +- true +... +test_run:cmd("cleanup server replica") +--- +- true +... +box.space.test:drop() +--- +... +box.schema.user.revoke('guest', 'replication') +--- +... +box.schema.user.revoke('guest', 'read,write,execute', 'universe') +--- +... diff --git a/test/replication/orphan.test.lua b/test/replication/orphan.test.lua new file mode 100644 index 000000000..25522f5ac --- /dev/null +++ b/test/replication/orphan.test.lua @@ -0,0 +1,47 @@ +-- +-- gh-3427: no sync after configuration update +-- + +env = require('test_run') +test_run = env.new() +engine = test_run:get_cfg('engine') + +box.schema.user.grant('guest', 'read,write,execute', 'universe') + +box.schema.user.grant('guest', 'replication') +test_run:cmd("create server replica with rpl_master=default, script='replication/replica_orphan.lua'") +test_run:cmd("start server replica") + +repl = test_run:eval('replica', 'return box.cfg.listen')[1] +box.cfg{replication = repl} + +test_run:cmd("switch replica") +test_run:cmd("switch default") + +s = box.schema.space.create('test', {engine = engine}); +index = s:create_index('primary') + +-- change replica configuration +test_run:cmd("switch replica") +box.cfg{replication={}} + +test_run:cmd("switch default") +-- insert values on the master while replica is unconfigured +a = 100000 while a > 0 do a = a-1 box.space.test:insert{a,'A'..a} end + +test_run:cmd("switch replica") +box.cfg{replication = os.getenv("MASTER")} + +test_run:cmd("switch default") +test_run:cmd("switch replica") + +box.info.replication[1].upstream.lag > 1 +test_run:cmd("switch default") + +-- cleanup +test_run:cmd("stop server replica") +test_run:cmd("cleanup server replica") +box.space.test:drop() +box.schema.user.revoke('guest', 'replication') +box.schema.user.revoke('guest', 'read,write,execute', 'universe') + diff --git a/test/replication/replica_orphan.lua b/test/replication/replica_orphan.lua new file mode 100644 index 000000000..98573a407 --- /dev/null +++ b/test/replication/replica_orphan.lua @@ -0,0 +1,11 @@ +#!/usr/bin/env tarantool + +local TIMEOUT = tonumber(arg[1]) + +box.cfg({ + listen = os.getenv("LISTEN"), + replication = os.getenv("MASTER"), + replication_connect_timeout = 0.5, +}) + +require('console').listen(os.getenv('ADMIN')) -- 2.14.3 (Apple Git-98)
next reply other threads:[~2018-08-16 19:06 UTC|newest] Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top 2018-08-16 19:05 Olga Arkhangelskaia [this message] 2018-08-20 12:36 ` [tarantool-patches] " Georgy Kirichenko
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=20180816190521.9310-1-krishtal.olja@gmail.com \ --to=krishtal.olja@gmail.com \ --cc=tarantool-patches@freelists.org \ --subject='Re: [tarantool-patches] [PATCH] replication: adds replication sync after cfg. update' \ /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