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

from util.log import *
from util.sql import *
from util.cases import *
from util.dnodes import TDDnodes
from util.dnodes import TDDnode
import time
import socket
import subprocess
haoranc's avatar
haoranc 已提交
16
from multiprocessing import Process
haoranc's avatar
haoranc 已提交
17 18 19 20 21
class MyDnodes(TDDnodes):
    def __init__(self ,dnodes_lists):
        super(MyDnodes,self).__init__()
        self.dnodes = dnodes_lists  # dnode must be TDDnode instance
        self.simDeployed = False
G
Ganlin Zhao 已提交
22

haoranc's avatar
haoranc 已提交
23 24
class TDTestCase:

25
    def init(self, conn, logSql, replicaVar=1):
haoranc's avatar
haoranc 已提交
26 27
        tdLog.debug(f"start to excute {__file__}")
        self.TDDnodes = None
28
        self.replicaVar =  int(replicaVar)
haoranc's avatar
haoranc 已提交
29 30 31

    def buildcluster(self,dnodenumber):
        self.depoly_cluster(dnodenumber)
haoranc's avatar
haoranc 已提交
32
        self.master_dnode = self.TDDnodes.dnodes[0]
haoranc's avatar
haoranc 已提交
33
        self.host=self.master_dnode.cfgDict["fqdn"]
haoranc's avatar
haoranc 已提交
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
        conn1 = taos.connect(self.master_dnode.cfgDict["fqdn"] , config=self.master_dnode.cfgDir)
        tdSql.init(conn1.cursor())

    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):
            if ("taosd" in files):
                rootRealPath = os.path.dirname(os.path.realpath(root))
                if ("packaging" not in rootRealPath):
                    buildPath = root[:len(root) - len("/build/bin")]
                    break
        return buildPath
G
Ganlin Zhao 已提交
52

haoranc's avatar
haoranc 已提交
53 54 55 56
    def insert_data(self,count):
        # fisrt add data : db\stable\childtable\general table
        for couti in count:
            tdSql.execute("drop database if exists db%d" %couti)
57
            tdSql.execute("create database if not exists db%d replica 1 duration 300" %couti)
haoranc's avatar
haoranc 已提交
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
            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 已提交
73

G
Ganlin Zhao 已提交
74
    def depoly_cluster(self ,dnodes_nums):
haoranc's avatar
haoranc 已提交
75 76

        testCluster = False
G
Ganlin Zhao 已提交
77
        valgrind = 0
haoranc's avatar
haoranc 已提交
78
        hostname = socket.gethostname()
S
Shengliang Guan 已提交
79
        tdLog.debug(hostname)
haoranc's avatar
haoranc 已提交
80 81
        dnodes = []
        start_port = 6030
haoranc's avatar
haoranc 已提交
82
        start_port_sec = 6130
haoranc's avatar
haoranc 已提交
83 84 85 86 87 88 89
        for num in range(1, dnodes_nums+1):
            dnode = TDDnode(num)
            dnode.addExtraCfg("firstEp", f"{hostname}:{start_port}")
            dnode.addExtraCfg("fqdn", f"{hostname}")
            dnode.addExtraCfg("serverPort", f"{start_port + (num-1)*100}")
            dnode.addExtraCfg("monitorFqdn", hostname)
            dnode.addExtraCfg("monitorPort", 7043)
haoranc's avatar
haoranc 已提交
90
            dnode.addExtraCfg("secondEp", f"{hostname}:{start_port_sec}")
haoranc's avatar
haoranc 已提交
91
            dnodes.append(dnode)
G
Ganlin Zhao 已提交
92

haoranc's avatar
haoranc 已提交
93 94 95 96 97 98 99
        self.TDDnodes = MyDnodes(dnodes)
        self.TDDnodes.init("")
        self.TDDnodes.setTestCluster(testCluster)
        self.TDDnodes.setValgrind(valgrind)
        self.TDDnodes.stopAll()
        for dnode in self.TDDnodes.dnodes:
            self.TDDnodes.deploy(dnode.index,{})
