balance.sim 6.8 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  
Shengliang Guan 已提交
4 5
system sh/cfg.sh -n dnode1 -c maxVgroupsPerDb -v 4
system sh/cfg.sh -n dnode1 -c maxTablesPerVnode -v 1000
S
slguan 已提交
6

S
slguan 已提交
7
system sh/deploy.sh -n dnode2 -i 2
S
slguan 已提交
8
system sh/cfg.sh -n dnode2 -c numOfTotalVnodes -v 4
S
scripts  
Shengliang Guan 已提交
9 10
system sh/cfg.sh -n dnode2 -c maxVgroupsPerDb -v 4
system sh/cfg.sh -n dnode2 -c maxTablesPerVnode -v 1000
S
slguan 已提交
11

S
slguan 已提交
12
system sh/deploy.sh -n dnode3 -i 3
S
slguan 已提交
13
system sh/cfg.sh -n dnode3 -c numOfTotalVnodes -v 4
S
scripts  
Shengliang Guan 已提交
14 15
system sh/cfg.sh -n dnode3 -c maxVgroupsPerDb -v 4
system sh/cfg.sh -n dnode3 -c maxTablesPerVnode -v 1000
S
slguan 已提交
16

S
slguan 已提交
17
system sh/deploy.sh -n dnode4 -i 4
S
slguan 已提交
18
system sh/cfg.sh -n dnode4 -c numOfTotalVnodes -v 4
S
scripts  
Shengliang Guan 已提交
19 20
system sh/cfg.sh -n dnode4 -c maxVgroupsPerDb -v 4
system sh/cfg.sh -n dnode4 -c maxTablesPerVnode -v 1000
S
slguan 已提交
21

S
slguan 已提交
22
system sh/deploy.sh -n dnode5 -i 5
S
slguan 已提交
23
system sh/cfg.sh -n dnode5 -c numOfTotalVnodes -v 4
S
scripts  
Shengliang Guan 已提交
24 25
system sh/cfg.sh -n dnode5 -c maxVgroupsPerDb -v 4
system sh/cfg.sh -n dnode5 -c maxTablesPerVnode -v 1000
S
slguan 已提交
26 27

print =============== prepare data
S
Shengliang Guan 已提交
28
system sh/exec.sh -n dnode1 -s start
S
slguan 已提交
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 89 90 91 92 93
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 已提交
94
sql create dnode $hostname2
S
Shengliang Guan 已提交
95
system sh/exec.sh -n dnode2 -s start
S
slguan 已提交
96 97 98 99 100

$x = 0
show1: 
	$x = $x + 1
	sleep 3000
S
scripts  
Shengliang Guan 已提交
101
	if $x == 10 then 
S
slguan 已提交
102 103 104 105
		return -1
	endi
	
sql show dnodes
S
scripts  
Shengliang Guan 已提交
106 107 108
print dnode1 openvnodes $data2_1
print dnode2 openvnodes $data2_2
if $data2_1 != 2 then
S
slguan 已提交
109 110
	goto show1
endi
S
scripts  
Shengliang Guan 已提交
111
if $data2_2 != 2 then
S
slguan 已提交
112 113 114
	goto show1
endi

S
scripts  
Shengliang Guan 已提交
115 116 117
sql reset query cache
sleep 1000

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

print ========== step3
S
slguan 已提交
154
sql drop dnode $hostname2
S
slguan 已提交
155 156 157 158 159

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

S
Shengliang Guan 已提交
178
system sh/exec.sh -n dnode2 -s stop -x SIGINT
S
scripts  
Shengliang Guan 已提交
179
sleep 5000
S
slguan 已提交
180

S
scripts  
Shengliang Guan 已提交
181 182 183
sql reset query cache
sleep 1000

S
slguan 已提交
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 210 211 212 213 214
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 已提交
215
sql drop dnode $hostname3
S
slguan 已提交
216 217 218 219 220

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

S
Shengliang Guan 已提交
235
system sh/exec.sh -n dnode3 -s stop -x SIGINT
S
scripts  
Shengliang Guan 已提交
236
sleep 5000
S
slguan 已提交
237

S
scripts  
Shengliang Guan 已提交
238 239 240
sql reset query cache
sleep 1000

S
slguan 已提交
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 267 268 269 270 271
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 已提交
272
system sh/exec.sh -n dnode4 -s start
S
scripts  
Shengliang Guan 已提交
273 274 275 276
sql create dnode $hostname4

sleep 3000
sql alter database db replica 2
S
slguan 已提交
277 278 279 280 281

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

S
scripts  
Shengliang Guan 已提交
296 297 298
sql reset query cache
sleep 1000

S
slguan 已提交
299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
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 已提交
328

S
Shengliang Guan 已提交
329 330 331 332 333 334 335 336
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