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 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458
|
# See the file LICENSE for redistribution information.
#
# Copyright (c) 2004, 2013 Oracle and/or its affiliates. All rights reserved.
#
# $Id$
#
# TEST rep061
# TEST Test of internal initialization multiple files and pagesizes
# TEST with page gaps.
# TEST
# TEST One master, one client.
# TEST Generate several log files.
# TEST Remove old master log files.
# TEST Delete client files and restart client.
# TEST Put one more record to the master.
# TEST Force some page messages to get dropped.
#
proc rep061 { method { niter 500 } { tnum "061" } args } {
source ./include.tcl
global databases_in_memory
global repfiles_in_memory
# Run for btree and queue only.
if { $checking_valid_methods } {
set test_methods {}
foreach method $valid_methods {
if { [is_btree $method] == 1 || [is_queue $method] == 1 } {
lappend test_methods $method
}
}
return $test_methods
}
if { [is_btree $method] != 1 && [is_queue $method] != 1 } {
puts "Skipping rep061 for method $method."
return
}
set args [convert_args $method $args]
# This test needs to set its own pagesize.
set pgindex [lsearch -exact $args "-pagesize"]
if { $pgindex != -1 } {
puts "Rep$tnum: skipping for specific pagesizes"
return
}
set logsets [create_logsets 2]
# 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.
set opts { noclean clean bulk }
# Try varying drop percentages.
set dpct { 10 5 }
foreach r $test_recopts {
foreach c $opts {
foreach l $logsets {
foreach d $dpct {
set logindex [lsearch -exact $l \
"in-memory"]
if { $r == "-recover" && \
$logindex != -1 } {
puts "Skipping rep$tnum \
for -recover\
with in-memory logs."
continue
}
puts "Rep$tnum ($method $r $c):\
Internal initialization - with\
$d pct page gaps, $msg $msg2."
puts "Rep$tnum: Master logs are \
[lindex $l 0]"
puts "Rep$tnum: Client logs are \
[lindex $l 1]"
rep061_sub $method $niter $tnum \
$l $r $c $d $args
}
}
}
}
}
proc rep061_sub { method niter tnum logset recargs opts dpct largs } {
global testdir
global util_path
global drop drop_msg
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
replsetup $testdir/MSGQUEUEDIR
set masterdir $testdir/MASTERDIR
set clientdir $testdir/CLIENTDIR
file mkdir $masterdir
file mkdir $clientdir
# Log size is small so we quickly create more than one.
# The documentation says that the log file must be at least
# four times the size of the in-memory log buffer.
set maxpg 16384
set log_max [expr $maxpg * 8]
set cache [expr $maxpg * 32]
if { $repfiles_in_memory } {
set cache [expr ($maxpg * 32) + (3000 * 1024)]
}
set m_logtype [lindex $logset 0]
set c_logtype [lindex $logset 1]
# In-memory logs cannot be used with -txn nosync.
set m_txnargs [adjust_txnargs $m_logtype]
set c_txnargs [adjust_txnargs $c_logtype]
# Open a master.
repladd 1
set ma_envcmd "berkdb_env_noerr -create $m_txnargs $verbargs \
$repmemargs \
-log_max $log_max -cachesize { 0 $cache 1 } -errpfx MASTER \
-home $masterdir -rep_transport \[list 1 replsend\]"
set masterenv [eval $ma_envcmd $recargs -rep_master]
# Open a client
repladd 2
set cl_envcmd "berkdb_env_noerr -create $c_txnargs $verbargs \
$repmemargs \
-log_max $log_max -cachesize { 0 $cache 1 } -errpfx CLIENT \
-home $clientdir -rep_transport \[list 2 replsend\]"
set clientenv [eval $cl_envcmd $recargs -rep_client]
#
# Since we're dropping messages, set the rerequest values
# lower so we don't wait too long to request what we're
# missing.
#
#
# Set to 200/800 usecs. An average ping to localhost should
# be a few 10s usecs.
#
set conf [berkdb getconfig]
set small_rereq 1
if { [is_substr $conf "debug_rop"] && [is_queue $method] } {
set small_rereq 0
}
if { $small_rereq } {
$clientenv rep_request 200 800
} else {
$clientenv rep_request 20000 80000
}
# Bring the clients online by processing the startup messages.
set envlist "{$masterenv 1} {$clientenv 2}"
process_msgs $envlist
# Clobber replication's 30-second anti-archive timer, which will have
# been started by client sync-up internal init, so that we can do a
# log_archive in a moment.
#
$masterenv test force noarchive_timeout
#
# Note that by setting these 2 globals below, message dropping
# is automatically enabled. By setting 'drop' to 0, further
# down in the test, we disable message dropping.
#
set drop 1
set drop_msg [expr 100 / $dpct]
# Run rep_test in the master (and update client).
set startpgsz 512
set pglist ""
for { set pgsz $startpgsz } { $pgsz <= $maxpg } \
{ set pgsz [expr $pgsz * 2] } {
lappend pglist $pgsz
}
set nfiles [llength $pglist]
puts "\tRep$tnum.a.0: Running rep_test $nfiles times in replicated env."
set dbopen ""
for { set i 0 } { $i < $nfiles } { incr i } {
set mult [expr $i * 10]
set nentries [expr $niter + $mult]
set pagesize [lindex $pglist $i]
set largs " -pagesize $pagesize "
eval rep_test $method $masterenv NULL $nentries $mult $mult \
0 $largs
process_msgs $envlist
#
# Everytime we run 'rep_test' we create 'test.db'. So
# rename it each time through the loop.
#
set old "test.db"
set new "test.$i.db"
if { $databases_in_memory } {
error_check_good rename [$masterenv dbrename \
-auto_commit "" $old $new] 0
} else {
error_check_good rename [$masterenv dbrename \
-auto_commit $old $new] 0
}
process_msgs $envlist
#
# We want to keep some databases open so that we test the
# code finding the files in the data dir as well as finding
# them in dbreg list.
#
if { [expr $i % 2 ] == 0 } {
if { $databases_in_memory } {
set db [berkdb_open_noerr -env $masterenv "" $new]
} else {
set db [berkdb_open_noerr -env $masterenv $new]
}
error_check_good dbopen.$i [is_valid_db $db] TRUE
lappend dbopen $db
}
}
#
# Set up a few special databases too. We want one with a subdatabase
# and we want an empty database.
#
if { $databases_in_memory } {
set testfile { "" "test.db" }
set emptyfile { "" "empty.db" }
} else {
set testfile "test.db"
set emptyfile "empty.db"
}
if { [is_queue $method] } {
set sub ""
} else {
set sub "subdb"
}
set omethod [convert_method $method]
set largs " -pagesize $maxpg "
set largs [convert_args $method $largs]
#
# Create/close an empty database.
#
set db [eval {berkdb_open_noerr -env $masterenv -auto_commit -create \
-mode 0644} $largs $omethod $emptyfile]
error_check_good emptydb [is_valid_db $db] TRUE
error_check_good empty_close [$db close] 0
# If we're not using in-mem named databases, open a subdb and keep
# it open. (Do a regular db if method is queue.)
# We need it a few times later on.
#
if { $databases_in_memory } {
set db [eval {berkdb_open_noerr -env $masterenv -auto_commit\
-create -mode 0644} $largs $omethod $testfile]
} else {
set db [eval {berkdb_open_noerr -env $masterenv -auto_commit\
-create -mode 0644} $largs $omethod $testfile $sub]
}
error_check_good subdb [is_valid_db $db] TRUE
eval rep_test $method $masterenv $db $niter 0 0 0 $largs
process_msgs $envlist
puts "\tRep$tnum.b: Close client."
error_check_good client_close [$clientenv close] 0
#
# Run rep_test in the master (don't update client).
# Need to guarantee that we will change log files during
# this run so run with the largest pagesize and double
# the number of entries.
#
puts "\tRep$tnum.c: Running rep_test ( $largs) in replicated env."
set nentries [expr $niter * 2]
eval rep_test $method $masterenv $db $nentries 0 0 0 $largs
replclear 2
puts "\tRep$tnum.d: Run db_archive on master."
$masterenv log_flush
set res [eval exec $util_path/db_archive -l -h $masterdir]
error_check_bad log.1.present [lsearch -exact $res log.0000000001] -1
set res [eval exec $util_path/db_archive -d -h $masterdir]
set res [eval exec $util_path/db_archive -l -h $masterdir]
error_check_good log.1.gone [lsearch -exact $res log.0000000001] -1
puts "\tRep$tnum.e: Reopen client ($opts)."
if { $opts == "clean" } {
env_cleanup $clientdir
}
if { $opts == "bulk" } {
error_check_good bulk [$masterenv rep_config {bulk on}] 0
}
set clientenv [eval $cl_envcmd $recargs -rep_client]
error_check_good client_env [is_valid_env $clientenv] TRUE
#
# Since we are dropping frequent messages, we set the
# rerequest rate low to make sure the test finishes.
# Only do this for non-debug_rop because that generates
# so much traffic, it hangs the test with rerequests.
#
if { $small_rereq } {
$clientenv rep_request 200 800
} else {
$clientenv rep_request 20000 80000
}
set envlist "{$masterenv 1} {$clientenv 2}"
process_msgs $envlist 0 NONE err
set done 0
#
# We are done with this loop when the client has achieved
# startup_done and we've looped one more time after turning
# off dropping messages. Otherwise we might get a few
# straggling log records that don't make it over.
#
# Set a maximum iteration count because some methods can get
# into a state where if we're regularly dropping messages we
# can never catch up (queue) and we loop forever.
#
set iter 1
set max_drop_iter 200
if { $opts == "bulk" } {
#
# Since bulk is sending several messages at once we need to
# loop more times to allow rerequests to get through.
#
set max_drop_iter [expr $max_drop_iter * 2]
if { $small_rereq } {
$clientenv rep_request 100 400
} else {
$clientenv rep_request 10000 40000
}
}
while { $done == 0 } {
puts "\tRep$tnum.e.1.$iter: Trigger log request"
#
# When we don't clean, starting the client doesn't
# trigger any events. We need to generate some log
# records so that the client requests the missing
# logs and that will trigger it.
#
set entries 4
eval rep_test $method $masterenv $db $entries $niter 0 0 $largs
process_msgs $envlist 0 NONE err
set stat [exec $util_path/db_stat -N -r -R A -h $clientdir]
#
# Loop until we are done with the SYNC_PAGE phase.
#
set in_page [is_substr $stat "SYNC_PAGE"]
if { !$in_page || $iter >= $max_drop_iter } {
#
# If we're dropping, stop doing so.
# If we're not dropping, we're done.
#
if { $drop != 0 } {
set drop 0
} else {
set done 1
}
}
incr iter
}
error_check_good subdb_close [$db close] 0
#
# Stop dropping records, we've sent all the pages.
# We need to do that in order to make sure we get
# all the log records there and can accurately compare. Also, make sure
# enough time has passed so that the client's rep_request timer has
# expired, and make sure there are any messages to send to the client,
# so that there is something to trigger any needed final rerequest.
#
set drop 0
tclsleep 2
$masterenv txn_checkpoint -force
process_msgs $envlist 0 NONE err
puts "\tRep$tnum.f: Verify logs and databases"
#
# If doing bulk testing, turn it off now so that it forces us
# to flush anything currently in the bulk buffer. We need to
# do this because rep_test might have aborted a transaction on
# its last iteration and those log records would still be in
# the bulk buffer causing the log comparison to fail.
#
if { $opts == "bulk" } {
puts "\tRep$tnum.f.1: Turn off bulk transfers."
error_check_good bulk [$masterenv rep_config {bulk off}] 0
process_msgs $envlist 0 NONE err
}
rep_verify $masterdir $masterenv $clientdir $clientenv 1 1 1
for { set i 0 } { $i < $nfiles } { incr i } {
set dbname "test.$i.db"
rep_verify $masterdir $masterenv $clientdir $clientenv \
1 1 0 $dbname
}
#
# Close the database held open on master for initialization.
#
foreach db $dbopen {
error_check_good db_close [$db close] 0
}
# Add records to the master and update client.
puts "\tRep$tnum.g: Add more records and check again."
set entries 10
set db [eval {berkdb_open_noerr -env $masterenv -auto_commit \
-mode 0644} $largs $omethod $testfile $sub]
error_check_good subdb [is_valid_db $db] TRUE
eval rep_test $method $masterenv $db $entries $niter 0 0 $largs
error_check_good subdb_close [$db close] 0
process_msgs $envlist 0 NONE err
rep_verify $masterdir $masterenv $clientdir $clientenv 1 1 1
for { set i 0 } { $i < $nfiles } { incr i } {
set dbname "test.$i.db"
rep_verify $masterdir $masterenv $clientdir $clientenv \
1 1 0 $dbname
}
set bulkxfer [stat_field $masterenv rep_stat "Bulk buffer transfers"]
if { $opts == "bulk" } {
error_check_bad bulkxferon $bulkxfer 0
} else {
error_check_good bulkxferoff $bulkxfer 0
}
error_check_good masterenv_close [$masterenv close] 0
error_check_good clientenv_close [$clientenv close] 0
replclose $testdir/MSGQUEUEDIR
}
|