G
Ganlin Zhao 已提交
100

haoranc's avatar
haoranc 已提交
101 102 103
        for dnode in self.TDDnodes.dnodes:
            self.TDDnodes.starttaosd(dnode.index)

G
Ganlin Zhao 已提交
104
        # create cluster
haoranc's avatar
haoranc 已提交
105
        for dnode in self.TDDnodes.dnodes[1:]:
S
Shengliang Guan 已提交
106
            # tdLog.debug(dnode.cfgDict)
haoranc's avatar
haoranc 已提交
107 108 109 110
            dnode_id = dnode.cfgDict["fqdn"] +  ":" +dnode.cfgDict["serverPort"]
            dnode_first_host = dnode.cfgDict["firstEp"].split(":")[0]
            dnode_first_port = dnode.cfgDict["firstEp"].split(":")[-1]
            cmd = f" taos -h {dnode_first_host} -P {dnode_first_port} -s ' create dnode \"{dnode_id} \" ' ;"
S
Shengliang Guan 已提交
111
            tdLog.debug(cmd)
haoranc's avatar
haoranc 已提交
112
            os.system(cmd)
G
Ganlin Zhao 已提交
113

haoranc's avatar
haoranc 已提交
114
        time.sleep(2)
haoranc's avatar
haoranc 已提交
115 116 117 118 119 120
        tdLog.info(" create cluster with %d dnode  done! " %dnodes_nums)

    def check3mnode(self):
        count=0
        while count < 10:
            time.sleep(1)
X
Xiaoyu Wang 已提交
121
            tdSql.query("select * from information_schema.ins_mnodes;")
G
Ganlin Zhao 已提交
122 123
            if tdSql.checkRows(3) :
                tdLog.debug("mnode is  three nodes")
haoranc's avatar
haoranc 已提交
124 125 126
            if  tdSql.queryResult[0][2]=='leader' :
                if  tdSql.queryResult[1][2]=='follower':
                    if  tdSql.queryResult[2][2]=='follower':
S
Shengliang Guan 已提交
127
                        tdLog.debug("three mnodes is ready in 10s")
haoranc's avatar
haoranc 已提交
128 129 130 131
                        break
            elif tdSql.queryResult[0][2]=='follower' :
                if  tdSql.queryResult[1][2]=='leader':
                    if  tdSql.queryResult[2][2]=='follower':
S
Shengliang Guan 已提交
132
                        tdLog.debug("three mnodes is ready in 10s")
G
Ganlin Zhao 已提交
133
                        break
haoranc's avatar
haoranc 已提交
134 135 136
            elif tdSql.queryResult[0][2]=='follower' :
                if  tdSql.queryResult[1][2]=='follower':
                    if  tdSql.queryResult[2][2]=='leader':
S
Shengliang Guan 已提交
137
                        tdLog.debug("three mnodes is ready in 10s")
G
Ganlin Zhao 已提交
138
                        break
haoranc's avatar
haoranc 已提交
139 140
            count+=1
        else:
S
Shengliang Guan 已提交
141 142
            tdLog.debug(tdSql.queryResult)
            tdLog.debug("three mnodes is not ready in 10s ")
haoranc's avatar
haoranc 已提交
143
            return -1
haoranc's avatar
haoranc 已提交
144

X
Xiaoyu Wang 已提交
145
        tdSql.query("select * from information_schema.ins_mnodes;")
G
Ganlin Zhao 已提交
146
        tdSql.checkRows(3)
haoranc's avatar
haoranc 已提交
147
        tdSql.checkData(0,1,'%s:6030'%self.host)
haoranc's avatar
haoranc 已提交
148
        tdSql.checkData(0,3,'ready')
