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
|
# See the file LICENSE for redistribution information.
#
# Copyright (c) 2001, 2013 Oracle and/or its affiliates. All rights reserved.
#
# $Id$
#
# TEST rep077
# TEST
# TEST Replication, recovery and applying log records immediately.
# TEST Master and 1 client. Start up both sites.
# TEST Close client and run rep_test on the master so that the
# TEST log record is the same LSN the client would be expecting.
# TEST Reopen client with recovery and verify the client does not
# TEST try to apply that "expected" record before it synchronizes
# TEST with the master.
#
proc rep077 { method { tnum "077"} args} {
source ./include.tcl
global databases_in_memory
global repfiles_in_memory
global env_private
# Valid for all access methods.
if { $checking_valid_methods } {
return "ALL"
}
set args [convert_args $method $args]
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"
}
set msg3 ""
if { $env_private } {
set msg3 "with private env"
}
foreach l $logsets {
puts "Rep$tnum ($method): Recovered client\
getting immediate log records $msg $msg2 $msg3."
puts "Rep$tnum: Master logs are [lindex $l 0]"
puts "Rep$tnum: Client logs are [lindex $l 1]"
rep077_sub $method $tnum $l $args
}
}
proc rep077_sub { method tnum logset largs} {
global testdir
global databases_in_memory
global repfiles_in_memory
global env_private
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 "
}
set privargs ""
if { $env_private == 1 } {
set privargs " -private "
}
set niter 5
env_cleanup $testdir
replsetup $testdir/MSGQUEUEDIR
set masterdir $testdir/MASTERDIR
set clientdir $testdir/CLIENTDIR
file mkdir $masterdir
file mkdir $clientdir
set m_logtype [lindex $logset 0]
set c_logtype [lindex $logset 1]
# In-memory logs cannot be used with -txn nosync.
set m_logargs [adjust_logargs $m_logtype]
set c_logargs [adjust_logargs $c_logtype]
set m_txnargs [adjust_txnargs $m_logtype]
set c_txnargs [adjust_txnargs $c_logtype]
# Open a master.
repladd 1
set env_cmd(M) "berkdb_env_noerr -create \
$verbargs $repmemargs $privargs \
-home $masterdir -errpfx MASTER -txn nosync -rep_master \
-rep_transport \[list 1 replsend\]"
set masterenv [eval $env_cmd(M)]
eval rep_test $method $masterenv NULL $niter 0 0 0 $largs
# Open a client
repladd 2
set env_cmd(C) "berkdb_env_noerr -create \
$verbargs $repmemargs $privargs \
-home $clientdir -errpfx CLIENT -txn nosync -rep_client \
-rep_transport \[list 2 replsend\]"
set clientenv [eval $env_cmd(C)]
puts "\tRep$tnum.a: Start up master and client."
# Bring the client online by processing the startup messages.
set envlist "{$masterenv 1} {$clientenv 2}"
process_msgs $envlist
puts "\tRep$tnum.b: Close client."
$clientenv close
#
# We want to run rep_test now and DO NOT replclear the
# messages for the closed client. We want to make sure
# that the first message the client sees upon restarting
# is a log record that exactly matches the current
# expected LSN.
#
puts "\tRep$tnum.c: Run rep_test on master with client closed."
#
# Move it forward by sending in niter as start and skip.
#
eval rep_test $method $masterenv NULL $niter $niter $niter 0 $largs
# We need to reopen with recovery to blow away our idea of
# who the master is, because this client will start up with
# the right generation number and the ready_lsn will be
# set to the right value for the first log record to apply.
#
# However, this client is running recovery and will have
# written its own recovery log records. So, until this
# client finds and synchronizes with the master after
# restarting, its ready_lsn and lp->lsn will not be
# in sync and this client better not try to apply the records.
#
puts "\tRep$tnum.d: Restart client with recovery and process messages."
set clientenv [eval $env_cmd(C) -recover]
set envlist "{$masterenv 1} {$clientenv 2}"
process_msgs $envlist
#
# If we didn't crash at this point, we're okay.
#
$masterenv close
$clientenv close
replclose $testdir/MSGQUEUEDIR
}
|