tmqMaxTopic.py 14.5 KB
Newer Older
P
plum-lihui 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38

import sys
import time
import threading
from taos.tmq import Consumer
from util.log import *
from util.sql import *
from util.cases import *
from util.dnodes import *
from util.common import *
sys.path.append("./7-tmq")
from tmqCommon import *

class TDTestCase:
    updatecfgDict = {'debugFlag': 135}    

    def __init__(self):
        self.vgroups    = 1
        self.ctbNum     = 10
        self.rowsPerTbl = 10
        self.tmqMaxTopicNum = 20
        self.tmqMaxGroups = 100

    def init(self, conn, logSql, replicaVar=1):
        self.replicaVar = int(replicaVar)
        tdLog.debug(f"start to excute {__file__}")
        tdSql.init(conn.cursor(), False)

    def modifyMaxTopics(self, tmqMaxTopicNum):
        # single dnode
        cfgDir = tdDnodes.dnodes[0].cfgDir
        
        # cluster dnodes
        # tdDnodes[1].dataDir
        # tdDnodes[1].logDir
        # tdDnodes[1].cfgDir
        
        cfgFile = f"%s/taos.cfg"%(cfgDir)
39
        shellCmd = 'echo tmqMaxTopicNum    %d >> %s'%(tmqMaxTopicNum, cfgFile)
