monitor_bug.sim 1.3 KB
Newer Older
S
slguan 已提交
1 2
system sh/stop_dnodes.sh

S
slguan 已提交
3 4
system sh/deploy.sh -n dnode1 -i 1
system sh/deploy.sh -n dnode2 -i 2
S
slguan 已提交
5

S
Shengliang Guan 已提交
6 7
system sh/cfg.sh -n dnode1 -c mnodeEqualVnodeNum -v 4
system sh/cfg.sh -n dnode2 -c mnodeEqualVnodeNum -v 4
S
slguan 已提交
8

S
scripts  
slguan 已提交
9 10
system sh/cfg.sh -n dnode1 -c wallevel -v 1
system sh/cfg.sh -n dnode2 -c wallevel -v 1
S
slguan 已提交
11 12 13 14 15

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

print ========== step1
S
Shengliang Guan 已提交
16
system sh/exec.sh -n dnode1 -s start
S
slguan 已提交
17 18 19 20
sql connect
sleep 5000

sql show dnodes
S
TD-2147  
Shengliang Guan 已提交
21 22
print dnode1 openVnodes $data2_1
if $data2_1 != 1 then
S
slguan 已提交
23 24 25 26
	return -1
endi

print ========== step2
S
slguan 已提交
27
sql create dnode $hostname2
S
Shengliang Guan 已提交
28
system sh/exec.sh -n dnode2 -s start
S
slguan 已提交
29 30 31 32 33

$x = 0
show2: 
	$x = $x + 1
	sleep 2000
S
TD-2147  
Shengliang Guan 已提交
34
	if $x == 10 then
S
slguan 已提交
35 36 37 38
		return -1
	endi
	
sql show dnodes
S
TD-2147  
Shengliang Guan 已提交
39 40 41
print dnode1 openVnodes $data2_1
print dnode2 openVnodes $data2_2
if $data2_1 != 0 then
S
slguan 已提交
42 43
	goto show2
endi
S
TD-2147  
Shengliang Guan 已提交
44
if $data2_2 != 1 then
S
slguan 已提交
45 46 47 48 49 50 51 52 53 54 55 56 57
	goto show2
endi

print ========== step3
sql show log.tables

print $data00
print $data10
print $data20
print $data30
print $data40
print $data50

S
TD-2147  
Shengliang Guan 已提交
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
if $rows != 4 then
	return -1
endi

print ========== step4
sql select * from log.dn1
print $rows
$rows1 = $rows

sleep 3000
sql select * from log.dn1
print $rows
$rows2 = $rows

if $rows2 <= $rows1 then
S
slguan 已提交
73 74
	return -1
endi
S
TD-2147  
Shengliang Guan 已提交
75 76 77

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