distributeInterval0.sim 9.4 KB
Newer Older
5
54liuyao 已提交
1 2 3 4 5 6 7 8
system sh/stop_dnodes.sh
system sh/deploy.sh -n dnode1 -i 1
system sh/deploy.sh -n dnode2 -i 2

system sh/exec.sh -n dnode1 -s start 
sleep 50
sql connect

9
print ===== step2
10 11
sql drop stream if exists stream_t1;
sql drop database if exists test;
5
54liuyao 已提交
12 13 14 15 16 17 18
sql create database test  vgroups 4;
sql use test;
sql create stable st(ts timestamp, a int, b int , c int, d double) tags(ta int,tb int,tc int);
sql create table ts1 using st tags(1,1,1);
sql create table ts2 using st tags(2,2,2);
sql create table ts3 using st tags(3,2,2);
sql create table ts4 using st tags(4,2,2);
19
sql create stream stream_t1 trigger at_once watermark 1d into streamtST1 as select  _wstart, count(*) c1, count(d) c2 , sum(a) c3 , max(b)  c4, min(c) c5 from st interval(10s);
5
54liuyao 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34

sleep 1000

sql insert into ts1 values(1648791213001,1,12,3,1.0);
sql insert into ts2 values(1648791213001,1,12,3,1.0);

sql insert into ts3 values(1648791213001,1,12,3,1.0);
sql insert into ts4 values(1648791213001,1,12,3,1.0);

sql insert into ts1 values(1648791213002,NULL,NULL,NULL,NULL);
sql insert into ts2 values(1648791213002,NULL,NULL,NULL,NULL);

sql insert into ts3 values(1648791213002,NULL,NULL,NULL,NULL);
sql insert into ts4 values(1648791213002,NULL,NULL,NULL,NULL);

L
liuyao 已提交
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
$loop_count = 0
loop0:

$loop_count = $loop_count + 1
if $loop_count == 10 then
  return -1
endi

sleep 300
print 1 select * from streamtST1;
sql select * from streamtST1;

if $rows != 1 then
  print =====rows=$rows
  goto loop0
endi

if $data01 != 8 then
  print =====data01=$data01
  goto loop0
endi

5
54liuyao 已提交
57 58 59 60 61 62 63 64
sql insert into ts1 values(1648791223002,2,2,3,1.1);
sql insert into ts1 values(1648791233003,3,2,3,2.1);
sql insert into ts2 values(1648791243004,4,2,43,73.1);
sql insert into ts1 values(1648791213002,24,22,23,4.1);
sql insert into ts1 values(1648791243005,4,20,3,3.1);
sql insert into ts2 values(1648791243006,4,2,3,3.1) (1648791243007,4,2,3,3.1) ;
sql insert into ts1 values(1648791243008,4,2,30,3.1) (1648791243009,4,2,3,3.1)  (1648791243010,4,2,3,3.1)  ;
sql insert into ts2 values(1648791243011,4,2,3,3.1) (1648791243012,34,32,33,3.1)  (1648791243013,4,2,3,3.1) (1648791243014,4,2,13,3.1);
L
liuyao 已提交
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

$loop_count = 0
loop01:

$loop_count = $loop_count + 1
if $loop_count == 10 then
  return -1
endi

sleep 300
print 2 select * from streamtST1;
sql select * from streamtST1;

if $rows != 4 then
  print =====rows=$rows
  goto loop01
endi

if $data01 != 8 then
  print =====data01=$data01
  goto loop01
endi

if $data11 != 1 then
  print =====data11=$data11
  goto loop01
endi

if $data21 != 1 then
  print =====data21=$data21
  goto loop01
endi

if $data31 != 11 then
  print =====data31=$data31
  goto loop01
endi

5
54liuyao 已提交
103
sql insert into ts1 values(1648791243005,4,42,3,3.1) (1648791243003,4,2,33,3.1) (1648791243006,4,2,3,3.1) (1648791213001,1,52,13,1.0) (1648791223001,22,22,83,1.1) ;
L
liuyao 已提交
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 139 140 141

$loop_count = 0
loop011:

$loop_count = $loop_count + 1
if $loop_count == 10 then
  return -1
endi

sleep 300
print 3 select * from streamtST1;
sql select * from streamtST1;

if $rows != 4 then
  print =====rows=$rows
  goto loop011
endi

if $data01 != 8 then
  print =====data01=$data01
  goto loop011
endi

if $data11 != 2 then
  print =====data11=$data11
  goto loop011
endi

if $data21 != 1 then
  print =====data21=$data21
  goto loop011
endi

