mgmt21.sim 823 字节
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
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

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

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

sql show mnodes
print dnode1 ==> $data2_1
print dnode2 ==> $data2_2
if $data2_1 != master then
  return -1
endi

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

$x = 0
show2: 
	$x = $x + 1
S
TD-1671  
Shengliang Guan 已提交
28
	sleep 2000
S
TD-1671  
Shengliang Guan 已提交
29
	if $x == 5 then 
30 31 32
		return -1
	endi
	
S
TD-1671  
Shengliang Guan 已提交
33
sql show mnodes -x show2
34 35 36 37 38 39 40 41 42 43 44
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