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

S
slguan 已提交
3 4 5 6


system sh/deploy.sh -n dnode1 -i 1
system sh/deploy.sh -n dnode2 -i 2
S
slguan 已提交
7 8 9 10
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 已提交
11 12
system sh/cfg.sh -n dnode1 -c balanceInterval -v 10
system sh/cfg.sh -n dnode2 -c balanceInterval -v 10
H
hjxilinx 已提交
13 14
system sh/cfg.sh -n dnode1 -c walLevel -v 0
system sh/cfg.sh -n dnode2 -c walLevel -v 0
S
slguan 已提交
15 16
system sh/cfg.sh -n dnode1 -c mgmtEqualVnodeNum -v 0
system sh/cfg.sh -n dnode2 -c mgmtEqualVnodeNum -v 0
S
scripts  
slguan 已提交
17 18
system sh/cfg.sh -n dnode1 -c maxtablesPerVnode -v 4
system sh/cfg.sh -n dnode2 -c maxtablesPerVnode -v 4
S
slguan 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36

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

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

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

S
scripts  
slguan 已提交
37
sql create database $db maxTables 4
S
slguan 已提交
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 63 64 65 66 67 68 69 70 71
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
	sleep 1000
	if $x == 20 then 
	  return -1
	endi
sql show dnodes -x show1
$dnode1Vnodes = $data3_192.168.0.1
S
slguan 已提交
72
print dnode1 $dnode1Vnodes
S
slguan 已提交
73
$dnode2Vnodes = $data3_192.168.0.2
S
slguan 已提交
74
print dnode2 $dnode2Vnodes
S
slguan 已提交
75 76 77 78

if $dnode1Vnodes != 0 then
  goto show1
endi
79
if $dnode2Vnodes != NULL then
S
slguan 已提交
80 81 82
  goto show1
endi
print =============== step3 start dnode2
S
slguan 已提交
83
sql create dnode $hostname2
S
slguan 已提交
84 85 86 87 88 89 90 91 92 93 94 95
system sh/exec.sh -n dnode2 -s start
sleep 8000

$x = 0
show2: 
	$x = $x + 1
	sleep 2000
	if $x == 10 then 
	  return -1
	endi
sql show dnodes -x show2
$dnode1Vnodes = $data3_192.168.0.1
S
slguan 已提交
96
print dnode1 $dnode1Vnodes
S
slguan 已提交
97
$dnode2Vnodes = $data3_192.168.0.2
S
slguan 已提交
98
print dnode2 $dnode2Vnodes
S
slguan 已提交
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 136 137 138

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 已提交
139 140 141 142 143 144 145 146 147 148
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