blob: bb7d6b87a9e2a158cf5b2b2b12642a75c1b4f321 (
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
|
# See the file LICENSE for redistribution information.
#
# Copyright (c) 2009, 2015 Oracle and/or its affiliates. All rights reserved.
#
# TEST repmgr108
# TEST Subordinate connections and processes should not trigger elections.
proc repmgr108 { } {
source ./include.tcl
set tnum "108"
puts "Repmgr$tnum: Subordinate\
connections should not trigger elections."
env_cleanup $testdir
foreach {mport cport} [available_ports 2] {}
file mkdir [set mdir $testdir/MASTER]
file mkdir [set cdir $testdir/CLIENT]
make_dbconfig $mdir \
[list [list repmgr_site 127.0.0.1 $mport db_local_site on]]
make_dbconfig $cdir \
[list [list repmgr_site 127.0.0.1 $cport db_local_site on] \
[list repmgr_site 127.0.0.1 $mport db_bootstrap_helper on]]
puts "\tRepmgr$tnum.a: Set up a pair of sites, two processes on master."
set cmds {
"home $mdir"
"output $testdir/m1output"
"open_env"
"start master"
}
set m1 [open_site_prog [subst $cmds]]
#
# It is most common to start a subordinate process with the same start
# value as the main replication process, but test here that we also
# accept "start none", which supplies flags=0 to repmgr_start().
#
set cmds {
"home $mdir"
"output $testdir/m2output"
"open_env"
"start none"
}
set m2 [open_site_prog [subst $cmds]]
set cmds {
"home $cdir"
"output $testdir/c1output"
"open_env"
"start client"
}
set c1 [open_site_prog [subst $cmds]]
set cenv [berkdb_env -home $cdir]
await_startup_done $cenv
puts "\tRepmgr$tnum.b: Stop master's subordinate process (pause)."
close $m2
# Pause to let client notice the connection loss.
tclsleep 3
# We should see no elections ever having been started when master
# subordinate process quits.
#
set election_count [stat_field $cenv rep_stat "Elections held"]
puts "\tRepmgr$tnum.c: Check election count ($election_count)."
error_check_good no_elections $election_count 0
$cenv close
close $c1
close $m1
}
|