basic3.sim 1.7 KB
Newer Older
S
Shengliang Guan 已提交
1 2
system sh/stop_dnodes.sh
system sh/deploy.sh -n dnode1 -i 1
S
Shengliang Guan 已提交
3
system sh/cfg.sh -n dnode1 -c debugflag -v 131
S
Shengliang Guan 已提交
4 5 6
system sh/exec.sh -n dnode1 -s start -v
sql connect

S
Shengliang Guan 已提交
7
print =============== step1: create drop show dnodes
S
Shengliang Guan 已提交
8 9 10 11 12 13 14 15 16 17
$x = 0
step1:
	$x = $x + 1
	sleep 1000
	if $x == 10 then
	  print ---> dnode not ready!
		return -1
	endi
sql show dnodes
print ---> $data00 $data01 $data02 $data03 $data04 $data05
S
Shengliang Guan 已提交
18
if $rows != 1 then
S
Shengliang Guan 已提交
19 20 21 22 23 24
  return -1
endi
if $data(1)[4] != ready then
  goto step1
endi

S
Shengliang Guan 已提交
25 26 27
$tbPrefix = tb
$tbNum = 5
$rowNum = 10
S
Shengliang Guan 已提交
28

S
Shengliang Guan 已提交
29 30 31 32
print =============== step2: prepare data
sql create database db vgroups 2
sql use db
sql create table if not exists stb (ts timestamp, tbcol int, tbcol2 float, tbcol3 double) tags (tgcol int unsigned)
S
Shengliang Guan 已提交
33

S
Shengliang Guan 已提交
34 35 36 37 38 39 40 41 42 43 44 45 46
$i = 0
while $i < $tbNum
  $tb = $tbPrefix . $i
  sql create table $tb using stb tags( $i )
  $x = 0
  while $x < $rowNum
    $cc = $x * 60000
    $ms = 1601481600000 + $cc
    sql insert into $tb values ($ms , $x , $x , $x ) 
    $x = $x + 1
  endw 
  $i = $i + 1
endw 
S
Shengliang Guan 已提交
47

S
Shengliang Guan 已提交
48 49 50 51 52
print =============== step3: tb
sql select count(tbcol), avg(tbcol), max(tbcol), min(tbcol), count(tbcol) from tb1 where ts <= 1601481840000 and ts >= 1601481800000 partition by tgcol interval(1m) fill(value, 0)

print =============== step4: stb
sql select count(tbcol), avg(tbcol), max(tbcol), min(tbcol), count(tbcol) from stb where ts <= 1601481840000 and ts >= 1601481800000 partition by tgcol interval(1m) fill(value, 0)
S
Shengliang Guan 已提交
53

S
Shengliang Guan 已提交
54
_OVER:
S
Shengliang Guan 已提交
55
system sh/exec.sh -n dnode1 -s stop -x SIGINT
S
Shengliang Guan 已提交
56
print =============== check
S
Shengliang Guan 已提交
57 58
$null=

S
Shengliang Guan 已提交
59
system_content sh/checkValgrind.sh -n dnode1 
S
Shengliang Guan 已提交
60
print cmd return result ----> [ $system_content ]
S
Shengliang Guan 已提交
61
if $system_content > 0 then
S
Shengliang Guan 已提交
62
  return -1
S
Shengliang Guan 已提交
63 64 65
endi 

if $system_content == $null then
S
Shengliang Guan 已提交
66
  return -1
S
Shengliang Guan 已提交
67
endi