File: panic_on_wal_error.result

package info (click to toggle)
tarantool 1.7.2.385.g952d79e-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 21,556 kB
  • ctags: 28,405
  • sloc: ansic: 180,313; cpp: 26,044; sh: 15,513; python: 4,893; makefile: 1,412
file content (186 lines) | stat: -rw-r--r-- 3,045 bytes parent folder | download
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
-- preparatory stuff
env = require('test_run')
---
...
test_run = env.new()
---
...
fio = require('fio')
---
...
glob = fio.pathjoin(box.cfg.wal_dir, '*.xlog')
---
...
for _, file in pairs(fio.glob(glob)) do fio.unlink(file) end
---
...
glob = fio.pathjoin(box.cfg.snap_dir, '*.snap')
---
...
for _, file in pairs(fio.glob(glob)) do fio.unlink(file) end
---
...
test_run:cmd("restart server default")
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
...
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
---
...
test_run:cmd("restart server default")
--
-- 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{panic_on_wal_error=true}
---
...
box.cfg.panic_on_wal_error
---
- true
...
-- 
-- 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].status ~= "stopped" do fiber.sleep(0.001) end
---
...
box.info.replication[1].status
---
- stopped
...
box.info.replication[1].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')
---
...