balance3.sim 8.4 KB
Newer Older
S
Shengliang Guan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
system sh/stop_dnodes.sh
system sh/deploy.sh -n dnode1 -i 1
system sh/deploy.sh -n dnode2 -i 2
system sh/deploy.sh -n dnode3 -i 3
system sh/deploy.sh -n dnode4 -i 4
system sh/deploy.sh -n dnode5 -i 5
system sh/deploy.sh -n dnode6 -i 6
system sh/cfg.sh -n dnode1 -c supportVnodes -v 4
system sh/cfg.sh -n dnode2 -c supportVnodes -v 4
system sh/cfg.sh -n dnode3 -c supportVnodes -v 4
system sh/cfg.sh -n dnode4 -c supportVnodes -v 4
system sh/cfg.sh -n dnode5 -c supportVnodes -v 4
system sh/cfg.sh -n dnode6 -c supportVnodes -v 4

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

sql create dnode $hostname port 7200
sql create dnode $hostname port 7300
sql create dnode $hostname port 7400
system sh/exec.sh -n dnode2 -s start
system sh/exec.sh -n dnode3 -s start
system sh/exec.sh -n dnode4 -s start

$x = 0
S
Shengliang Guan 已提交
27
step10:
S
Shengliang Guan 已提交
28 29 30 31 32 33
	$x = $x + 1
	sleep 1000
	if $x == 10 then
	  print ====> dnode not ready!
		return -1
	endi
X
Xiaoyu Wang 已提交
34
sql select * from information_schema.ins_dnodes
S
Shengliang Guan 已提交
35 36 37 38 39 40 41 42
print ===> $data00 $data01 $data02 $data03 $data04 $data05
print ===> $data10 $data11 $data12 $data13 $data14 $data15
print ===> $data20 $data21 $data22 $data23 $data24 $data25
print ===> $data30 $data31 $data32 $data33 $data34 $data35
if $rows != 4 then
  return -1
endi
if $data(1)[4] != ready then
S
Shengliang Guan 已提交
43
  goto step10
S
Shengliang Guan 已提交
44 45
endi
if $data(2)[4] != ready then
S
Shengliang Guan 已提交
46
  goto step10
S
Shengliang Guan 已提交
47 48
endi
if $data(3)[4] != ready then
S
Shengliang Guan 已提交
49
  goto step10
S
Shengliang Guan 已提交
50 51
endi
if $data(4)[4] != ready then
S
Shengliang Guan 已提交
52
  goto step10
S
Shengliang Guan 已提交
53 54 55
endi

sql create database d1 replica 3 vgroups 1
S
Shengliang Guan 已提交
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 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
$x = 0
step11:
	$x = $x + 1
	sleep 1000
	if $x == 60 then
	  print ====> db not ready!
		return -1
	endi
sql show d1.vgroups
print ===> $data00 $data01 $data02 $data03 $data04 $data05 $data06 $data07 $data08 $data09
$leaderExist = 0
if $rows != 1 then
  return -1
endi
if $data(2)[4] == leader then
  $leaderExist = 1
endi
if $data(2)[6] == leader then
  $leaderExist = 1
endi
if $data(2)[8] == leader then
  $leaderExist = 1
endi
if  $leaderExist != 1 then
  goto step11
endi

sql create database d2 replica 3 vgroups 1
$x = 0
step12:
	$x = $x + 1
	sleep 1000
	if $x == 60 then
	  print ====> d2 not ready!
		return -1
	endi
sql show d2.vgroups
print ===> $data00 $data01 $data02 $data03 $data04 $data05 $data06 $data07 $data08 $data09
$leaderExist = 0
if $rows != 1 then
  return -1
endi
if $data(3)[4] == leader then
  $leaderExist = 1
endi
if $data(3)[6] == leader then
  $leaderExist = 1
endi
if $data(3)[8] == leader then
  $leaderExist = 1
endi
if  $leaderExist != 1 then
  goto step12
endi

S
Shengliang Guan 已提交
111 112 113 114 115 116 117 118 119 120 121 122 123 124
sql create table d1.t1 (t timestamp, i int) 
sql insert into d1.t1 values(now+1s, 15) 
sql insert into d1.t1 values(now+2s, 14)
sql insert into d1.t1 values(now+3s, 13)
sql insert into d1.t1 values(now+4s, 12)
sql insert into d1.t1 values(now+5s, 11)