haoranc's avatar
haoranc 已提交
149 150 151 152
        tdSql.checkData(1,1,'%s:6130'%self.host)
        tdSql.checkData(1,3,'ready')
        tdSql.checkData(2,1,'%s:6230'%self.host)
        tdSql.checkData(2,3,'ready')
haoranc's avatar
haoranc 已提交
153

haoranc's avatar
haoranc 已提交
154 155 156 157
    def check3mnode1off(self):
        count=0
        while count < 10:
            time.sleep(1)
X
Xiaoyu Wang 已提交
158
            tdSql.query("select * from information_schema.ins_mnodes;")
haoranc's avatar
haoranc 已提交
159
            if tdSql.checkRows(3) :
S
Shengliang Guan 已提交
160
                tdLog.debug("mnode is  three nodes")
haoranc's avatar
haoranc 已提交
161 162 163
            if  tdSql.queryResult[0][2]=='offline' :
                if  tdSql.queryResult[1][2]=='leader':
                    if  tdSql.queryResult[2][2]=='follower':
S
Shengliang Guan 已提交
164
                        tdLog.debug("stop mnodes  on dnode 2 successfully in 10s")
haoranc's avatar
haoranc 已提交
165 166 167
                        break
                elif tdSql.queryResult[1][2]=='follower':
                    if  tdSql.queryResult[2][2]=='leader':
S
Shengliang Guan 已提交
168
                        tdLog.debug("stop mnodes  on dnode 2 successfully in 10s")
haoranc's avatar
haoranc 已提交
169
                        break
haoranc's avatar
haoranc 已提交
170 171
            count+=1
        else:
S
Shengliang Guan 已提交
172
            tdLog.debug("stop mnodes  on dnode 2 failed in 10s ")
G
Ganlin Zhao 已提交
173
            return -1
haoranc's avatar
haoranc 已提交
174
        tdSql.error("drop mnode on dnode 1;")
haoranc's avatar
haoranc 已提交
175

X
Xiaoyu Wang 已提交
176
        tdSql.query("select * from information_schema.ins_mnodes;")
G
Ganlin Zhao 已提交
177
        tdSql.checkRows(3)
haoranc's avatar
haoranc 已提交
178 179 180 181 182 183 184
        tdSql.checkData(0,1,'%s:6030'%self.host)
        tdSql.checkData(0,2,'offline')
        tdSql.checkData(0,3,'ready')
        tdSql.checkData(1,1,'%s:6130'%self.host)
        tdSql.checkData(1,3,'ready')
        tdSql.checkData(2,1,'%s:6230'%self.host)
        tdSql.checkData(2,3,'ready')
haoranc's avatar
haoranc 已提交
185

haoranc's avatar
haoranc 已提交
186
    def check3mnode2off(self):
haoranc's avatar
haoranc 已提交
187
        count=0
haoranc's avatar
haoranc 已提交
188
        while count < 40:
haoranc's avatar
haoranc 已提交
189
            time.sleep(1)
X
Xiaoyu Wang 已提交
190
            tdSql.query("select * from information_schema.ins_mnodes;")
haoranc's avatar
haoranc 已提交
191
            if tdSql.checkRows(3) :
S
Shengliang Guan 已提交
192
                tdLog.debug("mnode is  three nodes")
haoranc's avatar
haoranc 已提交
193 194 195
            if  tdSql.queryResult[0][2]=='leader' :
                if  tdSql.queryResult[1][2]=='offline':
                    if  tdSql.queryResult[2][2]=='follower':
S
Shengliang Guan 已提交
196
                        tdLog.debug("stop mnodes  on dnode 2 successfully in 10s")
haoranc's avatar
haoranc 已提交
197
                        break
haoranc's avatar
haoranc 已提交
198 199
            count+=1
        else:
S
Shengliang Guan 已提交
200
            tdLog.debug("stop mnodes  on dnode 2 failed in 10s ")
