mgmt20.sim 1.4 KB
Newer Older
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
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
sleep 3000
sql connect

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

$x = 0
show2: 
	$x = $x + 1
	sleep 2000
	if $x == 10 then 
		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 已提交
49
sql select * from log.dn1
50
$d1_first  = $rows
S
Shengliang Guan 已提交
51
sql select * from log.dn2
52 53 54
$d2_first  = $rows

sleep 3000
S
Shengliang Guan 已提交
55
sql select * from log.dn1
56
$d1_second  = $rows
S
Shengliang Guan 已提交
57
sql select * from log.dn2
58 59 60
$d2_second  = $rows

print dnode1 $d1_first $d1_second
S
Shengliang Guan 已提交
61
print dnode2 $d2_first $d2_second
62 63 64 65
if $d1_first >= $d1_second then
  return -1
endi

S
Shengliang Guan 已提交
66
if $d2_first >= $d2_second then
67 68 69 70 71
  return -1
endi

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