create_retentions.py 13.3 KB
Newer Older
C
cpwu 已提交
1 2
import datetime

C
cpwu 已提交
3
from dataclasses import dataclass, field
C
cpwu 已提交
4
from typing import List
C
cpwu 已提交
5 6 7 8 9 10 11
from util.log import *
from util.sql import *
from util.cases import *
from util.dnodes import *

PRIMARY_COL = "ts"

C
cpwu 已提交
12 13 14 15 16 17 18 19 20 21 22
INT_COL     = "c_int"
BINT_COL    = "c_bint"
SINT_COL    = "c_sint"
TINT_COL    = "c_tint"
FLOAT_COL   = "c_float"
DOUBLE_COL  = "c_double"
BOOL_COL    = "c_bool"
TINT_UN_COL = "c_tint_un"
SINT_UN_COL = "c_sint_un"
BINT_UN_COL = "c_bint_un"
INT_UN_COL  = "c_int_un"
C
cpwu 已提交
23

C
cpwu 已提交
24 25 26
BINARY_COL  = "c_binary"
NCHAR_COL   = "c_nchar"
TS_COL      = "c_ts"
C
cpwu 已提交
27 28 29 30 31 32

NUM_COL     = [ INT_COL, BINT_COL, SINT_COL, TINT_COL, FLOAT_COL, DOUBLE_COL, ]
CHAR_COL    = [ BINARY_COL, NCHAR_COL, ]
BOOLEAN_COL = [ BOOL_COL, ]
TS_TYPE_COL = [ TS_COL, ]

C
cpwu 已提交
33 34 35 36
## insert data args:
TIME_STEP = 10000
NOW = int(datetime.datetime.timestamp(datetime.datetime.now()) * 1000)

C
cpwu 已提交
37 38
@dataclass
class DataSet:
C
cpwu 已提交
39 40 41 42 43 44 45 46 47 48 49 50 51 52
    ts_data     : List[int]     = field(default_factory=list)
    int_data    : List[int]     = field(default_factory=list)
    bint_data   : List[int]     = field(default_factory=list)
    sint_data   : List[int]     = field(default_factory=list)
    tint_data   : List[int]     = field(default_factory=list)
    int_un_data : List[int]     = field(default_factory=list)
    bint_un_data: List[int]     = field(default_factory=list)
    sint_un_data: List[int]     = field(default_factory=list)
    tint_un_data: List[int]     = field(default_factory=list)
    float_data  : List[float]   = field(default_factory=list)
    double_data : List[float]   = field(default_factory=list)
    bool_data   : List[int]     = field(default_factory=list)
    binary_data : List[str]     = field(default_factory=list)
    nchar_data  : List[str]     = field(default_factory=list)
C
cpwu 已提交
53

C
cpwu 已提交
54

C
cpwu 已提交
55 56 57 58
class TDTestCase:

    def init(self, conn, logSql):
        tdLog.debug(f"start to excute {__file__}")
C
cpwu 已提交
59
        tdSql.init(conn.cursor(), False)
