blob: c1f5269ea98031b9d56c5912806387518f8a277c (
plain)
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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
|
# See the file LICENSE for redistribution information.
#
# Copyright (c) 2001-2009 Oracle. All rights reserved.
#
# $Id$
#
# TEST rep078
# TEST
# TEST Replication and basic lease test.
# TEST Set leases on master and 2 clients.
# TEST Do a lease operation and process to all clients.
# TEST Read with lease on master. Do another lease operation
# TEST and don't process on any client. Try to read with
# TEST on the master and verify it fails. Process the messages
# TEST to the clients and retry the read.
#
proc rep078 { method { tnum "078" } args } {
source ./include.tcl
global databases_in_memory
global repfiles_in_memory
if { $is_windows9x_test == 1 } {
puts "Skipping replication test on Win9x platform."
return
}
# Valid for all access methods. Other lease tests limit the
# test because there is nothing method-specific being tested.
# Use all methods for this basic test.
if { $checking_valid_methods } {
return "ALL"
}
set args [convert_args $method $args]
set logsets [create_logsets 3]
# Set up for on-disk or in-memory databases.
set msg "using on-disk databases"
if { $databases_in_memory } {
set msg "using named in-memory databases"
if { [is_queueext $method] } {
puts -nonewline "Skipping rep$tnum for method "
puts "$method with named in-memory databases."
return
}
}
set msg2 "and on-disk replication files"
if { $repfiles_in_memory } {
set msg2 "and in-memory replication files"
}
# Run the body of the test with and without recovery,
# and with and without cleaning. Skip recovery with in-memory
# logging - it doesn't make sense.
#
# Also skip the case where the master is in-memory and at least
# one of the clients is on-disk. If the master is in-memory,
# the wrong site gets elected because on-disk envs write a log
# record when they create the env and in-memory ones do not
# and the test wants to control which env gets elected.
#
foreach r $test_recopts {
foreach l $logsets {
set logindex [lsearch -exact $l "in-memory"]
if { $r == "-recover" && $logindex != -1 } {
puts "Skipping rep$tnum for -recover\
with in-memory logs."
continue
}
set master_logs [lindex $l 0]
if { $master_logs == "in-memory" } {
set client_logs [lsearch -exact $l "on-disk"]
if { $client_logs != -1 } {
puts "Skipping for in-memory master\
and on-disk client."
continue
}
}
puts "Rep$tnum ($method $r): Replication\
and basic master leases $msg $msg2."
puts "Rep$tnum: Master logs are [lindex $l 0]"
puts "Rep$tnum: Client 1 logs are [lindex $l 1]"
puts "Rep$tnum: Client 2 logs are [lindex $l 2]"
rep078_sub $method $tnum $l $r $args
}
}
}
proc rep078_sub { method tnum logset recargs largs } {
source ./include.tcl
global testdir
global databases_in_memory
global repfiles_in_memory
global rep_verbose
global verbose_type
set verbargs ""
if { $rep_verbose == 1 } {
set verbargs " -verbose {$verbose_type on} "
}
set repmemargs ""
if { $repfiles_in_memory } {
set repmemargs "-rep_inmem_files "
}
env_cleanup $testdir
set qdir $testdir/MSGQUEUEDIR
replsetup $qdir
set masterdir $testdir/MASTERDIR
set clientdir $testdir/CLIENTDIR
set clientdir2 $testdir/CLIENTDIR2
file mkdir $masterdir
file mkdir $clientdir
file mkdir $clientdir2
set m_logtype [lindex $logset 0]
set c_logtype [lindex $logset 1]
set c2_logtype [lindex $logset 2]
# In-memory logs require a large log buffer, and cannot
# be used with -txn nosync.
set m_logargs [adjust_logargs $m_logtype]
set c_logargs [adjust_logargs $c_logtype]
set c2_logargs [adjust_logargs $c2_logtype]
set m_txnargs [adjust_txnargs $m_logtype]
set c_txnargs [adjust_txnargs $c_logtype]
set c2_txnargs [adjust_txnargs $c2_logtype]
# Set leases for 3 sites, 3 second timeout, 0% clock skew
set nsites 3
set lease_to 3000000
set lease_tosec [expr $lease_to / 1000000]
set clock_fast 0
set clock_slow 0
set testfile test.db
#
# Since we have to use elections, the election code
# assumes a 2-off site id scheme.
# Open a master.
repladd 2
set err_cmd(0) "none"
set crash(0) 0
set pri(0) 100
#
# Note that using the default clock skew should be the same
# as specifying "no skew" through the API. We want to
# test both API usages here.
#
set envcmd(0) "berkdb_env -create $m_txnargs $m_logargs \
$verbargs -errpfx MASTER -home $masterdir \
-rep_lease \[list $nsites $lease_to\] \
-event rep_event $repmemargs \
-rep_client -rep_transport \[list 2 replsend\]"
set masterenv [eval $envcmd(0) $recargs]
error_check_good master_env [is_valid_env $masterenv] TRUE
# Open two clients.
repladd 3
set err_cmd(1) "none"
set crash(1) 0
set pri(1) 10
set envcmd(1) "berkdb_env -create $c_txnargs $c_logargs \
$verbargs -errpfx CLIENT -home $clientdir \
-rep_lease \[list $nsites $lease_to $clock_fast $clock_slow\] \
-event rep_event $repmemargs \
-rep_client -rep_transport \[list 3 replsend\]"
set clientenv [eval $envcmd(1) $recargs]
error_check_good client_env [is_valid_env $clientenv] TRUE
repladd 4
set err_cmd(2) "none"
set crash(2) 0
set pri(2) 10
set envcmd(2) "berkdb_env -create $c2_txnargs $c2_logargs \
$verbargs -errpfx CLIENT2 -home $clientdir2 \
-rep_lease \[list $nsites $lease_to\] \
-event rep_event $repmemargs \
-rep_client -rep_transport \[list 4 replsend\]"
set clientenv2 [eval $envcmd(2) $recargs]
error_check_good client_env [is_valid_env $clientenv2] TRUE
# Bring the clients online by processing the startup messages.
set envlist "{$masterenv 2} {$clientenv 3} {$clientenv2 4}"
process_msgs $envlist
#
# Run election to get a master. Leases prevent us from
# simply assigning a master.
#
set msg "Rep$tnum.a"
puts "\tRep$tnum.a: Run initial election."
set nvotes $nsites
set winner 0
setpriority pri $nsites $winner
set elector [berkdb random_int 0 2]
#
# Note we send in a 0 for nsites because we set nsites back
# when we started running with leases. Master leases require
# that nsites be set before calling rep_start, and master leases
# require that the nsites arg to rep_elect be 0.
#
run_election envcmd envlist err_cmd pri crash $qdir $msg \
$elector 0 $nvotes $nsites $winner 0 NULL
puts "\tRep$tnum.b: Spawn a child tclsh to do txn work."
set pid [exec $tclsh_path $test_path/wrap.tcl \
rep078script.tcl $testdir/rep078script.log \
$masterdir $testfile $method &]
# Let child run, create database and put a txn into it.
# Process messages while we wait for the child to complete
# its txn so that the clients can grant leases.
puts "\tRep$tnum.c: Wait for child to write txn."
while { 1 } {
if { [file exists $testdir/marker.db] == 0 } {
tclsleep 1
} else {
set markerenv [berkdb_env -home $testdir -txn]
error_check_good markerenv_open \
[is_valid_env $markerenv] TRUE
set marker [berkdb_open -unknown -env $markerenv \
-auto_commit marker.db]
set kd [$marker get CHILD1]
while { [llength $kd] == 0 } {
process_msgs $envlist
tclsleep 1
set kd [$marker get CHILD1]
}
process_msgs $envlist
#
# Child sends us the key it used as the data
# of the CHILD1 key.
#
set key [lindex [lindex $kd 0] 1]
break
}
}
set masterdb [eval \
{berkdb_open_noerr -env $masterenv -rdonly $testfile}]
error_check_good dbopen [is_valid_db $masterdb] TRUE
process_msgs $envlist
set omethod [convert_method $method]
set clientdb [eval {berkdb_open_noerr \
-env $clientenv $omethod -rdonly $testfile}]
error_check_good dbopen [is_valid_db $clientdb] TRUE
set uselease ""
set ignorelease "-nolease"
puts "\tRep$tnum.d.0: Read with leases."
check_leaseget $masterdb $key $uselease 0
check_leaseget $clientdb $key $uselease 0
puts "\tRep$tnum.d.1: Read ignoring leases."
check_leaseget $masterdb $key $ignorelease 0
check_leaseget $clientdb $key $ignorelease 0
#
# This should fail because the lease is expired and all
# attempts by master to refresh it will not be processed.
#
set sleep [expr $lease_tosec + 1]
puts "\tRep$tnum.e.0: Sleep $sleep secs to expire leases and read again."
tclsleep $sleep
#
# Verify the master gets REP_LEASE_EXPIRED. Verify that the
# read on the client ignores leases and succeeds.
#
check_leaseget $masterdb $key $uselease REP_LEASE_EXPIRED
check_leaseget $clientdb $key $uselease 0
puts "\tRep$tnum.e.1: Read ignoring leases."
check_leaseget $masterdb $key $ignorelease 0
check_leaseget $clientdb $key $ignorelease 0
error_check_good timestamp_done \
[$marker put PARENT1 [timestamp -r]] 0
set kd [$marker get CHILD2]
while { [llength $kd] == 0 } {
process_msgs $envlist
tclsleep 1
set kd [$marker get CHILD2]
}
process_msgs $envlist
#
# Child sends us the key it used as the data
# of the CHILD2 key.
#
set key [lindex [lindex $kd 0] 1]
puts "\tRep$tnum.f: Child writes txn + ckp. Don't process msgs."
#
# Child has committed the txn and we have processed it. Now
# signal the child process to put a checkpoint, which we
# will not process. That will invalidate leases.
error_check_good timestamp_done \
[$marker put PARENT2 [timestamp -r]] 0
set kd [$marker get CHILD3]
while { [llength $kd] == 0 } {
tclsleep 1
set kd [$marker get CHILD3]
}
puts "\tRep$tnum.f.0: Read using leases fails."
check_leaseget $masterdb $key $uselease REP_LEASE_EXPIRED
puts "\tRep$tnum.f.1: Read ignoring leases."
check_leaseget $masterdb $key $ignorelease 0
puts "\tRep$tnum.g: Process messages to clients."
process_msgs $envlist
puts "\tRep$tnum.h: Verify read with leases now succeeds."
check_leaseget $masterdb $key $uselease 0
watch_procs $pid 5
process_msgs $envlist
puts "\tRep$tnum.i: Downgrade master."
$masterenv rep_start -client
process_msgs $envlist
rep_verify $masterdir $masterenv $clientdir $clientenv
process_msgs $envlist
rep_verify $masterdir $masterenv $clientdir2 $clientenv2 0 1 0
# Clean up.
error_check_good marker_db_close [$marker close] 0
error_check_good marker_env_close [$markerenv close] 0
error_check_good masterdb_close [$masterdb close] 0
error_check_good masterdb_close [$clientdb close] 0
error_check_good masterenv_close [$masterenv close] 0
error_check_good clientenv_close [$clientenv close] 0
error_check_good clientenv_close [$clientenv2 close] 0
replclose $testdir/MSGQUEUEDIR
# Check log file for failures.
set errstrings [eval findfail $testdir/rep078script.log]
foreach str $errstrings {
puts "FAIL: error message in rep078 log file: $str"
}
}
|