if $data31 != 13 then
  print =====data31=$data31
  goto loop011
endi

5
54liuyao 已提交
142
sql insert into ts2 values(1648791243005,4,42,3,3.1) (1648791243003,4,2,33,3.1) (1648791243006,4,2,3,3.1) (1648791213001,1,52,13,1.0) (1648791223001,22,22,83,1.1) (1648791233004,13,12,13,2.1) ;
L
liuyao 已提交
143 144 145 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 177 178 179 180 181

$loop_count = 0
loop02:

$loop_count = $loop_count + 1
if $loop_count == 10 then
  return -1
endi

sleep 300
print 4 select * from streamtST1;
sql select * from streamtST1;

if $rows != 4 then
  print =====rows=$rows
  goto loop02
endi

if $data01 != 8 then
  print =====data01=$data01
  goto loop02
endi

if $data11 != 3 then
  print =====data11=$data11
  goto loop02
endi

if $data21 != 2 then
  print =====data21=$data21
  goto loop02
endi

if $data31 != 15 then
  print =====data31=$data31
  goto loop02
endi


5
54liuyao 已提交
182 183
sql insert into ts1 values(1648791243006,4,2,3,3.1) (1648791213001,1,52,13,1.0)  (1648791223001,22,22,83,1.1) ;

L
liuyao 已提交
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 215 216 217 218 219 220
$loop_count = 0
loop03:

$loop_count = $loop_count + 1
if $loop_count == 10 then
  return -1
endi

sleep 300
print 5 select * from streamtST1;
sql select * from streamtST1;

if $rows != 4 then
  print =====rows=$rows
  goto loop03
endi

if $data01 != 8 then
  print =====data01=$data01
  goto loop03
endi

if $data11 != 3 then
  print =====data11=$data11
  goto loop03
endi

if $data21 != 2 then
  print =====data21=$data21
  goto loop03
endi

if $data31 != 15 then
  print =====data31=$data31
  goto loop03
endi

5
54liuyao 已提交
221 222 223 224 225 226 227 228 229
sql insert into ts3 values(1648791223002,2,2,3,1.1);
sql insert into ts4 values(1648791233003,3,2,3,2.1);
sql insert into ts3 values(1648791243004,4,2,43,73.1);
sql insert into ts4 values(1648791213002,24,22,23,4.1);
sql insert into ts3 values(1648791243005,4,20,3,3.1);
sql insert into ts4 values(1648791243006,4,2,3,3.1) (1648791243007,4,2,3,3.1) ;
sql insert into ts3 values(1648791243008,4,2,30,3.1) (1648791243009,4,2,3,3.1)  (1648791243010,4,2,3,3.1)  ;
sql insert into ts4 values(1648791243011,4,2,3,3.1) (1648791243012,34,32,33,3.1)  (1648791243013,4,2,3,3.1) (1648791243014,4,2,13,3.1);
sql insert into ts3 values(1648791243005,4,42,3,3.1) (1648791243003,4,2,33,3.1) (1648791243006,4,2,3,3.1) (1648791213001,1,52,13,1.0) (1648791223001,22,22,83,1.1) ;
L
liuyao 已提交
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 257 258 259 260 261 262 263 264 265 266 267

$loop_count = 0
loop04:

$loop_count = $loop_count + 1
if $loop_count == 10 then
  return -1
endi

sleep 300
print 6 select * from streamtST1;
sql select * from streamtST1;

if $rows != 4 then
  print =====rows=$rows
  goto loop04
endi

if $data01 != 8 then
  print =====data01=$data01
  goto loop04
endi

if $data11 != 5 then
  print =====data11=$data11
  goto loop04
endi

if $data21 != 3 then
  print =====data21=$data21
  goto loop04
endi

if $data31 != 28 then
  print =====data31=$data31
  goto loop04
endi

5
54liuyao 已提交
268 269 270 271 272
sql insert into ts4 values(1648791243005,4,42,3,3.1) (1648791243003,4,2,33,3.1) (1648791243006,4,2,3,3.1) (1648791213001,1,52,13,1.0) (1648791223001,22,22,83,1.1) (1648791233004,13,12,13,2.1) ;
sql insert into ts3 values(1648791243006,4,2,3,3.1) (1648791213001,1,52,13,1.0)  (1648791223001,22,22,83,1.1) ;

$loop_count = 0
loop1:
5
54liuyao 已提交
273
sleep 300
5
54liuyao 已提交
274 275 276 277 278 279 280 281 282 283 284 285 286
sql select * from streamtST1;

$loop_count = $loop_count + 1
if $loop_count == 10 then
  return -1
endi

