mgmt20.sim 1.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
system sh/stop_dnodes.sh
system sh/deploy.sh -n dnode1 -i 1
system sh/deploy.sh -n dnode2 -i 2

system sh/cfg.sh -n dnode1 -c numOfMnodes -v 2
system sh/cfg.sh -n dnode2 -c numOfMnodes -v 2

system sh/cfg.sh -n dnode1 -c monitor -v 1
system sh/cfg.sh -n dnode2 -c monitor -v 1

print ============== step1
system sh/exec.sh -n dnode1 -s start
system sh/exec.sh -n dnode2 -s start
sql connect

print ============== step2
sql create dnode $hostname2

$x = 0
show2: 
	$x = $x + 1
S
Shengliang Guan 已提交
22 23
	sleep 1000
	if $x == 20 then 
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
		return -1
	endi
	
sql show mnodes
print dnode1 ==> $data2_1
print dnode2 ==> $data2_2
if $data2_1 != master then
	goto show2
endi
if $data2_2 != slave then
	goto show2
endi

system sh/exec.sh -n dnode1 -s stop  -x SIGINT
system sh/exec.sh -n dnode2 -s stop  -x SIGINT

print ============== step3
system sh/exec.sh -n dnode2 -s start
sleep 10000

system sh/exec.sh -n dnode1 -s start
sql connect

print =============== step4
S
Shengliang Guan 已提交
48
sql select * from log.dn1
49
$d1_first  = $rows
S
Shengliang Guan 已提交
50
sql select * from log.dn2
51 52
$d2_first  = $rows

S
TD-2616  
Shengliang Guan 已提交
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
$x = 0
show4: 
	$x = $x + 1
	sleep 1000
	if $x == 20 then 
		return -1
	endi
	
sql show mnodes
print dnode1 ==> $data2_1
print dnode2 ==> $data2_2
if $data2_1 != master then
	goto show4
endi
if $data2_2 != slave then
	goto show4
endi

71
sleep 3000
S
Shengliang Guan 已提交
72
sql select * from log.dn1
73
$d1_second  = $rows
S
Shengliang Guan 已提交
74
sql select * from log.dn2
75 76 77
$d2_second  = $rows

print dnode1 $d1_first $d1_second
S
Shengliang Guan 已提交
78
print dnode2 $d2_first $d2_second
79 80 81 82
if $d1_first >= $d1_second then
  return -1
endi

S
Shengliang Guan 已提交
83
if $d2_first >= $d2_second then
84 85 86 87 88
  return -1
endi

system sh/exec.sh -n dnode1 -s stop  -x SIGINT
system sh/exec.sh -n dnode2 -s stop  -x SIGINT