C
cpwu 已提交
60 61 62 63

    @property
    def create_databases_sql_err(self):
        return [
C
cpwu 已提交
64 65 66 67 68 69 70
            "create database db1 retentions 0s:1d",
            "create database db3 retentions 1s:0d",
            "create database db1 retentions 1s:1y",
            "create database db1 retentions 1s:1n",
            "create database db2 retentions 1w:1d ;",
            "create database db5 retentions 1s:1d,3s:3d,2s:2d",
            "create database db1 retentions 1s:1n,2s:2d,3s:3d,4s:4d",
C
cpwu 已提交
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
        ]

    @property
    def create_databases_sql_current(self):
        return [
            "create database db1 retentions 1s:1d",
            "create database db2 retentions 1s:1d,2m:2d,3h:3d",
        ]

    @property
    def alter_database_sql(self):
        return [
            "alter database db1 retentions 99h:99d",
            "alter database db2 retentions 97h:97d,98h:98d,99h:99d,",
        ]

    @property
    def create_stable_sql_err(self):
        return [
C
cpwu 已提交
90 91 92 93 94 95 96 97 98 99 100 101 102
            f"create stable stb11 ({PRIMARY_COL} timestamp, {INT_COL} int) tags (tag1 int) rollup(ceil) watermark 1s max_delay 1m",
            f"create stable stb12 ({PRIMARY_COL} timestamp, {INT_COL} int) tags (tag1 int) rollup(count) watermark  1min",
            f"create stable stb13 ({PRIMARY_COL} timestamp, {INT_COL} int) tags (tag1 int) rollup(min) max_delay -1s",
            f"create stable stb14 ({PRIMARY_COL} timestamp, {INT_COL} int) tags (tag1 int) rollup(min) watermark -1m",
            f"create stable stb15 ({PRIMARY_COL} timestamp, {INT_COL} int) tags (tag1 int) watermark 1m ",
            f"create stable stb16 ({PRIMARY_COL} timestamp, {INT_COL} int) tags (tag1 int) max_delay 1m ",
            f"create stable stb21 ({PRIMARY_COL} timestamp, {INT_COL} int, {BINARY_COL} binary(16)) tags (tag1 int) rollup(avg) watermark 1s",
            f"create stable stb22 ({PRIMARY_COL} timestamp, {INT_COL} int, {NCHAR_COL} nchar(16)) tags (tag1 int) rollup(avg) max_delay 1m",
            f"create table ntb_1 ({PRIMARY_COL} timestamp, {INT_COL} int, {NCHAR_COL} nchar(16)) rollup(avg) watermark 1s max_delay 1s",
            f"create stable stb23 ({PRIMARY_COL} timestamp, {INT_COL} int, {NCHAR_COL} nchar(16)) tags (tag1 int) " ,
            f"create stable stb24 ({PRIMARY_COL} timestamp, {INT_COL} int) tags (tag1 int) " ,
            f"create stable stb25 ({PRIMARY_COL} timestamp, {INT_COL} int) " ,
            f"create stable stb26 ({PRIMARY_COL} timestamp, {INT_COL} int, {BINARY_COL} nchar(16)) " ,
C
cpwu 已提交
103

C
cpwu 已提交
104
            # watermark, max_delay: [0, 900000], [ms, s, m, ?]
C
cpwu 已提交
105 106 107 108 109 110 111 112
            f"create stable stb17 ({PRIMARY_COL} timestamp, {INT_COL} int) tags (tag1 int) rollup(min) max_delay 1u",
            f"create stable stb18 ({PRIMARY_COL} timestamp, {INT_COL} int) tags (tag1 int) rollup(min) watermark 1b",
            f"create stable stb19 ({PRIMARY_COL} timestamp, {INT_COL} int) tags (tag1 int) rollup(min) watermark 900001ms",
            f"create stable stb20 ({PRIMARY_COL} timestamp, {INT_COL} int) tags (tag1 int) rollup(min) max_delay 16m",
            f"create stable stb27 ({PRIMARY_COL} timestamp, {INT_COL} int) tags (tag1 int) rollup(min) max_delay 901s",
            f"create stable stb28 ({PRIMARY_COL} timestamp, {INT_COL} int) tags (tag1 int) rollup(min) max_delay 1h",
            f"create stable stb29 ({PRIMARY_COL} timestamp, {INT_COL} int) tags (tag1 int) rollup(min) max_delay 0.2h",
            f"create stable stb30 ({PRIMARY_COL} timestamp, {INT_COL} int) tags (tag1 int) rollup(min) watermark 0.002d",
C
cpwu 已提交
113

C
cpwu 已提交
114 115 116
        ]

    @property
C
cpwu 已提交
117
    def create_stable_sql_current(self):
