balance.sim 6.4 KB
Newer Older
S
slguan 已提交
1
system sh/stop_dnodes.sh
S
slguan 已提交
2
system sh/deploy.sh -n dnode1 -i 1
S
slguan 已提交
3
system sh/cfg.sh -n dnode1 -c numOfTotalVnodes -v 4
S
scripts  
slguan 已提交
4
system sh/cfg.sh -n dnode1 -c maxtablesPerVnode -v 1000
S
slguan 已提交
5

S
slguan 已提交
6
system sh/deploy.sh -n dnode2 -i 2
S
slguan 已提交
7
system sh/cfg.sh -n dnode2 -c numOfTotalVnodes -v 4
S
scripts  
slguan 已提交
8
system sh/cfg.sh -n dnode2 -c maxtablesPerVnode -v 1000
S
slguan 已提交
9

S
slguan 已提交
10
system sh/deploy.sh -n dnode3 -i 3
S
slguan 已提交
11
system sh/cfg.sh -n dnode3 -c numOfTotalVnodes -v 4
S
scripts  
slguan 已提交
12
system sh/cfg.sh -n dnode3 -c maxtablesPerVnode -v 1000
S
slguan 已提交
13

S
slguan 已提交
14
system sh/deploy.sh -n dnode4 -i 4
S
slguan 已提交
15
system sh/cfg.sh -n dnode4 -c numOfTotalVnodes -v 4
S
scripts  
slguan 已提交
16
system sh/cfg.sh -n dnode4 -c maxtablesPerVnode -v 1000
S
slguan 已提交
17

S
slguan 已提交
18
system sh/deploy.sh -n dnode5 -i 5
S
slguan 已提交
19
system sh/cfg.sh -n dnode5 -c numOfTotalVnodes -v 4
S
scripts  
slguan 已提交
20
system sh/cfg.sh -n dnode5 -c maxtablesPerVnode -v 1000
S
slguan 已提交
21 22

print =============== prepare data
S
scripts  
Shengliang Guan 已提交
23
system sh/exec_up.sh -n dnode1 -s start
S
slguan 已提交
24 25 26 27 28 29 30 31 32 33 34 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 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
sleep 3000
sql connect

$i = 0
$tbNum = 4000
$rowNum = 1
$totalNum = 4000 * $rowNum

sql create database db
sql use db
sql create table mt (ts timestamp, tbcol int, tbcol2 float) TAGS(tgcol int)

$i = 0
$tbPrefix = t
while $i < $tbNum
  $tb = $tbPrefix . $i
  sql create table $tb using mt tags( $i ) 
  $i = $i + 1
endw 

$i = 0
while $i < $tbNum
  $tb = $tbPrefix . $i
  sql insert into $tb values (now, $i , $i ) 
  
  $i = $i + 1
endw 

print ========== step0
sql show db.tables
if $rows != 4000 then
  return -1
endi

sql select count(*) from t10
print select count(*) from t10 $data00 expect $rowNum 
if $data00 != $rowNum then
  return -1
endi

sql select count(*) from t1010
print select count(*) from t1010 $data00 expect $rowNum 
if $data00 != $rowNum then
  return -1
endi

sql select count(*) from t2010
print select count(*) from t2010 $data00 expect $rowNum 
if $data00 != $rowNum then
  return -1
endi

sql select count(*) from t3010
print select count(*) from t3010 $data00 expect $rowNum 
if $data00 != $rowNum then
  return -1
endi

sql select count(*) from mt
print select count(*) from mt $data00 expect $rowNum 
if $data00 != $totalNum then
  return -1
endi

print ========== step1
S
slguan 已提交
89
sql create dnode $hostname2
S
scripts  
Shengliang Guan 已提交
90
system sh/exec_up.sh -n dnode2 -s start
S
slguan 已提交
91 92 93 94 95 96 97 98 99 100

$x = 0
show1: 
	$x = $x + 1
	sleep 3000
	if $x == 100 then 
		return -1
	endi
	
sql show dnodes
S
scripts  
Shengliang Guan 已提交
101 102 103
print dnode1 openvnodes $data2_1
print dnode2 openvnodes $data2_2
if $data2_1 != 2 then
S
slguan 已提交
104 105
	goto show1
endi
S
scripts  
Shengliang Guan 已提交
106
if $data2_2 != 2 then
S
slguan 已提交
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 139 140
	goto show1
endi

sql select count(*) from t10
print select count(*) from t10 $data00 expect $rowNum 
if $data00 != $rowNum then
  goto show1
endi

sql select count(*) from t1010
print select count(*) from t1010 $data00 expect $rowNum 
if $data00 != $rowNum then
  goto show1
endi

sql select count(*) from t2010
print select count(*) from t2010 $data00 expect $rowNum 
if $data00 != $rowNum then
  goto show1
endi

sql select count(*) from t3010
print select count(*) from t3010 $data00 expect $rowNum 
if $data00 != $rowNum then
  goto show1
endi

sql select count(*) from mt
print select count(*) from mt $data00 expect $rowNum 
if $data00 != $totalNum then
  goto show1
endi

