44 lines
1.0 KiB
Plaintext
44 lines
1.0 KiB
Plaintext
system sh/stop_dnodes.sh
|
|
system sh/deploy.sh -n dnode1 -i 1
|
|
system sh/deploy.sh -n dnode2 -i 2
|
|
|
|
print ========== step1 dnode2 start
|
|
system sh/exec_up.sh -n dnode2 -s start
|
|
sql connect
|
|
|
|
print ========== step2 connect to dnode2
|
|
sql create dnode $hostname1
|
|
system sh/exec_up.sh -n dnode1 -s start
|
|
sleep 3000
|
|
|
|
print ========== step3
|
|
sql show dnodes
|
|
print dnode1 openvnodes $data3_1
|
|
print dnode2 openvnodes $data3_2
|
|
print dnode1 totalvnodes $data4_1
|
|
print dnode2 totalvnodes $data4_2
|
|
|
|
if $rows != 2 then
|
|
return -1
|
|
endi
|
|
if $data3_1 != 0 then
|
|
return -1
|
|
endi
|
|
if $data3_2 != 0 then
|
|
return -1
|
|
endi
|
|
if $data4_1 != 4 then
|
|
return -1
|
|
endi
|
|
if $data4_2 != 4 then
|
|
return -1
|
|
endi
|
|
|
|
system sh/exec_up.sh -n dnode1 -s stop -x SIGINT
|
|
system sh/exec_up.sh -n dnode2 -s stop -x SIGINT
|
|
system sh/exec_up.sh -n dnode3 -s stop -x SIGINT
|
|
system sh/exec_up.sh -n dnode4 -s stop -x SIGINT
|
|
system sh/exec_up.sh -n dnode5 -s stop -x SIGINT
|
|
system sh/exec_up.sh -n dnode6 -s stop -x SIGINT
|
|
system sh/exec_up.sh -n dnode7 -s stop -x SIGINT
|
|
system sh/exec_up.sh -n dnode8 -s stop -x SIGINT |