C
cpwu 已提交
118
        return [
C
cpwu 已提交
119
            f"create stable stb1 ({PRIMARY_COL} timestamp, {INT_COL} int) tags (tag1 int) rollup(avg)",
C
cpwu 已提交
120 121 122
            f"create stable stb2 ({PRIMARY_COL} timestamp, {INT_COL} int) tags (tag1 int) rollup(min) watermark 5s max_delay 1m",
            f"create stable stb3 ({PRIMARY_COL} timestamp, {INT_COL} int) tags (tag1 int) rollup(max) watermark 5s max_delay 1m",
            f"create stable stb4 ({PRIMARY_COL} timestamp, {INT_COL} int) tags (tag1 int) rollup(sum) watermark 5s max_delay 1m",
C
cpwu 已提交
123 124 125
            f"create stable stb5 ({PRIMARY_COL} timestamp, {INT_COL} int) tags (tag1 int) rollup(last) watermark 5s max_delay 1m",
            f"create stable stb6 ({PRIMARY_COL} timestamp, {INT_COL} int) tags (tag1 int) rollup(first) watermark 5s max_delay 1m",
            f"create stable stb7 ({PRIMARY_COL} timestamp, {INT_COL} int) tags (tag1 int) rollup(first) watermark 5s max_delay 1m sma({INT_COL})",
C
cpwu 已提交
126 127
        ]

C
cpwu 已提交
128 129
    def test_create_stb(self, db="db2"):
        tdSql.execute(f"use {db}")
C
cpwu 已提交
130 131 132 133 134
        for err_sql in self.create_stable_sql_err:
            tdSql.error(err_sql)
        for cur_sql in self.create_stable_sql_current:
            tdSql.execute(cur_sql)
        tdSql.query("show stables")
C
cpwu 已提交
135
        # assert "rollup" in tdSql.description
C
cpwu 已提交
136
        tdSql.checkRows(len(self.create_stable_sql_current))
C
cpwu 已提交
137

C
cpwu 已提交
138
        tdSql.execute("use db")  # because db is a noraml database, not a rollup database, should not be able to create a rollup stable
C
cpwu 已提交
139
        tdSql.error(f"create stable nor_db_rollup_stb ({PRIMARY_COL} timestamp, {INT_COL} int) tags (tag1 int) watermark 5s max_delay 1m")
C
cpwu 已提交
140

C
cpwu 已提交
141 142 143 144 145 146

    def test_create_databases(self):
        for err_sql in self.create_databases_sql_err:
            tdSql.error(err_sql)
        for cur_sql in self.create_databases_sql_current:
            tdSql.execute(cur_sql)
C
cpwu 已提交
147
            # tdSql.query("show databases")
C
cpwu 已提交
148 149 150 151 152
        for alter_sql in self.alter_database_sql:
            tdSql.error(alter_sql)

    def all_test(self):
        self.test_create_databases()
C
cpwu 已提交
153
        self.test_create_stb()
C
cpwu 已提交
154 155

    def __create_tb(self):
C
cpwu 已提交
156
        tdLog.printNoPrefix("==========step: create table")
C
cpwu 已提交
157 158
        create_stb_sql  =  f'''create table stb1(
                ts timestamp, {INT_COL} int, {BINT_COL} bigint, {SINT_COL} smallint, {TINT_COL} tinyint,
C
cpwu 已提交
159 160 161
                {FLOAT_COL} float, {DOUBLE_COL} double, {BOOL_COL} bool,
                {BINARY_COL} binary(16), {NCHAR_COL} nchar(32), {TS_COL} timestamp,
                {TINT_UN_COL} tinyint unsigned, {SINT_UN_COL} smallint unsigned,
C
cpwu 已提交
162
                {INT_UN_COL} int unsigned, {BINT_UN_COL} bigint unsigned
C
cpwu 已提交
163 164 165 166
            ) tags (t1 int)
            '''
        create_ntb_sql = f'''create table t1(
                ts timestamp, {INT_COL} int, {BINT_COL} bigint, {SINT_COL} smallint, {TINT_COL} tinyint,
C
cpwu 已提交
167 168 169
                {FLOAT_COL} float, {DOUBLE_COL} double, {BOOL_COL} bool,
                {BINARY_COL} binary(16), {NCHAR_COL} nchar(32), {TS_COL} timestamp,
                {TINT_UN_COL} tinyint unsigned, {SINT_UN_COL} smallint unsigned,
C
cpwu 已提交
170
                {INT_UN_COL} int unsigned, {BINT_UN_COL} bigint unsigned
C
cpwu 已提交
171 172 173 174 175 176 177 178
            )
            '''
        tdSql.execute(create_stb_sql)
        tdSql.execute(create_ntb_sql)

        for i in range(4):
            tdSql.execute(f'create table ct{i+1} using stb1 tags ( {i+1} )')