sql create table d2.t2 (t timestamp, i int) 
sql insert into d2.t2 values(now+1s, 25)
sql insert into d2.t2 values(now+2s, 24)
sql insert into d2.t2 values(now+3s, 23)
sql insert into d2.t2 values(now+4s, 22)
sql insert into d2.t2 values(now+5s, 21)

X
Xiaoyu Wang 已提交
125
sql select * from information_schema.ins_dnodes
S
Shengliang Guan 已提交
126 127 128 129
print dnode1 openVnodes $data(1)[2]
print dnode2 openVnodes $data(2)[2]
print dnode3 openVnodes $data(3)[2]
print dnode4 openVnodes $data(4)[2]
S
Shengliang Guan 已提交
130
if $data(1)[2] != 1 then
S
Shengliang Guan 已提交
131 132
	return -1
endi
S
Shengliang Guan 已提交
133
if $data(2)[2] != 1 then
S
Shengliang Guan 已提交
134 135 136 137 138 139 140 141 142 143 144
	return -1
endi
if $data(3)[2] != 2 then
	return -1
endi
if $data(4)[2] != 2 then
	return -1
endi

print ========== step2
sql drop dnode 2
X
Xiaoyu Wang 已提交
145
sql select * from information_schema.ins_dnodes
S
Shengliang Guan 已提交
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
print dnode1 openVnodes $data(1)[2]
print dnode2 openVnodes $data(2)[2]
print dnode3 openVnodes $data(3)[2]
print dnode4 openVnodes $data(4)[2]
if $data(1)[2] != 2 then
	return -1
endi
if $data(2)[2] != null then
	return -1
endi
if $data(3)[2] != 2 then
	return -1
endi
if $data(4)[2] != 2 then
	return -1
endi

system sh/exec.sh -n dnode2 -s stop -x SIGINT

print ========== step3
sql create dnode $hostname port 7500
system sh/exec.sh -n dnode5 -s start

$x = 0
step3:
	$x = $x + 1
	sleep 1000
	if $x == 10 then
	  print ====> dnode not ready!
		return -1
	endi
X
Xiaoyu Wang 已提交
177
sql select * from information_schema.ins_dnodes
S
Shengliang Guan 已提交
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
print ===> $data00 $data01 $data02 $data03 $data04 $data05
print ===> $data10 $data11 $data12 $data13 $data14 $data15
print ===> $data20 $data21 $data22 $data23 $data24 $data25
print ===> $data30 $data31 $data32 $data33 $data34 $data35
if $rows != 4 then
  return -1
endi
if $data(1)[4] != ready then
  goto step3
endi
if $data(3)[4] != ready then
  goto step3
endi
if $data(4)[4] != ready then
  goto step3
endi
if $data(5)[4] != ready then
  goto step3
endi

sql balance vgroup
X
Xiaoyu Wang 已提交
199
sql select * from information_schema.ins_dnodes
S
Shengliang Guan 已提交
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
print dnode1 openVnodes $data(1)[2]
print dnode3 openVnodes $data(3)[2]
print dnode4 openVnodes $data(4)[2]
print dnode5 openVnodes $data(5)[2]
if $data(1)[2] != 1 then
	return -1
endi
if $data(3)[2] != 2 then
	return -1
endi
if $data(4)[2] != 2 then
	return -1
endi
if $data(5)[2] != 1 then
	return -1
endi

print ========== step4
sql create database d3 replica 3 vgroups 1
sql create table d3.t3 (t timestamp, i int) 
sql insert into d3.t3 values(now+1s, 35)
sql insert into d3.t3 values(now+2s, 34)
sql insert into d3.t3 values(now+3s, 33)
sql insert into d3.t3 values(now+4s, 32)
sql insert into d3.t3 values(now+5s, 31)

