5dnode3mnodeSep1VnodeStopMnodeCreateStb.py 7.5 KB
Newer Older
haoranc's avatar
haoranc 已提交
1 2 3 4
from ssl import ALERT_DESCRIPTION_CERTIFICATE_UNOBTAINABLE
import taos
import sys
import time
G
Ganlin Zhao 已提交
5
import os
haoranc's avatar
haoranc 已提交
6 7 8 9 10 11 12 13 14

from util.log import *
from util.sql import *
from util.cases import *
from util.dnodes import TDDnodes
from util.dnodes import TDDnode
from util.cluster import *
sys.path.append("./6-cluster")
from clusterCommonCreate import *
G
Ganlin Zhao 已提交
15
from clusterCommonCheck import clusterComCheck
haoranc's avatar
haoranc 已提交
16 17 18 19 20

import time
import socket
import subprocess
from multiprocessing import Process
G
Ganlin Zhao 已提交
21
import threading
haoranc's avatar
haoranc 已提交
22 23 24 25 26 27
import time
import inspect
import ctypes

class TDTestCase:

28
    def init(self, conn, logSql, replicaVar=1):
haoranc's avatar
haoranc 已提交
29 30 31 32
        tdLog.debug(f"start to excute {__file__}")
        self.TDDnodes = None
        tdSql.init(conn.cursor())
        self.host = socket.gethostname()
33
        self.replicaVar =  int(replicaVar)
haoranc's avatar
haoranc 已提交
34 35 36 37 38 39 40 41 42 43

    def getBuildPath(self):
        selfPath = os.path.dirname(os.path.realpath(__file__))

        if ("community" in selfPath):
            projPath = selfPath[:selfPath.find("community")]
        else:
            projPath = selfPath[:selfPath.find("tests")]

        for root, dirs, files in os.walk(projPath):
haoranc's avatar
haoranc 已提交
44
            if ("taosd" in files or "taosd.exe" in files):
haoranc's avatar
haoranc 已提交
45 46 47 48 49 50 51 52 53 54 55 56 57 58
                rootRealPath = os.path.dirname(os.path.realpath(root))
                if ("packaging" not in rootRealPath):
                    buildPath = root[:len(root) - len("/build/bin")]
                    break
        return buildPath

    def _async_raise(self, tid, exctype):
        """raises the exception, performs cleanup if needed"""
        if not inspect.isclass(exctype):
            exctype = type(exctype)
        res = ctypes.pythonapi.PyThreadState_SetAsyncExc(tid, ctypes.py_object(exctype))
        if res == 0:
            raise ValueError("invalid thread id")
        elif res != 1:
G
Ganlin Zhao 已提交
59
            # """if it returns a number greater than one, you're in trouble,
haoranc's avatar
haoranc 已提交
60 61 62 63 64 65 66 67 68 69
            # and you should call it again with exc=NULL to revert the effect"""
            ctypes.pythonapi.PyThreadState_SetAsyncExc(tid, None)
            raise SystemError("PyThreadState_SetAsyncExc failed")

    def stopThread(self,thread):
        self._async_raise(thread.ident, SystemExit)


    def insertData(self,countstart,countstop):
        # fisrt add data : db\stable\childtable\general table
G
Ganlin Zhao 已提交
70

haoranc's avatar
haoranc 已提交
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
        for couti in range(countstart,countstop):
            tdLog.debug("drop database if exists db%d" %couti)
            tdSql.execute("drop database if exists db%d" %couti)
            print("create database if not exists db%d replica 1 duration 300" %couti)
            tdSql.execute("create database if not exists db%d replica 1 duration 300" %couti)
            tdSql.execute("use db%d" %couti)
            tdSql.execute(
            '''create table stb1
            (ts timestamp, c1 int, c2 bigint, c3 smallint, c4 tinyint, c5 float, c6 double, c7 bool, c8 binary(16),c9 nchar(32), c10 timestamp)
            tags (t1 int)
            '''
            )
            tdSql.execute(
                '''
                create table t1
                (ts timestamp, c1 int, c2 bigint, c3 smallint, c4 tinyint, c5 float, c6 double, c7 bool, c8 binary(16),c9 nchar(32), c10 timestamp)
                '''
            )
            for i in range(4):
                tdSql.execute(f'create table ct{i+1} using stb1 tags ( {i+1} )')


haoranc's avatar
haoranc 已提交
93
    def fiveDnodeThreeMnode(self,dnodeNumbers,mnodeNums,restartNumbers,stopRole):
haoranc's avatar
haoranc 已提交
94
        tdLog.printNoPrefix("======== test case 1: ")
haoranc's avatar
haoranc 已提交
95
        paraDict = {'dbName':     'db0_0',
haoranc's avatar
haoranc 已提交
96 97 98 99 100
                    'dropFlag':   1,
                    'event':      '',
                    'vgroups':    4,
                    'replica':    1,
                    'stbName':    'stb',
haoranc's avatar
haoranc 已提交
101
                    'stbNumbers': 80,
haoranc's avatar
haoranc 已提交
102 103 104 105 106 107
                    'colPrefix':  'c',
                    'tagPrefix':  't',
                    'colSchema':   [{'type': 'INT', 'count':1}, {'type': 'binary', 'len':20, 'count':1}],
                    'tagSchema':   [{'type': 'INT', 'count':1}, {'type': 'binary', 'len':20, 'count':1}],
                    'ctbPrefix':  'ctb',
                    'ctbNum':     1,
haoranc's avatar
haoranc 已提交
108
                    }
G
Ganlin Zhao 已提交
109

haoranc's avatar
haoranc 已提交
110
        dnodeNumbers=int(dnodeNumbers)
haoranc's avatar
haoranc 已提交
111
        mnodeNums=int(mnodeNums)