C
cpwu 已提交
179 180
    def __data_set(self, rows):
        data_set = DataSet()
C
cpwu 已提交
181

C
cpwu 已提交
182
        for i in range(rows):
C
cpwu 已提交
183
            data_set.ts_data.append(NOW + 1 * (rows - i))
C
cpwu 已提交
184 185 186 187 188 189 190 191 192 193 194 195 196
            data_set.int_data.append(rows - i)
            data_set.bint_data.append(11111 * (rows - i))
            data_set.sint_data.append(111 * (rows - i) % 32767)
            data_set.tint_data.append(11 * (rows - i) % 127)
            data_set.int_un_data.append(rows - i)
            data_set.bint_un_data.append(11111 * (rows - i))
            data_set.sint_un_data.append(111 * (rows - i) % 32767)
            data_set.tint_un_data.append(11 * (rows - i) % 127)
            data_set.float_data.append(1.11 * (rows - i))
            data_set.double_data.append(1100.0011 * (rows - i))
            data_set.bool_data.append((rows - i) % 2)
            data_set.binary_data.append(f'binary{(rows - i)}')
            data_set.nchar_data.append(f'nchar_测试_{(rows - i)}')
C
cpwu 已提交
197 198

        return data_set
C
cpwu 已提交
199

C
cpwu 已提交
200
    def __insert_data(self):
C
cpwu 已提交
201
        tdLog.printNoPrefix("==========step: start inser data into tables now.....")
C
cpwu 已提交
202
        data = self.__data_set(rows=self.rows)
C
cpwu 已提交
203

C
cpwu 已提交
204
        # now_time = int(datetime.datetime.timestamp(datetime.datetime.now()) * 1000)
C
cpwu 已提交
205 206 207
        null_data = '''null, null, null, null, null, null, null, null, null, null, null, null, null, null'''
        zero_data = "0, 0, 0, 0, 0, 0, 0, 'binary_0', 'nchar_0', 0, 0, 0, 0, 0"

C
cpwu 已提交
208
        for i in range(self.rows):
C
cpwu 已提交
209 210 211 212 213 214 215 216 217 218 219
            row_data = f'''
                {data.int_data[i]}, {data.bint_data[i]}, {data.sint_data[i]}, {data.tint_data[i]}, {data.float_data[i]}, {data.double_data[i]},
                {data.bool_data[i]}, '{data.binary_data[i]}', '{data.nchar_data[i]}', {data.ts_data[i]}, {data.tint_un_data[i]},
                {data.sint_un_data[i]}, {data.int_un_data[i]}, {data.bint_un_data[i]}
            '''
            neg_row_data = f'''
                {-1 * data.int_data[i]}, {-1 * data.bint_data[i]}, {-1 * data.sint_data[i]}, {-1 * data.tint_data[i]}, {-1 * data.float_data[i]}, {-1 * data.double_data[i]},
                {data.bool_data[i]}, '{data.binary_data[i]}', '{data.nchar_data[i]}', {data.ts_data[i]}, {1 * data.tint_un_data[i]},
                {1 * data.sint_un_data[i]}, {1 * data.int_un_data[i]}, {1 * data.bint_un_data[i]}
            '''

