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
sql connect
H
Haojun Liao 已提交
18
sleep 3000
S
slguan 已提交
19 20

sql show dnodes
S
TD-2147  
Shengliang Guan 已提交
21
print dnode1 openVnodes $data2_1
G
Ganlin Zhao 已提交
22
if $data2_1 > 4 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

$x = 0
G
Ganlin Zhao 已提交
31
show2:
S
slguan 已提交
32 33
	$x = $x + 1
	sleep 2000
S
TD-2147  
Shengliang Guan 已提交
34
	if $x == 10 then
S
slguan 已提交
35 36
		return -1
	endi
G
Ganlin Zhao 已提交
37

S
slguan 已提交
38
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
G
Ganlin Zhao 已提交
44
if $data2_2 > 4 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

G
Ganlin Zhao 已提交
58
if $rows > 14 then
S
TD-2147  
Shengliang Guan 已提交
59 60 61 62 63 64 65 66
	return -1
endi

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

H
Haojun Liao 已提交
67
sleep 2000
S
TD-2147  
Shengliang Guan 已提交
68 69 70 71 72
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

system sh/exec.sh -n dnode1 -s stop  -x SIGINT
G
Ganlin Zhao 已提交
77
system sh/exec.sh -n dnode2 -s stop  -x SIGINT