# row 0
if $data01 != 8 then
  print =====data01=$data01
  goto loop1
endi

H
Haojun Liao 已提交
287
if $data02 != 6 then
5
54liuyao 已提交
288 289 290 291
  print =====data02=$data02
  goto loop1
endi

H
Haojun Liao 已提交
292 293
if $data03 != 52 then
  print ======data03=$data03
5
54liuyao 已提交
294
  goto loop1
5
54liuyao 已提交
295 296 297
endi

if $data04 != 52 then
H
Haojun Liao 已提交
298
  print ======data04=$data04
5
54liuyao 已提交
299
  goto loop1
5
54liuyao 已提交
300 301 302
endi

if $data05 != 13 then
H
Haojun Liao 已提交
303
  print ======data05=$data05
5
54liuyao 已提交
304
  goto loop1
5
54liuyao 已提交
305 306 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
endi

# row 1
if $data11 != 6 then
  print =====data11=$data11
  goto loop1
endi

if $data12 != 6 then
  print =====data12=$data12
  goto loop1
endi

if $data13 != 92 then
  print ======$data13
  return -1
endi

if $data14 != 22 then
  print ======$data14
  return -1
endi

if $data15 != 3 then
  print ======$data15
  return -1
endi

# row 2
if $data21 != 4 then
  print =====data21=$data21
  goto loop1
endi

if $data22 != 4 then
  print =====data22=$data22
  goto loop1
endi

if $data23 != 32 then
  print ======$data23
  return -1
endi

if $data24 != 12 then
  print ======$data24
  return -1
endi

if $data25 != 3 then
  print ======$data25
  return -1
endi

# row 3
if $data31 != 30 then
  print =====data31=$data31
  goto loop1
endi

if $data32 != 30 then
  print =====data32=$data32
  goto loop1
endi

if $data33 != 180 then
  print ======$data33
  return -1
endi

if $data34 != 42 then
  print ======$data34
  return -1
endi

if $data35 != 3 then
  print ======$data35
  return -1
endi

385
sql select  _wstart, count(*) c1, count(d) c2 , sum(a) c3 , max(b)  c4, min(c) c5, avg(d) from st interval(10s);
5
54liuyao 已提交
386

5
54liuyao 已提交
387

388
sql create database test1  vgroups 4;
5
54liuyao 已提交
389 390 391 392
sql use test1;
sql create stable st(ts timestamp, a int, b int , c int) tags(ta int,tb int,tc int);
sql create table ts1 using st tags(1,1,1);
sql create table ts2 using st tags(2,2,2);
393
sql create stream stream_t2 trigger at_once  watermark 20s into streamtST1 as select  _wstart, count(*) c1, count(a) c2 , sum(a) c3 ,  max(b)  c5, min(c) c6 from st interval(10s) ;
5
54liuyao 已提交
394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421

sql insert into ts1 values(1648791211000,1,2,3);
sql insert into ts1 values(1648791222001,2,2,3);
sql insert into ts2 values(1648791211000,1,2,3);
sql insert into ts2 values(1648791222001,2,2,3);

$loop_count = 0
loop2:
sql select * from streamtST1;

sleep 300
$loop_count = $loop_count + 1
if $loop_count == 10 then
  return -1
endi

# row 0
if $data01 != 2 then
  print =====data01=$data01
  goto loop2
endi

#rows 1
if $data11 != 2 then
  print =====data11=$data11
  goto loop2
endi

422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460
#max,min selectivity
sql create database test3  vgroups 4;
sql use test3;
sql create stable st(ts timestamp, a int, b int , c int) tags(ta int,tb int,tc int);
sql create table ts1 using st tags(1,1,1);
sql create table ts2 using st tags(2,2,2);
sql create stream stream_t3 trigger at_once into streamtST3 as select ts, min(a) c6, a, b, c, ta, tb, tc from st interval(10s) ;

sql insert into ts1 values(1648791211000,1,2,3);
sleep 50
sql insert into ts1 values(1648791222001,2,2,3);
sleep 50
sql insert into ts2 values(1648791211000,1,2,3);
sleep 50
sql insert into ts2 values(1648791222001,2,2,3);
sleep 50

$loop_count = 0
loop3:
sql select * from streamtST3;

sleep 300
$loop_count = $loop_count + 1
if $loop_count == 10 then
  return -1
endi

# row 0
if $data02 != 1 then
  print =====data02=$data02
  goto loop3
endi

# row 1
if $data12 != 2 then
  print =====data12=$data12
  goto loop3
endi

L
Liu Jicong 已提交
461
system sh/stop_dnodes.sh