C
cpwu 已提交
220 221 222 223
            tdSql.execute( f"insert into ct1 values ( {NOW - i * TIME_STEP}, {row_data} )" )
            tdSql.execute( f"insert into ct2 values ( {NOW - i * int(TIME_STEP * 0.6)}, {neg_row_data} )" )
            tdSql.execute( f"insert into ct4 values ( {NOW - i * int(TIME_STEP * 0.8) }, {row_data} )" )
            tdSql.execute( f"insert into t1 values ( {NOW - i * int(TIME_STEP * 1.2)}, {row_data} )" )
C
cpwu 已提交
224

C
cpwu 已提交
225 226 227
        tdSql.execute( f"insert into ct2 values ( {NOW + int(TIME_STEP * 0.6)}, {null_data} )" )
        tdSql.execute( f"insert into ct2 values ( {NOW - (self.rows + 1) * int(TIME_STEP * 0.6)}, {null_data} )" )
        tdSql.execute( f"insert into ct2 values ( {NOW - self.rows * int(TIME_STEP * 0.29) }, {null_data} )" )
C
cpwu 已提交
228

C
cpwu 已提交
229 230 231
        tdSql.execute( f"insert into ct4 values ( {NOW + int(TIME_STEP * 0.8)}, {null_data} )" )
        tdSql.execute( f"insert into ct4 values ( {NOW - (self.rows + 1) * int(TIME_STEP * 0.8)}, {null_data} )" )
        tdSql.execute( f"insert into ct4 values ( {NOW - self.rows * int(TIME_STEP * 0.39)}, {null_data} )" )
C
cpwu 已提交
232

C
cpwu 已提交
233 234 235
        tdSql.execute( f"insert into t1 values ( {NOW + int(TIME_STEP * 1.2)}, {null_data} )" )
        tdSql.execute( f"insert into t1 values ( {NOW - (self.rows + 1) * int(TIME_STEP * 1.2)}, {null_data} )" )
        tdSql.execute( f"insert into t1 values ( {NOW - self.rows * int(TIME_STEP * 0.59)}, {null_data} )" )
C
cpwu 已提交
236 237 238 239


    def run(self):
        self.rows = 10
C
cpwu 已提交
240
        tdSql.prepare()
C
cpwu 已提交
241

C
cpwu 已提交
242
        tdLog.printNoPrefix("==========step0:all check")
C
cpwu 已提交
243
        self.all_test()
C
cpwu 已提交
244 245 246 247

        tdLog.printNoPrefix("==========step1:create table in normal database")
        tdSql.prepare()
        self.__create_tb()
C
cpwu 已提交
248
        self.__insert_data()
C
cpwu 已提交
249 250 251 252
        # return

        tdLog.printNoPrefix("==========step2:create table in rollup database")
        tdSql.execute("create database db3 retentions 1s:4m,2s:8m,3s:12m")
C
cpwu 已提交
253 254 255 256

        tdSql.execute("drop database if exists db1 ")
        tdSql.execute("drop database if exists db2 ")

C
cpwu 已提交
257
        tdSql.execute("use db3")
C
cpwu 已提交
258
        self.test_create_stb(db="db3")
C
cpwu 已提交
259 260 261
        # self.__create_tb()
        # self.__insert_data()
        self.all_test()
C
cpwu 已提交
262

C
cpwu 已提交
263 264
        tdSql.execute("drop database if exists db1 ")
        tdSql.execute("drop database if exists db2 ")
C
cpwu 已提交
265 266 267 268 269 270 271 272 273 274 275 276 277

        tdDnodes.stop(1)
        tdDnodes.start(1)

        tdLog.printNoPrefix("==========step4:after wal, all check again ")
        self.all_test()

    def stop(self):
        tdSql.close()
        tdLog.success(f"{__file__} successfully executed")

tdCases.addLinux(__file__, TDTestCase())
tdCases.addWindows(__file__, TDTestCase())