X
Xiaoyu Wang 已提交
226
sql select * from information_schema.ins_dnodes
S
Shengliang Guan 已提交
227 228 229 230
print dnode1 openVnodes $data(1)[2]
print dnode3 openVnodes $data(3)[2]
print dnode4 openVnodes $data(4)[2]
print dnode5 openVnodes $data(5)[2]
S
Shengliang Guan 已提交
231
if $data(1)[2] != 2 then
S
Shengliang Guan 已提交
232 233
	return -1
endi
S
Shengliang Guan 已提交
234
if $data(3)[2] != 2 then
S
Shengliang Guan 已提交
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
	return -1
endi
if $data(4)[2] != 3 then
	return -1
endi
if $data(5)[2] != 2 then
	return -1
endi

print ========== step5
sql create dnode $hostname port 7600
system sh/exec.sh -n dnode6 -s start

$x = 0
step5:
	$x = $x + 1
	sleep 1000
	if $x == 10 then
	  print ====> dnode not ready!
		return -1
	endi
X
Xiaoyu Wang 已提交
256
sql select * from information_schema.ins_dnodes
S
Shengliang Guan 已提交
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
print ===> $data00 $data01 $data02 $data03 $data04 $data05
print ===> $data10 $data11 $data12 $data13 $data14 $data15
print ===> $data20 $data21 $data22 $data23 $data24 $data25
print ===> $data30 $data31 $data32 $data33 $data34 $data35
print ===> $data40 $data41 $data42 $data43 $data44 $data45
if $rows != 5 then
  return -1
endi
if $data(1)[4] != ready then
  goto step5
endi
if $data(3)[4] != ready then
  goto step5
endi
if $data(4)[4] != ready then
  goto step5
endi
if $data(5)[4] != ready then
  goto step5
endi
if $data(6)[4] != ready then
  goto step5
endi

sql balance vgroup
X
Xiaoyu Wang 已提交
282
sql select * from information_schema.ins_dnodes
S
Shengliang Guan 已提交
283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
print dnode1 openVnodes $data(1)[2]
print dnode3 openVnodes $data(3)[2]
print dnode4 openVnodes $data(4)[2]
print dnode5 openVnodes $data(5)[2]
print dnode5 openVnodes $data(6)[2]
if $data(1)[2] != 1 then
	return -1
endi
if $data(3)[2] != 2 then
	return -1
endi
if $data(4)[2] != 2 then
	return -1
endi
if $data(5)[2] != 2 then
	return -1
endi
if $data(6)[2] != 2 then
	return -1
endi

print ========== step6
sql drop dnode 3
X
Xiaoyu Wang 已提交
306
sql select * from information_schema.ins_dnodes
S
Shengliang Guan 已提交
307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394
print dnode1 openVnodes $data(1)[2]
print dnode3 openVnodes $data(3)[2]
print dnode4 openVnodes $data(4)[2]
print dnode5 openVnodes $data(5)[2]
print dnode5 openVnodes $data(6)[2]
if $data(1)[2] != 2 then
	return -1
endi
if $data(3)[2] != null then
	return -1
endi
if $data(4)[2] != 2 then
	return -1
endi
if $data(5)[2] != 3 then
	return -1
endi
if $data(6)[2] != 2 then
	return -1
endi

system sh/exec.sh -n dnode3 -s stop -x SIGINT
sql reset query cache
sleep 100

print ========== step7
sql select * from d1.t1 order by t desc
print $data01 $data11 $data21 $data31 $data41 
if $data01 != 11 then
  return -1
endi
if $data11 != 12 then
  return -1
endi
if $data21 != 13 then
  return -1
endi
if $data31 != 14 then
  return -1
endi
if $data41 != 15 then
  return -1
endi

sql select * from d2.t2 order by t desc
print $data01 $data11 $data21 $data31 $data41 
if $data01 != 21 then
  return -1
endi
if $data11 != 22 then
  return -1
endi
if $data21 != 23 then
  return -1
endi
if $data31 != 24 then
  return -1
endi
if $data41 != 25 then
  return -1
endi

sql select * from d3.t3 order by t desc
print $data01 $data11 $data21 $data31 $data41  
if $data01 != 31 then
  return -1
endi
if $data11 != 32 then
  return -1
endi
if $data21 != 33 then
  return -1
endi
if $data31 != 34 then
  return -1
endi
if $data41 != 35 then
  return -1
endi

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