haoranc's avatar
haoranc 已提交
201 202
            return -1
        tdSql.error("drop mnode on dnode 2;")
haoranc's avatar
haoranc 已提交
203

X
Xiaoyu Wang 已提交
204
        tdSql.query("select * from information_schema.ins_mnodes;")
G
Ganlin Zhao 已提交
205
        tdSql.checkRows(3)
haoranc's avatar
haoranc 已提交
206
        tdSql.checkData(0,1,'%s:6030'%self.host)
haoranc's avatar
haoranc 已提交
207 208
        tdSql.checkData(0,2,'leader')
        tdSql.checkData(0,3,'ready')
haoranc's avatar
haoranc 已提交
209 210
        tdSql.checkData(1,1,'%s:6130'%self.host)
        tdSql.checkData(1,2,'offline')
haoranc's avatar
haoranc 已提交
211
        tdSql.checkData(1,3,'ready')
haoranc's avatar
haoranc 已提交
212
        tdSql.checkData(2,1,'%s:6230'%self.host)
haoranc's avatar
haoranc 已提交
213 214 215
        tdSql.checkData(2,2,'follower')
        tdSql.checkData(2,3,'ready')

haoranc's avatar
haoranc 已提交
216 217 218 219
    def check3mnode3off(self):
        count=0
        while count < 10:
            time.sleep(1)
X
Xiaoyu Wang 已提交
220
            tdSql.query("select * from information_schema.ins_mnodes;")
haoranc's avatar
haoranc 已提交
221
            if tdSql.checkRows(3) :
S
Shengliang Guan 已提交
222
                tdLog.debug("mnode is  three nodes")
haoranc's avatar
haoranc 已提交
223 224 225
            if  tdSql.queryResult[0][2]=='leader' :
                if  tdSql.queryResult[2][2]=='offline':
                    if  tdSql.queryResult[1][2]=='follower':
S
Shengliang Guan 已提交
226
                        tdLog.debug("stop mnodes  on dnode 3 successfully in 10s")
haoranc's avatar
haoranc 已提交
227
                        break
haoranc's avatar
haoranc 已提交
228 229
            count+=1
        else:
S
Shengliang Guan 已提交
230
            tdLog.debug("stop mnodes  on dnode 3 failed in 10s")
haoranc's avatar
haoranc 已提交
231 232
            return -1
        tdSql.error("drop mnode on dnode 3;")
X
Xiaoyu Wang 已提交
233
        tdSql.query("select * from information_schema.ins_mnodes;")
G
Ganlin Zhao 已提交
234
        tdSql.checkRows(3)
haoranc's avatar
haoranc 已提交
235 236 237 238 239 240 241 242 243
        tdSql.checkData(0,1,'%s:6030'%self.host)
        tdSql.checkData(0,2,'leader')
        tdSql.checkData(0,3,'ready')
        tdSql.checkData(1,1,'%s:6130'%self.host)
        tdSql.checkData(1,2,'follower')
        tdSql.checkData(1,3,'ready')
        tdSql.checkData(2,1,'%s:6230'%self.host)
        tdSql.checkData(2,2,'offline')
        tdSql.checkData(2,3,'ready')
haoranc's avatar
haoranc 已提交
244

haoranc's avatar
haoranc 已提交
245 246


haoranc's avatar
haoranc 已提交
247
    def five_dnode_three_mnode(self):
X
Xiaoyu Wang 已提交
248
        tdSql.query("select * from information_schema.ins_dnodes;")
haoranc's avatar
haoranc 已提交
249 250 251 252
        tdSql.checkData(0,1,'%s:6030'%self.host)
        tdSql.checkData(4,1,'%s:6430'%self.host)
        tdSql.checkData(0,4,'ready')
        tdSql.checkData(4,4,'ready')
X
Xiaoyu Wang 已提交
253
        tdSql.query("select * from information_schema.ins_mnodes;")