P
plum-lihui 已提交
40 41 42 43 44 45 46 47 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 82 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 140 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 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
        tdLog.info(" shell cmd: %s"%(shellCmd))
        os.system(shellCmd)       
        tdDnodes.stoptaosd(1)
        tdDnodes.starttaosd(1)
        time.sleep(5)

    def prepareTestEnv(self):
        tdLog.printNoPrefix("======== prepare test env include database, stable, ctables, and insert data: ")
        paraDict = {'dbName':     'dbt',
                    'dropFlag':   1,
                    'event':      '',
                    'vgroups':    1,
                    'stbName':    'stb',
                    'colPrefix':  'c',
                    'tagPrefix':  't',
                    'colSchema':   [{'type': 'INT', 'count':1},{'type': 'BIGINT', 'count':1},{'type': 'DOUBLE', 'count':1},{'type': 'BINARY', 'len':32, 'count':1},{'type': 'NCHAR', 'len':32, 'count':1},{'type': 'TIMESTAMP', 'count':1}],
                    'tagSchema':   [{'type': 'INT', 'count':1},{'type': 'BIGINT', 'count':1},{'type': 'DOUBLE', 'count':1},{'type': 'BINARY', 'len':32, 'count':1},{'type': 'NCHAR', 'len':32, 'count':1}],
                    'ctbPrefix':  'ctb',
                    'ctbStartIdx': 0,
                    'ctbNum':     10,
                    'rowsPerTbl': 10,
                    'batchNum':   10,
                    'startTs':    1640966400000,  # 2022-01-01 00:00:00.000
                    'pollDelay':  10,
                    'showMsg':    1,
                    'showRow':    1,
                    'snapshot':   1}

        paraDict['vgroups'] = self.vgroups
        paraDict['ctbNum'] = self.ctbNum
        paraDict['rowsPerTbl'] = self.rowsPerTbl

        tmqCom.initConsumerTable()
        tdCom.create_database(tdSql, paraDict["dbName"],paraDict["dropFlag"], vgroups=paraDict["vgroups"],replica=1)
        tdLog.info("create stb")
        tmqCom.create_stable(tdSql, dbName=paraDict["dbName"],stbName=paraDict["stbName"])
        tdLog.info("create ctb")
        tmqCom.create_ctable(tdSql, dbName=paraDict["dbName"],stbName=paraDict["stbName"],ctbPrefix=paraDict['ctbPrefix'],
                             ctbNum=paraDict["ctbNum"],ctbStartIdx=paraDict['ctbStartIdx'])
        tdLog.info("insert data")
        tmqCom.insert_data_interlaceByMultiTbl(tsql=tdSql,dbName=paraDict["dbName"],ctbPrefix=paraDict["ctbPrefix"],
                                               ctbNum=paraDict["ctbNum"],rowsPerTbl=paraDict["rowsPerTbl"],batchNum=paraDict["batchNum"],
                                               startTs=paraDict["startTs"],ctbStartIdx=paraDict['ctbStartIdx'])

        tdLog.info("restart taosd to ensure that the data falls into the disk")
        # tdDnodes.stop(1)
        # tdDnodes.start(1)
        tdSql.query("flush database %s"%(paraDict['dbName']))
        return

    def tmqSubscribe(self, **inputDict):
        # create new connector for new tdSql instance in my thread
        # newTdSql = tdCom.newTdSql()
        # topicName = inputDict['topic_name']
        # group_id = inputDict['group_id']
        
        consumer_dict = {
            "group.id": inputDict['group_id_prefix'],
            "client.id": "client",
            "td.connect.user": "root",
            "td.connect.pass": "taosdata",
            "auto.commit.interval.ms": "1000",
            "enable.auto.commit": "true",
            "auto.offset.reset": "earliest",
            "experimental.snapshot.enable": "false",
            "msg.with.table.name": "false"
        }        
        
        for j in range(self.tmqMaxGroups):
            consumer_dict["group.id"] =  f"%s_%d"%(inputDict['group_id_prefix'], j)
            consumer_dict["client.id"] =  f"%s_%d"%(inputDict['group_id_prefix'], j)
            print("======grpid: %s"%(consumer_dict["group.id"]))
            consumer = Consumer(consumer_dict)
            # print("======%s"%(inputDict['topic_name']))
            consumer.subscribe([inputDict['topic_name']])
            # res = consumer.poll(inputDict['pollDelay'])
        return

    def asyncSubscribe(self, inputDict):
        pThread = threading.Thread(target=self.tmqSubscribe, kwargs=inputDict)
        pThread.start()
        return pThread

    def tmqCase1(self):
        tdLog.printNoPrefix("======== test case 1: ")
        paraDict = {'dbName':     'dbt',
                    'dropFlag':   1,
                    'event':      '',
                    'vgroups':    1,
                    'stbName':    'stb',
                    'colPrefix':  'c',
                    'tagPrefix':  't',
                    'colSchema':   [{'type': 'INT', 'count':1},{'type': 'BIGINT', 'count':1},{'type': 'DOUBLE', 'count':1},{'type': 'BINARY', 'len':32, 'count':1},{'type': 'NCHAR', 'len':32, 'count':1},{'type': 'TIMESTAMP', 'count':1}],
                    'tagSchema':   [{'type': 'INT', 'count':1},{'type': 'BIGINT', 'count':1},{'type': 'DOUBLE', 'count':1},{'type': 'BINARY', 'len':32, 'count':1},{'type': 'NCHAR', 'len':32, 'count':1}],
                    'ctbPrefix':  'ctb',
                    'ctbStartIdx': 0,
                    'ctbNum':     10,
                    'rowsPerTbl': 10,
                    'batchNum':   10,
                    'startTs':    1640966400000,  # 2022-01-01 00:00:00.000
                    'pollDelay':  3,
                    'showMsg':    1,
                    'showRow':    1,
                    'snapshot':   1}
        paraDict['vgroups'] = self.vgroups
        paraDict['ctbNum'] = self.ctbNum
        paraDict['rowsPerTbl'] = self.rowsPerTbl

        topicNamePrefix = 'topicname_'
        tdLog.info("create topics from stb")
        queryString = "select * from %s.%s"%(paraDict['dbName'], paraDict['stbName'])
        for i in range(self.tmqMaxTopicNum):
            sqlString = "create topic %s%d as %s" %(topicNamePrefix, i, queryString)
            tdLog.info("create topic sql: %s"%sqlString)
            tdSql.execute(sqlString)

        sqlString = "create topic %s%s as %s" %(topicNamePrefix, 'xyz', queryString)
        tdLog.info("create topic sql: %s"%sqlString)
        tdSql.error(sqlString)

        tdSql.query('show topics;')
        topicNum = tdSql.queryRows
        tdLog.info(" topic count: %d"%(topicNum))
        if topicNum != self.tmqMaxTopicNum:
            tdLog.exit("show topics %d not equal expect num: %d"%(topicNum, self.tmqMaxTopicNum))
        
        # self.updatecfgDict = {'tmqMaxTopicNum': 22}        
        # tdDnodes.stoptaosd(1)
        # tdDnodes.deploy(1, self.updatecfgDict)
        # tdDnodes.starttaosd(1)
        # time.sleep(5)
        
        newTmqMaxTopicNum = 22
        self.modifyMaxTopics(newTmqMaxTopicNum)

        sqlString = "create topic %s%s as %s" %(topicNamePrefix, 'x', queryString)
        tdLog.info("create topic sql: %s"%sqlString)
        tdSql.execute(sqlString)  

        sqlString = "create topic %s%s as %s" %(topicNamePrefix, 'y', queryString)
        tdLog.info("create topic sql: %s"%sqlString)
        tdSql.execute(sqlString)  

        sqlString = "create topic %s%s as %s" %(topicNamePrefix, 'xyz', queryString)
        tdLog.info("create topic sql: %s"%sqlString)
        tdSql.error(sqlString)

        tdSql.query('show topics;')
        topicNum = tdSql.queryRows
        tdLog.info(" topic count: %d"%(topicNum))
        if topicNum != newTmqMaxTopicNum:
            tdLog.exit("show topics %d not equal expect num: %d"%(topicNum, newTmqMaxTopicNum))
        
        newTmqMaxTopicNum = 18
        self.modifyMaxTopics(newTmqMaxTopicNum)
        
        i = 0
        sqlString = "drop topic %s%d" %(topicNamePrefix, i)
        tdLog.info("drop topic sql: %s"%sqlString)
        tdSql.execute(sqlString)

        i = 1
        sqlString = "drop topic %s%d" %(topicNamePrefix, i)
        tdLog.info("drop topic sql: %s"%sqlString)
        tdSql.execute(sqlString)

        sqlString = "drop topic %s%s" %(topicNamePrefix, "x")
        tdLog.info("drop topic sql: %s"%sqlString)
        tdSql.execute(sqlString)

        sqlString = "drop topic %s%s" %(topicNamePrefix, "y")
        tdLog.info("drop topic sql: %s"%sqlString)
        tdSql.execute(sqlString)

        sqlString = "create topic %s%s as %s" %(topicNamePrefix, 'xyz', queryString)
        tdLog.info("create topic sql: %s"%sqlString)
        tdSql.error(sqlString)
        