print ========== step2
S
slguan 已提交
141
sql create dnode $hostname3
S
scripts  
Shengliang Guan 已提交
142
system sh/exec_up.sh -n dnode3 -s start
S
slguan 已提交
143 144 145
sleep 10000

print ========== step3
S
slguan 已提交
146
sql drop dnode $hostname2
S
slguan 已提交
147 148 149 150 151 152 153 154 155 156

$x = 0
show3: 
	$x = $x + 1
	sleep 3000
	if $x == 100 then 
		return -1
	endi
	
sql show dnodes
S
scripts  
Shengliang Guan 已提交
157 158 159 160
print dnode1 freeVnodes $data2_1
print dnode2 freeVnodes $data2_2
print dnode3 freeVnodes $data2_3
if $data2_1 != 2 then
S
slguan 已提交
161 162
	goto show3
endi
S
scripts  
Shengliang Guan 已提交
163
if $data2_2 != NULL then
S
slguan 已提交
164 165
	goto show3
endi
S
scripts  
Shengliang Guan 已提交
166
if $data2_3 != 2 then
S
slguan 已提交
167 168 169
	goto show3
endi

S
scripts  
Shengliang Guan 已提交
170
system sh/exec_up.sh -n dnode2 -s stop -x SIGINT
S
slguan 已提交
171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202

sql select count(*) from t10
print select count(*) from t10 $data00 expect $rowNum 
if $data00 != $rowNum then
  return -1
endi

sql select count(*) from t1010
print select count(*) from t1010 $data00 expect $rowNum 
if $data00 != $rowNum then
  return -1
endi

sql select count(*) from t2010
print select count(*) from t2010 $data00 expect $rowNum 
if $data00 != $rowNum then
  return -1
endi

sql select count(*) from t3010
print select count(*) from t3010 $data00 expect $rowNum 
if $data00 != $rowNum then
  return -1
endi

sql select count(*) from mt
print select count(*) from mt $data00 expect $rowNum 
if $data00 != $totalNum then
  return -1
endi

print ========== step4
S
slguan 已提交
203
sql drop dnode $hostname3
S
slguan 已提交
204 205 206 207 208 209 210 211 212 213

$x = 0
show4: 
	$x = $x + 1
	sleep 3000
	if $x == 100 then 
		return -1
	endi
	
sql show dnodes
S
scripts  
Shengliang Guan 已提交
214 215 216
print dnode1 freeVnodes $data2_1
print dnode3 freeVnodes $data2_3
if $data2_1 != 0 then
S
slguan 已提交
217 218
	goto show4
endi
S
scripts  
Shengliang Guan 已提交
219
if $data2_3 != NULL then
S
slguan 已提交
220 221 222
	goto show4
endi

S
scripts  
Shengliang Guan 已提交
223
system sh/exec_up.sh -n dnode3 -s stop -x SIGINT
S
slguan 已提交
224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256

sql select count(*) from t10
print select count(*) from t10 $data00 expect $rowNum 
if $data00 != $rowNum then
  return -1
endi

sql select count(*) from t1010
print select count(*) from t1010 $data00 expect $rowNum 
if $data00 != $rowNum then
  return -1
endi

sql select count(*) from t2010
print select count(*) from t2010 $data00 expect $rowNum 
if $data00 != $rowNum then
  return -1
endi

sql select count(*) from t3010
print select count(*) from t3010 $data00 expect $rowNum 
if $data00 != $rowNum then
  return -1
endi

sql select count(*) from mt
print select count(*) from mt $data00 expect $rowNum 
if $data00 != $totalNum then
  return -1
endi

print ========== step5
sql alter database db replica 2
S
slguan 已提交
257
sql create dnode $hostname4
S
scripts  
Shengliang Guan 已提交
258
system sh/exec_up.sh -n dnode4 -s start
S
slguan 已提交
259 260 261 262 263 264 265 266 267 268

$x = 0
show5: 
	$x = $x + 1
	sleep 3000
	if $x == 100 then 
		return -1
	endi
	
sql show dnodes
S
scripts  
Shengliang Guan 已提交
269 270 271
print dnode1 freeVnodes $data2_1
print dnode4 freeVnodes $data2_4
if $data2_1 != 0 then
S
slguan 已提交
272 273
	goto show5
endi
S
scripts  
Shengliang Guan 已提交
274
if $data2_4 != 0 then
S
slguan 已提交
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306
	goto show5
endi

sql select count(*) from t10
print select count(*) from t10 $data00 expect $rowNum 
if $data00 != $rowNum then
  goto show5
endi

sql select count(*) from t1010
print select count(*) from t1010 $data00 expect $rowNum 
if $data00 != $rowNum then
  goto show5
endi

sql select count(*) from t2010
print select count(*) from t2010 $data00 expect $rowNum 
if $data00 != $rowNum then
  goto show5
endi

sql select count(*) from t3010
print select count(*) from t3010 $data00 expect $rowNum 
if $data00 != $rowNum then
  goto show5
endi

sql select count(*) from mt
print select count(*) from mt $data00 expect $rowNum 
if $data00 != $totalNum then
  goto show5
endi
guanshengliang's avatar
scripts  
guanshengliang 已提交
307 308 309 310 311 312 313 314 315

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