G
Ganlin Zhao 已提交
254
        tdSql.checkRows(1)
haoranc's avatar
haoranc 已提交
255 256 257 258 259 260 261 262 263 264
        tdSql.checkData(0,1,'%s:6030'%self.host)
        tdSql.checkData(0,2,'leader')
        tdSql.checkData(0,3,'ready')

        # fisr add three mnodes;
        tdSql.execute("create mnode on dnode 2")
        tdSql.execute("create mnode on dnode 3")

        # fisrt check statut ready
        self.check3mnode()
haoranc's avatar
haoranc 已提交
265
        tdSql.error("create mnode on dnode 2")
haoranc's avatar
haoranc 已提交
266 267 268 269 270
        tdSql.error("create mnode on dnode 1")
        tdSql.error("create mnode on dnode 3")

        tdSql.error("drop mnode on dnode 1")

X
Xiaoyu Wang 已提交
271
        tdSql.query("select * from information_schema.ins_dnodes;")
S
Shengliang Guan 已提交
272
        tdLog.debug(tdSql.queryResult)
haoranc's avatar
haoranc 已提交
273

G
Ganlin Zhao 已提交
274 275
        #  drop follower of mnode
        dropcount =0
haoranc's avatar
haoranc 已提交
276
        while dropcount <= 10:
haoranc's avatar
haoranc 已提交
277
            for i in range(1,3):
haoranc's avatar
haoranc 已提交
278
                tdLog.debug("drop mnode on dnode %d"%(i+1))
haoranc's avatar
haoranc 已提交
279
                tdSql.execute("drop mnode on dnode %d"%(i+1))
X
Xiaoyu Wang 已提交
280
                tdSql.query("select * from information_schema.ins_mnodes;")
haoranc's avatar
haoranc 已提交
281 282 283
                count=0
                while count<10:
                    time.sleep(1)
X
Xiaoyu Wang 已提交
284
                    tdSql.query("select * from information_schema.ins_mnodes;")
haoranc's avatar
haoranc 已提交
285
                    if tdSql.checkRows(2):
S
Shengliang Guan 已提交
286
                        tdLog.debug("drop mnode %d successfully"%(i+1))
haoranc's avatar
haoranc 已提交
287 288
                        break
                    count+=1
haoranc's avatar
haoranc 已提交
289
                tdLog.debug("create mnode on dnode %d"%(i+1))
haoranc's avatar
haoranc 已提交
290
                tdSql.execute("create mnode on dnode %d"%(i+1))
haoranc's avatar
haoranc 已提交
291 292 293
                count=0
                while count<10:
                    time.sleep(1)
X
Xiaoyu Wang 已提交
294
                    tdSql.query("select * from information_schema.ins_mnodes;")
haoranc's avatar
haoranc 已提交
295
                    if tdSql.checkRows(3):
S
Shengliang Guan 已提交
296
                        tdLog.debug("drop mnode %d successfully"%(i+1))
haoranc's avatar
haoranc 已提交
297 298
                        break
                    count+=1
haoranc's avatar
haoranc 已提交
299 300
            dropcount+=1
        self.check3mnode()
haoranc's avatar
haoranc 已提交
301 302 303 304 305 306 307 308 309


    def getConnection(self, dnode):
        host = dnode.cfgDict["fqdn"]
        port = dnode.cfgDict["serverPort"]
        config_dir = dnode.cfgDir
        return taos.connect(host=host, port=int(port), config=config_dir)


G
Ganlin Zhao 已提交
310
    def run(self):
S
Shengliang Guan 已提交
311
        # tdLog.debug(self.master_dnode.cfgDict)
haoranc's avatar
haoranc 已提交
312
        self.buildcluster(5)
haoranc's avatar
haoranc 已提交
313
        self.five_dnode_three_mnode()
haoranc's avatar
haoranc 已提交
314 315 316 317 318 319

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

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