P
plum-lihui 已提交
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243
        tdLog.info("drop database when there are topic") 
        sqlString = "drop database %s" %(paraDict['dbName'])
        tdLog.info("drop database sql: %s"%sqlString)
        tdSql.error(sqlString)        
        
        tdLog.info("drop all topic for re-create") 
        tdSql.query('show topics;')
        topicNum = tdSql.queryRows
        tdLog.info(" topic count: %d"%(topicNum))
        for i in range(topicNum):
            sqlString = "drop topic %s" %(tdSql.getData(i, 0))
            tdLog.info("drop topic sql: %s"%sqlString)
            tdSql.execute(sqlString)
        
        time.sleep(1)
        
        tdLog.info("re-create topics")
        topicNamePrefix = 'newTopic_'
        queryString = "select * from %s.%s"%(paraDict['dbName'], paraDict['stbName'])
        for i in range(topicNum):
            sqlString = "create topic %s%d as %s" %(topicNamePrefix, i, queryString)
            tdLog.info("create topic sql: %s"%sqlString)
            tdSql.execute(sqlString)        
        
        #=================================================#
        tdLog.info("drop all topic for testcase2") 
P
plum-lihui 已提交
244 245 246 247 248 249 250
        tdSql.query('show topics;')
        topicNum = tdSql.queryRows
        tdLog.info(" topic count: %d"%(topicNum))
        for i in range(topicNum):
            sqlString = "drop topic %s" %(tdSql.getData(i, 0))
            tdLog.info("drop topic sql: %s"%sqlString)
            tdSql.execute(sqlString)
P
plum-lihui 已提交
251
    
P
plum-lihui 已提交
252 253
        tdLog.printNoPrefix("======== test case 1 end ...... ")

P
plum-lihui 已提交
254

