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
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 53
$d2_first  = $rows

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

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

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

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