balance.sim 6.6 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
Shengliang Guan 已提交
23
system sh/exec.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
Shengliang Guan 已提交
90
system sh/exec.sh -n dnode2 -s start
S
slguan 已提交
91 92 93 94 95

$x = 0
show1: 
	$x = $x + 1
	sleep 3000
S
scripts  
Shengliang Guan 已提交
96
	if $x == 10 then 
S
slguan 已提交
97 98 99 100
		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
	goto show1
endi

S
scripts  
Shengliang Guan 已提交
110 111 112
sql reset query cache
sleep 1000

S
slguan 已提交
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 141 142 143
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 已提交
144
sql create dnode $hostname3
S
Shengliang Guan 已提交
145
system sh/exec.sh -n dnode3 -s start
S
slguan 已提交
146 147 148
sleep 10000

print ========== step3
S
slguan 已提交
149
sql drop dnode $hostname2
S
slguan 已提交
150 151 152 153 154

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

S
Shengliang Guan 已提交
173
system sh/exec.sh -n dnode2 -s stop -x SIGINT
S
scripts  
Shengliang Guan 已提交
174
sleep 5000
S
slguan 已提交
175

S
scripts  
Shengliang Guan 已提交
176 177 178
sql reset query cache
sleep 1000

S
slguan 已提交
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
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 已提交
210
sql drop dnode $hostname3
S
slguan 已提交
211 212 213 214 215

$x = 0
show4: 
	$x = $x + 1
	sleep 3000
S
scripts  
Shengliang Guan 已提交
216
	if $x == 10 then 
S
slguan 已提交
217 218 219 220
		return -1
	endi
	
sql show dnodes
S
scripts  
Shengliang Guan 已提交
221 222
print dnode1 freeVnodes $data2_1
print dnode3 freeVnodes $data2_3
S
scripts  
Shengliang Guan 已提交
223
if $data2_1 != 4 then
S
slguan 已提交
224 225
	goto show4
endi
S
scripts  
Shengliang Guan 已提交
226
if $data2_3 != null then
S
slguan 已提交
227 228 229
	goto show4
endi

S
Shengliang Guan 已提交
230
system sh/exec.sh -n dnode3 -s stop -x SIGINT
S
scripts  
Shengliang Guan 已提交
231
sleep 5000
S
slguan 已提交
232

S
scripts  
Shengliang Guan 已提交
233 234 235
sql reset query cache
sleep 1000

S
slguan 已提交
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
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
S
Shengliang Guan 已提交
267
system sh/exec.sh -n dnode4 -s start
S
scripts  
Shengliang Guan 已提交
268 269 270 271
sql create dnode $hostname4

sleep 3000
sql alter database db replica 2
S
slguan 已提交
272 273 274 275 276

$x = 0
show5: 
	$x = $x + 1
	sleep 3000
S
scripts  
Shengliang Guan 已提交
277
	if $x == 10 then 
S
slguan 已提交
278 279 280 281
		return -1
	endi
	
sql show dnodes
S
scripts  
Shengliang Guan 已提交
282 283
print dnode1 freeVnodes $data2_1
print dnode4 freeVnodes $data2_4
S
scripts  
Shengliang Guan 已提交
284
if $data2_1 != 4 then
S
slguan 已提交
285 286
	goto show5
endi
S
scripts  
Shengliang Guan 已提交
287
if $data2_4 != 4 then
S
slguan 已提交
288 289 290
	goto show5
endi

S
scripts  
Shengliang Guan 已提交
291 292 293
sql reset query cache
sleep 1000

S
slguan 已提交
294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322
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 已提交
323

S
Shengliang Guan 已提交
324 325 326 327 328 329 330 331
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