P
plum-lihui 已提交
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
    def tmqCase2(self):
        tdLog.printNoPrefix("======== test case 2: test topic name len")
        paraDict = {'dbName':     'dbt',
                    'dropFlag':   1,
                    'event':      '',
                    'vgroups':    1,
                    'stbName':    'stb',
                    'colPrefix':  'c',
                    'tagPrefix':  't',
                    'colSchema':   [{'type': 'INT', 'count':1},{'type': 'BIGINT', 'count':1},{'type': 'DOUBLE', 'count':1},{'type': 'BINARY', 'len':32, 'count':1},{'type': 'NCHAR', 'len':32, 'count':1},{'type': 'TIMESTAMP', 'count':1}],
                    'tagSchema':   [{'type': 'INT', 'count':1},{'type': 'BIGINT', 'count':1},{'type': 'DOUBLE', 'count':1},{'type': 'BINARY', 'len':32, 'count':1},{'type': 'NCHAR', 'len':32, 'count':1}],
                    'ctbPrefix':  'ctb',
                    'ctbStartIdx': 0,
                    'ctbNum':     10,
                    'rowsPerTbl': 10,
                    'batchNum':   10,
                    'startTs':    1640966400000,  # 2022-01-01 00:00:00.000
                    'pollDelay':  3,
                    'showMsg':    1,
                    'showRow':    1,
                    'snapshot':   1}
        paraDict['vgroups'] = self.vgroups
        paraDict['ctbNum'] = self.ctbNum
        paraDict['rowsPerTbl'] = self.rowsPerTbl
        
        queryString = "select * from %s.%s"%(paraDict['dbName'], paraDict['stbName'])
        totalTopicNum = 0
     
        topicName = 'a'
        sqlString = "create topic %s as %s" %(topicName, queryString)
        tdLog.info("create topic sql: %s"%sqlString)
        tdSql.query(sqlString)
        totalTopicNum += 1
        
        topicName = '3'
        sqlString = "create topic %s as %s" %(topicName, queryString)
        tdLog.info("create topic sql: %s"%sqlString)
        tdSql.error(sqlString)
        totalTopicNum += 0

        topicName = '_1'
        sqlString = "create topic %s as %s" %(topicName, queryString)
        tdLog.info("create topic sql: %s"%sqlString)
        tdSql.query(sqlString)
        totalTopicNum += 1
        
        topicName = 'a\\'
        sqlString = "create topic %s as %s" %(topicName, queryString)
        tdLog.info("create topic sql: %s"%sqlString)
        tdSql.error(sqlString)
        totalTopicNum += 0
   
        topicName = 'a\*\&\^'
        sqlString = "create topic %s as %s" %(topicName, queryString)
        tdLog.info("create topic sql: %s"%sqlString)
        tdSql.error(sqlString)
        totalTopicNum += 0
P
plum-lihui 已提交
312

P
plum-lihui 已提交
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
       
        str191char = 'a'
        for i in range(190):            
            str191char = ('%s%d'%(str191char, 1))        
        
        topicName = str191char + 'a'
        
        if (192 != len(topicName)):
            tdLog.exit("topicName len error")
        
        sqlString = "create topic %s as %s" %(topicName, queryString)
        tdLog.info("create topic sql: %s"%sqlString)
        tdSql.query(sqlString)
        totalTopicNum += 1

        topicName = str191char + '12'
        sqlString = "create topic %s as %s" %(topicName, queryString)
        tdLog.info("create topic sql: %s"%sqlString)
        tdSql.error(sqlString)
        totalTopicNum += 0

        # topicName = str192char + '12'
        # sqlString = "create topic %s as %s" %(topicName, queryString)
        # tdLog.info("create topic sql: %s"%sqlString)
        # tdSql.error(sqlString)
        # totalTopicNum += 0

        # check topic count
        tdSql.query('show topics;')
        topicNum = tdSql.queryRows
        tdLog.info(" topic count: %d"%(topicNum))
        if topicNum != totalTopicNum:
            tdLog.exit("show topics %d not equal expect num: %d"%(topicNum, totalTopicNum))
        
    
    tdLog.printNoPrefix("======== test case 2 end ...... ")
    
P
plum-lihui 已提交
350 351 352
    def run(self):
        self.prepareTestEnv()
        self.tmqCase1()
P
plum-lihui 已提交
353
        self.tmqCase2()
P
plum-lihui 已提交
354 355 356 357 358 359 360 361 362

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

event = threading.Event()

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