1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
|
-- preparatory stuff
env = require('test_run')
---
...
test_run = env.new()
---
...
test_run:cmd("restart server default with cleanup=True")
box.schema.user.grant('guest', 'replication')
---
...
_ = box.schema.space.create('test')
---
...
_ = box.space.test:create_index('pk')
---
...
--
-- reopen xlog
--
test_run:cmd("restart server default")
box.space.test ~= nil
---
- true
...
-- insert some stuff
--
box.space.test:auto_increment{'before snapshot'}
---
- [1, 'before snapshot']
...
--
-- this snapshot will go to the replica
--
box.snapshot()
---
- ok
...
--
-- create a replica, let it catch up somewhat
--
test_run:cmd("create server replica with rpl_master=default, script='xlog/replica.lua'")
---
- true
...
test_run:cmd("start server replica")
---
- true
...
test_run:cmd("switch replica")
---
- true
...
box.space.test:select{}
---
- - [1, 'before snapshot']
...
--
-- stop replica, restart the master, insert more stuff
-- which will make it into an xlog only
--
test_run:cmd("switch default")
---
- true
...
test_run:cmd("stop server replica")
---
- true
...
test_run:cmd("restart server default")
box.space.test:auto_increment{'after snapshot'}
---
- [2, 'after snapshot']
...
box.space.test:auto_increment{'after snapshot - one more row'}
---
- [3, 'after snapshot - one more row']
...
--
-- save snapshot and remove xlogs
--
box.snapshot()
---
- ok
...
fio = require('fio')
---
...
glob = fio.pathjoin(box.cfg.wal_dir, '*.xlog')
---
...
files = fio.glob(glob)
---
...
for _, file in pairs(files) do fio.unlink(file) end
---
...
--
-- make sure the server has some xlogs, otherwise the
-- replica doesn't discover the gap in the logs
--
box.space.test:auto_increment{'after snapshot and restart'}
---
- [4, 'after snapshot and restart']
...
box.space.test:auto_increment{'after snapshot and restart - one more row'}
---
- [5, 'after snapshot and restart - one more row']
...
--
-- check that panic is true
--
box.cfg{force_recovery=false}
---
...
box.cfg.force_recovery
---
- false
...
--
-- try to start the replica, ha-ha
-- (replication should fail, some rows are missing)
--
test_run:cmd("start server replica")
---
- true
...
test_run:cmd("switch replica")
---
- true
...
fiber = require('fiber')
---
...
while box.info.replication[1].upstream.status ~= "stopped" do fiber.sleep(0.001) end
---
...
box.info.replication[1].upstream.status
---
- stopped
...
box.info.replication[1].upstream.message
---
- 'Missing .xlog file between LSN 6 {1: 6} and 8 {1: 8}'
...
box.space.test:select{}
---
- - [1, 'before snapshot']
...
--
--
test_run:cmd("switch default")
---
- true
...
test_run:cmd("stop server replica")
---
- true
...
test_run:cmd("cleanup server replica")
---
- true
...
--
-- cleanup
box.space.test:drop()
---
...
box.schema.user.revoke('guest', 'replication')
---
...
|