distributeIntervalRetrive0.sim 4.8 KB
Newer Older
5
54liuyao 已提交
1 2 3 4 5
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 
5
54liuyao 已提交
6 7
#==system sh/exec.sh -n dnode1 -s start -v

5
54liuyao 已提交
8 9 10 11 12 13
sleep 50
sql connect

sql create dnode $hostname2 port 7200

system sh/exec.sh -n dnode2 -s start
5
54liuyao 已提交
14
#==system sh/exec.sh -n dnode2 -s start -v
5
54liuyao 已提交
15 16 17 18 19 20 21 22 23 24

print ===== step1
$x = 0
step1:
	$x = $x + 1
	sleep 1000
	if $x == 10 then
	  print ====> dnode not ready!
		return -1
	endi
X
Xiaoyu Wang 已提交
25
sql select * from information_schema.ins_dnodes
5
54liuyao 已提交
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
print ===> $data00 $data01 $data02 $data03 $data04 $data05
print ===> $data10 $data11 $data12 $data13 $data14 $data15
if $rows != 2 then
  return -1
endi
if $data(1)[4] != ready then
  goto step1
endi
if $data(2)[4] != ready then
  goto step1
endi

print ===== step2

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);
47
sql create stream stream_t1 trigger at_once into streamtST1 as select  _wstart, count(*) c1, sum(a) c3 , max(b)  c4, min(c) c5 from st interval(10s);
5
54liuyao 已提交
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

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 ts1 values(1648791213002,NULL,NULL,NULL,NULL);
sql insert into ts2 values(1648791213002,NULL,NULL,NULL,NULL);

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) (1648791243005,4,20,3,3.1);

sleep 1000

sql insert into ts3 values(1648791213001,12,12,13,14.1) (1648791243005,14,30,30,30.1);

$loop_count = 0
loop1:
sleep 1000
sql select * from streamtST1;

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

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

5
54liuyao 已提交
82
if $data02 != 38 then
5
54liuyao 已提交
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 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
  print =====data02=$data02
  goto loop1
endi

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

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

#row2
if $data21 != 1 then
  print =====data21=$data21
  goto loop1
endi

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

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

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

print loop1 over

sql insert into ts1 values(1648791223008,4,2,30,3.1) (1648791213009,4,2,3,3.1)  (1648791233010,4,2,3,3.1) (1648791243011,4,2,3,3.1)(1648791243012,34,32,33,3.1);

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

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

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

5
54liuyao 已提交
140
if $data02 != 42 then
5
54liuyao 已提交
141 142 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 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
  print =====data02=$data02
  goto loop2
endi

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

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

#row2
if $data21 != 2 then
  print =====data21=$data21
  goto loop2
endi

if $data22 != 7 then
  print =====data22=$data22
  goto loop2
endi

#row 3
if $data31 != 5 then
  print =====data31=$data31
  goto loop2
endi

if $data32 != 60 then
  print =====data32=$data32
  goto loop2
endi

print loop2 over

sql insert into ts4 values(1648791223008,4,2,30,3.1) (1648791213009,4,2,3,3.1)  (1648791233010,4,2,3,3.1);

$loop_count = 0
loop3:
sleep 1000
sql select * from streamtST1;

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

# row 0
if $data01 != 7 then
  print =====data01=$data01
  goto loop3
endi

5
54liuyao 已提交
198
if $data02 != 46 then
5
54liuyao 已提交
199 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 226 227 228 229 230 231 232 233 234 235 236 237
  print =====data02=$data02
  goto loop3
endi

# row 1
if $data11 != 3 then
  print =====data11=$data11
  goto loop3
endi

if $data12 != 10 then
  print =====data12=$data12
  goto loop3
endi

#row2
if $data21 != 3 then
  print =====data21=$data21
  goto loop3
endi

if $data22 != 11 then
  print =====data22=$data22
  goto loop3
endi

#row 3
if $data31 != 5 then
  print =====data31=$data31
  goto loop3
endi

if $data32 != 60 then
  print =====data32=$data32
  goto loop3
endi

print loop3 over

5
54liuyao 已提交
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 268 269 270 271 272 273 274




#==system sh/exec.sh -n dnode1 -s stop -x SIGINT
#==print =============== check
#==$null=

#==system_content sh/checkValgrind.sh -n dnode1 
#==print cmd return result ----> [ $system_content ]
#==if $system_content > 0 then
#==  return -1
#==endi 

#==if $system_content == $null then
#==  return -1
#==endi



#==system sh/exec.sh -n dnode2 -s stop -x SIGINT
#==print =============== check
#==$null=

#==system_content sh/checkValgrind.sh -n dnode2 
#==print cmd return result ----> [ $system_content ]
#==if $system_content > 0 then
#==  return -1
#==endi 

#==if $system_content == $null then
#==  return -1
#==endi
#==return 1



5
54liuyao 已提交
275
system sh/stop_dnodes.sh