balance_replica1.sim 3.0 KB
Newer Older
S
slguan 已提交
1
system sh/stop_dnodes.sh
S
slguan 已提交
2 3
system sh/deploy.sh -n dnode1 -i 1
system sh/deploy.sh -n dnode2 -i 2
S
slguan 已提交
4 5 6 7
system sh/cfg.sh -n dnode1 -c numOfTotalVnodes -v 4
system sh/cfg.sh -n dnode2 -c numOfTotalVnodes -v 4
system sh/cfg.sh -n dnode1 -c statusInterval -v 1
system sh/cfg.sh -n dnode2 -c statusInterval -v 1
S
slguan 已提交
8 9
system sh/cfg.sh -n dnode1 -c balanceInterval -v 10
system sh/cfg.sh -n dnode2 -c balanceInterval -v 10
S
scripts  
Shengliang Guan 已提交
10 11
system sh/cfg.sh -n dnode1 -c walLevel -v 2
system sh/cfg.sh -n dnode2 -c walLevel -v 2
S
Shengliang Guan 已提交
12 13
system sh/cfg.sh -n dnode1 -c mnodeEqualVnodeNum -v 0
system sh/cfg.sh -n dnode2 -c mnodeEqualVnodeNum -v 0
S
scripts  
slguan 已提交
14 15
system sh/cfg.sh -n dnode1 -c maxtablesPerVnode -v 4
system sh/cfg.sh -n dnode2 -c maxtablesPerVnode -v 4
S
slguan 已提交
16 17 18 19 20 21 22 23 24 25

$dbPrefix = br1_db
$tbPrefix = br1_tb
$mtPrefix = br1_mt
$tbNum = 13
$rowNum = 200
$totalNum = 200

print ============== step1
print ========= start dnode1
S
Shengliang Guan 已提交
26
system sh/exec.sh -n dnode1 -s start
S
slguan 已提交
27 28 29 30 31 32 33
sql connect

$i = 0
$db = $dbPrefix
$mt = $mtPrefix
$st = $stPrefix . $i

S
scripts  
slguan 已提交
34
sql create database $db maxTables 4
S
slguan 已提交
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
sql use $db
sql create table $mt (ts timestamp, tbcol int, tbcol2 float) TAGS(tgcol int)

$i = 0
while $i < $tbNum
  $tb = $tbPrefix . $i
  sql create table $tb using $mt tags( $i )
  
  $x = 0
  $y = 0
  while $y < $rowNum
    $val = $x * 60000
    $ms = 1519833600000 + $val 
    sql insert into $tb values ($ms , $y , $y ) 
    $x = $x + 1
    $y = $y + 1
  endw 
 
  $i = $i + 1
endw 

sleep 100

print =============== step2

$x = 0
show1: 
	$x = $x + 1
S
scripts  
Shengliang Guan 已提交
63 64
	sleep 2000
	if $x == 10 then 
S
slguan 已提交
65 66 67
	  return -1
	endi
sql show dnodes -x show1
S
scripts  
Shengliang Guan 已提交
68
$dnode1Vnodes = $data2_1
S
slguan 已提交
69
print dnode1 $dnode1Vnodes
S
scripts  
Shengliang Guan 已提交
70
$dnode2Vnodes = $data2_2
S
slguan 已提交
71
print dnode2 $dnode2Vnodes
S
slguan 已提交
72

S
scripts  
Shengliang Guan 已提交
73
if $dnode1Vnodes != 4 then
S
slguan 已提交
74 75
  goto show1
endi
S
scripts  
Shengliang Guan 已提交
76
if $dnode2Vnodes != null then
S
slguan 已提交
77 78 79
  goto show1
endi
print =============== step3 start dnode2
S
slguan 已提交
80
sql create dnode $hostname2
S
Shengliang Guan 已提交
81
system sh/exec.sh -n dnode2 -s start
S
slguan 已提交
82 83 84 85 86 87 88 89 90 91
sleep 8000

$x = 0
show2: 
	$x = $x + 1
	sleep 2000
	if $x == 10 then 
	  return -1
	endi
sql show dnodes -x show2
S
scripts  
Shengliang Guan 已提交
92
$dnode1Vnodes = $data2_1
S
slguan 已提交
93
print dnode1 $dnode1Vnodes
S
scripts  
Shengliang Guan 已提交
94
$dnode2Vnodes = $data2_2
S
slguan 已提交
95
print dnode2 $dnode2Vnodes
S
slguan 已提交
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135

if $dnode1Vnodes != 2 then
  goto show2
endi
if $dnode2Vnodes != 2 then
  goto show2
endi


print =============== step4
$i = 1
$tb = $tbPrefix . $i
sql select * from $tb
print select * from $tb ==> $rows
if $rows != 200 then
  return -1
endi

$i = 5
$tb = $tbPrefix . $i
sql select * from $tb
print select * from $tb ==> $rows
if $rows != 200 then
  return -1
endi

$i = 8
$tb = $tbPrefix . $i
$st = $stPrefix . $i
sql select * from $tb
print select * from $tb ==> $rows
if $rows != 200 then
  return -1
endi

print =============== step5
sql select * from $mt
print select * from $mt ==> $rows
if $rows != 2600 then
  return -1
guanshengliang's avatar
scripts  
guanshengliang 已提交
136 137
endi

S
Shengliang Guan 已提交
138 139 140 141 142 143 144 145
system sh/exec.sh -n dnode1 -s stop  -x SIGINT
system sh/exec.sh -n dnode2 -s stop  -x SIGINT
system sh/exec.sh -n dnode3 -s stop  -x SIGINT
system sh/exec.sh -n dnode4 -s stop  -x SIGINT
system sh/exec.sh -n dnode5 -s stop  -x SIGINT
system sh/exec.sh -n dnode6 -s stop  -x SIGINT
system sh/exec.sh -n dnode7 -s stop  -x SIGINT
system sh/exec.sh -n dnode8 -s stop  -x SIGINT