test: check result after reboot without commit for tsma/rsma
This commit is contained in:
parent
507c2d8d37
commit
45b58ffd48
|
@ -81,8 +81,60 @@ if $data01 != 10 then
|
||||||
endi
|
endi
|
||||||
|
|
||||||
#===================================================================
|
#===================================================================
|
||||||
|
system sh/exec.sh -n dnode1 -s stop -x SIGINT
|
||||||
|
system sh/exec.sh -n dnode1 -s start
|
||||||
|
print =============== wait maxdelay 15+2 seconds for results after reboot
|
||||||
|
sleep 17000
|
||||||
|
|
||||||
#==================== reboot to trigger commit data to file
|
print =============== select * from retention level 2 from memory after reboot
|
||||||
|
sql select * from ct1;
|
||||||
|
print $data00 $data01
|
||||||
|
if $rows > 2 then
|
||||||
|
print retention level 2 file rows $rows > 2
|
||||||
|
return -1
|
||||||
|
endi
|
||||||
|
|
||||||
|
|
||||||
|
if $data01 != 1 then
|
||||||
|
if $data01 != 10 then
|
||||||
|
print =============> $data01
|
||||||
|
print retention level 2 file result $data01 != 1 or 10
|
||||||
|
return -1
|
||||||
|
endi
|
||||||
|
endi
|
||||||
|
|
||||||
|
print =============== select * from retention level 1 from memory after reboot
|
||||||
|
sql select * from ct1 where ts > now-8d;
|
||||||
|
print $data00 $data01
|
||||||
|
if $rows > 2 then
|
||||||
|
print retention level 1 file rows $rows > 2
|
||||||
|
return -1
|
||||||
|
endi
|
||||||
|
|
||||||
|
if $data01 != 1 then
|
||||||
|
if $data01 != 10 then
|
||||||
|
print retention level 1 file result $data01 != 1 or 10
|
||||||
|
return -1
|
||||||
|
endi
|
||||||
|
endi
|
||||||
|
|
||||||
|
print =============== select * from retention level 0 from memory after reboot
|
||||||
|
sql select * from ct1 where ts > now-3d;
|
||||||
|
print $data00 $data01
|
||||||
|
print $data10 $data11
|
||||||
|
print $data20 $data21
|
||||||
|
|
||||||
|
if $rows < 1 then
|
||||||
|
print retention level 0 file rows $rows < 1
|
||||||
|
return -1
|
||||||
|
endi
|
||||||
|
|
||||||
|
if $data01 != 10 then
|
||||||
|
print retention level 0 file result $data01 != 10
|
||||||
|
return -1
|
||||||
|
endi
|
||||||
|
|
||||||
|
#==================== flush database to trigger commit data to file
|
||||||
sql flush database d0;
|
sql flush database d0;
|
||||||
system sh/exec.sh -n dnode1 -s stop -x SIGINT
|
system sh/exec.sh -n dnode1 -s stop -x SIGINT
|
||||||
system sh/exec.sh -n dnode1 -s start
|
system sh/exec.sh -n dnode1 -s start
|
||||||
|
|
|
@ -82,9 +82,62 @@ if $data01 != 10 then
|
||||||
endi
|
endi
|
||||||
|
|
||||||
#===================================================================
|
#===================================================================
|
||||||
|
system sh/exec.sh -n dnode1 -s stop -x SIGINT
|
||||||
|
system sh/exec.sh -n dnode1 -s start
|
||||||
|
print =============== wait maxdelay 5+2 seconds for results after reboot
|
||||||
|
sleep 7000
|
||||||
|
|
||||||
|
print =============== select * from retention level 2 from memory after reboot
|
||||||
|
sql select * from ct1;
|
||||||
|
print $data00 $data01 $data02
|
||||||
|
print $data10 $data11 $data12
|
||||||
|
if $rows > 2 then
|
||||||
|
print retention level 2 file rows $rows > 2
|
||||||
|
return -1
|
||||||
|
endi
|
||||||
|
|
||||||
|
|
||||||
#==================== reboot to trigger commit data to file
|
if $data01 != 100 then
|
||||||
|
if $data01 != 10 then
|
||||||
|
print retention level 2 file result $data01 != 100 or 10
|
||||||
|
return -1
|
||||||
|
endi
|
||||||
|
endi
|
||||||
|
|
||||||
|
print =============== select * from retention level 1 from memory after reboot
|
||||||
|
sql select * from ct1 where ts > now-8d;
|
||||||
|
print $data00 $data01 $data02
|
||||||
|
print $data10 $data11 $data12
|
||||||
|
if $rows > 2 then
|
||||||
|
print retention level 1 file rows $rows > 2
|
||||||
|
return -1
|
||||||
|
endi
|
||||||
|
|
||||||
|
if $data01 != 100 then
|
||||||
|
if $data01 != 10 then
|
||||||
|
print retention level 1 file result $data01 != 100 or 10
|
||||||
|
return -1
|
||||||
|
endi
|
||||||
|
endi
|
||||||
|
|
||||||
|
print =============== select * from retention level 0 from memory after reboot
|
||||||
|
sql select * from ct1 where ts > now-3d;
|
||||||
|
print $data00 $data01 $data02
|
||||||
|
print $data10 $data11 $data12
|
||||||
|
print $data20 $data21 $data22
|
||||||
|
|
||||||
|
if $rows < 1 then
|
||||||
|
print retention level 0 file rows $rows < 1
|
||||||
|
return -1
|
||||||
|
endi
|
||||||
|
|
||||||
|
if $data01 != 10 then
|
||||||
|
print retention level 0 file result $data01 != 10
|
||||||
|
return -1
|
||||||
|
endi
|
||||||
|
|
||||||
|
|
||||||
|
#==================== flush database to trigger commit data to file
|
||||||
sql flush database d0;
|
sql flush database d0;
|
||||||
system sh/exec.sh -n dnode1 -s stop -x SIGINT
|
system sh/exec.sh -n dnode1 -s stop -x SIGINT
|
||||||
system sh/exec.sh -n dnode1 -s start
|
system sh/exec.sh -n dnode1 -s start
|
||||||
|
|
Loading…
Reference in New Issue