haoranc's avatar
haoranc 已提交
112 113 114
        vnodeNumbers = int(dnodeNumbers-mnodeNums)
        allStbNumbers=(paraDict['stbNumbers']*restartNumbers)
        dbNumbers = 1
115
        paraDict['replica'] = self.replicaVar
G
Ganlin Zhao 已提交
116

haoranc's avatar
haoranc 已提交
117
        tdLog.info("first check dnode and mnode")
X
Xiaoyu Wang 已提交
118
        tdSql.query("select * from information_schema.ins_dnodes;")
haoranc's avatar
haoranc 已提交
119 120
        tdSql.checkData(0,1,'%s:6030'%self.host)
        tdSql.checkData(4,1,'%s:6430'%self.host)
haoranc's avatar
haoranc 已提交
121
        clusterComCheck.checkDnodes(dnodeNumbers)
122 123 124 125
        
        #check mnode status
        tdLog.info("check mnode status")
        clusterComCheck.checkMnodeStatus(mnodeNums)
haoranc's avatar
haoranc 已提交
126

G
Ganlin Zhao 已提交
127
        # add some error operations and
haoranc's avatar
haoranc 已提交
128 129
        tdLog.info("Confirm the status of the dnode again")
        tdSql.error("create mnode on dnode 2")
X
Xiaoyu Wang 已提交
130
        tdSql.query("select * from information_schema.ins_dnodes;")
haoranc's avatar
haoranc 已提交
131
        print(tdSql.queryResult)
132
        clusterComCheck.checkDnodes(dnodeNumbers, 60)
haoranc's avatar
haoranc 已提交
133 134

        # create database and stable
haoranc's avatar
haoranc 已提交
135 136
        clusterComCreate.create_database(tdSql, paraDict["dbName"],paraDict["dropFlag"], paraDict["vgroups"],paraDict['replica'])

haoranc's avatar
haoranc 已提交
137
        tdDnodes=cluster.dnodes
haoranc's avatar
haoranc 已提交
138 139 140 141
        stopcount =0
        threads=[]
        for i in range(restartNumbers):
            stableName= '%s%d'%(paraDict['stbName'],i)
haoranc's avatar
haoranc 已提交
142 143
            newTdSql=tdCom.newTdSql()
            threads.append(threading.Thread(target=clusterComCreate.create_stables, args=(newTdSql, paraDict["dbName"],stableName,paraDict['stbNumbers'])))
haoranc's avatar
haoranc 已提交
144 145 146 147

        for tr in threads:
            tr.start()

G
Ganlin Zhao 已提交
148
        tdLog.info("Take turns stopping Mnodes ")
haoranc's avatar
haoranc 已提交
149 150 151 152 153 154 155 156

        while stopcount < restartNumbers:
            tdLog.info(" restart loop: %d"%stopcount )
            if stopRole == "mnode":
                for i in range(mnodeNums):
                    tdDnodes[i].stoptaosd()
                    # sleep(10)
                    tdDnodes[i].starttaosd()
G
Ganlin Zhao 已提交
157
                    # sleep(10)
haoranc's avatar
haoranc 已提交
158 159 160 161 162 163 164 165 166 167 168
            elif stopRole == "vnode":
                for i in range(vnodeNumbers):
                    tdDnodes[i+mnodeNums].stoptaosd()
                    # sleep(10)
                    tdDnodes[i+mnodeNums].starttaosd()
                    # sleep(10)
            elif stopRole == "dnode":
                for i in range(dnodeNumbers):
                    tdDnodes[i].stoptaosd()
                    # sleep(10)
                    tdDnodes[i].starttaosd()
G
Ganlin Zhao 已提交
169
                    # sleep(10)
haoranc's avatar
haoranc 已提交
170 171 172 173

            # dnodeNumbers don't include database of schema
            if clusterComCheck.checkDnodes(dnodeNumbers):
                tdLog.info("123")
haoranc's avatar
haoranc 已提交
174 175
            else:
                print("456")
G
Ganlin Zhao 已提交
176

haoranc's avatar
haoranc 已提交
177 178 179 180
                self.stopThread(threads)
                tdLog.exit("one or more of dnodes failed to start ")
                # self.check3mnode()
            stopcount+=1
G
Ganlin Zhao 已提交
181

haoranc's avatar
haoranc 已提交
182 183 184
        for tr in threads:
            tr.join()
        clusterComCheck.checkDnodes(dnodeNumbers)
haoranc's avatar
haoranc 已提交
185
        clusterComCheck.checkDbRows(dbNumbers)
haoranc's avatar
haoranc 已提交
186 187 188 189
        clusterComCheck.checkDb(dbNumbers,1,'db0')

        tdSql.execute("use %s" %(paraDict["dbName"]))
        tdSql.query("show stables")
haoranc's avatar
haoranc 已提交
190
        tdLog.debug("we find %d stables but exepect to create %d  stables "%(tdSql.queryRows,allStbNumbers))
haoranc's avatar
haoranc 已提交
191
        # # tdLog.info("check Stable Rows:")
haoranc's avatar
haoranc 已提交
192
        # tdSql.checkRows(allStbNumbers)
haoranc's avatar
haoranc 已提交
193 194


G
Ganlin Zhao 已提交
195
    def run(self):
haoranc's avatar
haoranc 已提交
196
        # print(self.master_dnode.cfgDict)
197
        self.fiveDnodeThreeMnode(dnodeNumbers=6,mnodeNums=3,restartNumbers=2,stopRole='mnode')
haoranc's avatar
haoranc 已提交
198 199 200 201 202 203

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

tdCases.addLinux(__file__, TDTestCase())
G
Ganlin Zhao 已提交
204
tdCases.addWindows(__file__, TDTestCase())