-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sometimes, instance could enter the queue initialization while still not running (for example, left in the orphan mode). This resulted in "lazy start". But Tarantool does not call `box.cfg {}` after leaving orphan mode, so queue could stuck in the `INIT` state. Now we wait in the background for instances, that are not running. It is similar to lazy init for read-only instances. Note that this fix works only for Tarantool versions >= 2.10.0. This is because of used watchers. Closes #226
- Loading branch information
Showing
3 changed files
with
138 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
#!/usr/bin/env tarantool | ||
|
||
local test = require('tap').test('') | ||
local queue = require('queue') | ||
local tnt = require('t.tnt') | ||
local fio = require('fio') | ||
local fiber = require('fiber') | ||
|
||
rawset(_G, 'queue', require('queue')) | ||
|
||
local qc = require('queue.compat') | ||
if not qc.check_version({2, 10, 0}) then | ||
require('log').info('Tests skipped, tarantool version < 2.10.0') | ||
return | ||
end | ||
|
||
local snapdir_optname = qc.snapdir_optname | ||
local logger_optname = qc.logger_optname | ||
|
||
test:plan(1) | ||
|
||
test:test('Check orphan mode not stalling queue', function(test) | ||
test:plan(4) | ||
local engine = os.getenv('ENGINE') or 'memtx' | ||
tnt.cluster.cfg{} | ||
|
||
local dir_replica = fio.tempdir() | ||
local cmd_replica = { | ||
arg[-1], | ||
'-e', | ||
[[ | ||
box.cfg { | ||
replication = { | ||
'replicator:[email protected]:3399', | ||
'replicator:[email protected]:3398', | ||
}, | ||
listen = '127.0.0.1:3396', | ||
wal_dir = ']] .. dir_replica .. '\'' .. | ||
',' .. snapdir_optname() .. ' = \'' .. dir_replica .. '\'' .. | ||
',' .. logger_optname() .. ' = \'' .. | ||
fio.pathjoin(dir_replica, 'tarantool.log') .. '\'' .. | ||
'}' | ||
} | ||
|
||
replica = require('popen').new(cmd_replica, { | ||
stdin = 'devnull', | ||
stdout = 'devnull', | ||
stderr = 'devnull', | ||
}) | ||
|
||
local attempts = 0 | ||
-- Wait for replica to connect. | ||
while box.info.replication[3] == nil or box.info.replication[3].downstream.status ~= 'follow' do | ||
attempts = attempts + 1 | ||
if attempts == 30 then | ||
error('wait for replica connection') | ||
end | ||
fiber.sleep(0.1) | ||
end | ||
|
||
local conn = require('net.box').connect('127.0.0.1:3396') | ||
|
||
conn:eval([[ | ||
box.cfg{ | ||
replication = { | ||
'replicator:[email protected]:3399', | ||
'replicator:[email protected]:3398', | ||
'replicator:[email protected]:3396', | ||
}, | ||
listen = '127.0.0.1:3397', | ||
replication_connect_quorum = 4, | ||
} | ||
]]) | ||
|
||
conn:eval('rawset(_G, "queue", require("queue"))') | ||
|
||
test:is(conn:call('queue.state'), 'INIT', 'check queue state') | ||
test:is(conn:call('box.info').ro, true, 'check read only') | ||
test:is(conn:call('box.info').ro_reason, 'orphan', 'check ro reason') | ||
|
||
conn:eval('box.cfg{replication_connect_quorum = 2}') | ||
|
||
local attempts = 0 | ||
while true do | ||
if conn:call('queue.state') == 'RUNNING' then | ||
test:is(conn:call('queue.state'), 'RUNNING', | ||
'check queue state after orphan') | ||
return | ||
end | ||
attempts = attempts + 1 | ||
if attempts == 10 then | ||
break | ||
end | ||
fiber.sleep(0.1) | ||
end | ||
test:is(conn:call('queue.state'), 'RUNNING', 'check queue state after orphan') | ||
end) | ||
|
||
rawset(_G, 'queue', nil) | ||
tnt.finish() | ||
os.exit(test:check() and 0 or 1) | ||
-- vim: set ft=lua : |