diff --git a/src/client/src/tscServer.c b/src/client/src/tscServer.c
index 3042e3e59b..46c7dd589b 100644
--- a/src/client/src/tscServer.c
+++ b/src/client/src/tscServer.c
@@ -517,7 +517,8 @@ int tscBuildRetrieveMsg(SSqlObj *pSql, SSqlInfo *pInfo) {
pRetrieveMsg->free = htons(pQueryInfo->type);
pMsg += sizeof(pQueryInfo->type);
- pRetrieveMsg->header.vgId = htonl(1);
+ STableMeta* pTableMeta = pQueryInfo->pTableMetaInfo[0]->pTableMeta;
+ pRetrieveMsg->header.vgId = htonl(pTableMeta->vgId);
pMsg += sizeof(SRetrieveTableMsg);
pRetrieveMsg->header.contLen = htonl(pSql->cmd.payloadLen);
diff --git a/src/dnode/CMakeLists.txt b/src/dnode/CMakeLists.txt
index 4bd89e238e..a81f8c0c9d 100644
--- a/src/dnode/CMakeLists.txt
+++ b/src/dnode/CMakeLists.txt
@@ -28,7 +28,7 @@ IF ((TD_LINUX_64) OR (TD_LINUX_32 AND TD_ARM))
ENDIF ()
IF (TD_VPEER)
- TARGET_LINK_LIBRARIES(taosd balance)
+ TARGET_LINK_LIBRARIES(taosd balance sync)
ENDIF ()
SET(PREPARE_ENV_CMD "prepare_env_cmd")
diff --git a/src/dnode/src/dnodeMain.c b/src/dnode/src/dnodeMain.c
index e2de9bf586..01e2c4dfcc 100644
--- a/src/dnode/src/dnodeMain.c
+++ b/src/dnode/src/dnodeMain.c
@@ -28,7 +28,7 @@
#include "dnodeRead.h"
#include "dnodeShell.h"
#include "dnodeWrite.h"
-#include "mgmtGrant.h"
+#include "tgrant.h"
static int32_t dnodeInitSystem();
static int32_t dnodeInitStorage();
@@ -220,7 +220,6 @@ static int32_t dnodeInitStorage() {
sprintf(tsMnodeDir, "%s/mnode", dataDir);
sprintf(tsVnodeDir, "%s/vnode", dataDir);
sprintf(tsDnodeDir, "%s/dnode", dataDir);
- mkdir(tsMnodeDir, 0755);
mkdir(tsVnodeDir, 0755);
mkdir(tsDnodeDir, 0755);
diff --git a/src/dnode/src/dnodeMgmt.c b/src/dnode/src/dnodeMgmt.c
index 5f1e7a7a94..da80206e4c 100644
--- a/src/dnode/src/dnodeMgmt.c
+++ b/src/dnode/src/dnodeMgmt.c
@@ -20,7 +20,6 @@
#include "taosmsg.h"
#include "tlog.h"
#include "trpc.h"
-#include "tstatus.h"
#include "tsdb.h"
#include "ttime.h"
#include "ttimer.h"
@@ -132,7 +131,7 @@ static int32_t dnodeOpenVnodes() {
char vnodeDir[TSDB_FILENAME_LEN * 3];
int32_t failed = 0;
- int32_t *vnodeList = (int32_t *)malloc(sizeof(int32_t) * 10000);
+ int32_t *vnodeList = (int32_t *)malloc(sizeof(int32_t) * TSDB_MAX_VNODES);
int32_t numOfVnodes = dnodeGetVnodeList(vnodeList);
for (int32_t i = 0; i < numOfVnodes; ++i) {
@@ -147,7 +146,7 @@ static int32_t dnodeOpenVnodes() {
}
static void dnodeCloseVnodes() {
- int32_t *vnodeList = (int32_t *)malloc(sizeof(int32_t) * 10000);
+ int32_t *vnodeList = (int32_t *)malloc(sizeof(int32_t) * TSDB_MAX_VNODES);
int32_t numOfVnodes = dnodeGetVnodeList(vnodeList);
for (int32_t i = 0; i < numOfVnodes; ++i) {
diff --git a/src/inc/dnode.h b/src/inc/dnode.h
index fa5e3a3b3d..db39906c68 100644
--- a/src/inc/dnode.h
+++ b/src/inc/dnode.h
@@ -42,7 +42,7 @@ void *dnodeAllocateWqueue(void *pVnode);
void dnodeFreeWqueue(void *queue);
void *dnodeAllocateRqueue(void *pVnode);
void dnodeFreeRqueue(void *rqueue);
-void dnodeSendWriteResponse(void *pVnode, void *param, int32_t code);
+void dnodeSendRpcWriteRsp(void *pVnode, void *param, int32_t code);
#ifdef __cplusplus
}
diff --git a/src/inc/mnode.h b/src/inc/mnode.h
index 7c59a5a4b6..903b172068 100644
--- a/src/inc/mnode.h
+++ b/src/inc/mnode.h
@@ -21,7 +21,6 @@ extern "C" {
#endif
#include "os.h"
-
#include "taosdef.h"
#include "taosmsg.h"
#include "taoserror.h"
@@ -40,7 +39,8 @@ extern "C" {
struct _vg_obj;
struct _db_obj;
-struct _acctObj;
+struct _acct_obj;
+struct _user_obj;
typedef struct {
int32_t mnodeId;
@@ -65,7 +65,7 @@ typedef struct {
void *pSync;
} SMnodeObj;
-typedef struct {
+typedef struct _dnode_obj {
int32_t dnodeId;
uint32_t privateIp;
uint32_t publicIp;
@@ -79,16 +79,15 @@ typedef struct {
uint16_t slot;
uint16_t numOfCores; // from dnode status msg
int8_t alternativeRole; // from dnode status msg, 0-any, 1-mgmt, 2-dnode
- int8_t lbStatus; // set in balance function
- float lbScore; // calc in balance function
+ int8_t status; // set in balance function
int32_t customScore; // config by user
char dnodeName[TSDB_DNODE_NAME_LEN + 1];
int8_t reserved[15];
int8_t updateEnd[1];
int32_t refCount;
SVnodeLoad vload[TSDB_MAX_VNODES];
- int32_t status;
uint32_t lastReboot; // time stamp for last reboot
+ float score; // calc in balance function
float diskAvailable; // from dnode status msg
int16_t diskAvgUsage; // calc from sys.disk
int16_t cpuAvgUsage; // calc from sys.cpu
@@ -147,9 +146,9 @@ typedef struct _vg_obj {
int64_t createdTime;
SVnodeGid vnodeGid[TSDB_VNODES_SUPPORT];
int32_t numOfVnodes;
- int32_t lbIp;
+ int32_t lbDnodeId;
int32_t lbTime;
- int8_t lbStatus;
+ int8_t status;
int8_t reserved[14];
int8_t updateEnd[1];
int32_t refCount;
@@ -162,7 +161,7 @@ typedef struct _vg_obj {
typedef struct _db_obj {
char name[TSDB_DB_NAME_LEN + 1];
- int8_t dirty;
+ int8_t status;
int64_t createdTime;
SDbCfg cfg;
int8_t reserved[15];
@@ -173,7 +172,7 @@ typedef struct _db_obj {
int32_t numOfSuperTables;
SVgObj *pHead;
SVgObj *pTail;
- struct _acctObj *pAcct;
+ struct _acct_obj *pAcct;
} SDbObj;
typedef struct _user_obj {
@@ -186,7 +185,7 @@ typedef struct _user_obj {
int8_t reserved[13];
int8_t updateEnd[1];
int32_t refCount;
- struct _acctObj * pAcct;
+ struct _acct_obj * pAcct;
SQqueryList * pQList; // query list
SStreamList * pSList; // stream list
} SUserObj;
@@ -209,7 +208,7 @@ typedef struct {
int8_t accessState; // Checked by mgmt heartbeat message
} SAcctInfo;
-typedef struct _acctObj {
+typedef struct _acct_obj {
char user[TSDB_USER_LEN + 1];
char pass[TSDB_KEY_LEN + 1];
SAcctCfg cfg;
diff --git a/src/mnode/inc/mgmtAcct.h b/src/inc/taccount.h
similarity index 56%
rename from src/mnode/inc/mgmtAcct.h
rename to src/inc/taccount.h
index 1f8dc5c74a..18a974a574 100644
--- a/src/mnode/inc/mgmtAcct.h
+++ b/src/inc/taccount.h
@@ -13,31 +13,34 @@
* along with this program. If not, see .
*/
-#ifndef TDENGINE_MGMT_ACCT_H
-#define TDENGINE_MGMT_ACCT_H
+#ifndef TDENGINE_ACCT_H
+#define TDENGINE_ACCT_H
#ifdef __cplusplus
extern "C" {
#endif
-#include "mnode.h"
+struct _acct_obj;
+struct _user_obj;
+struct _db_obj;
+
typedef enum {
TSDB_ACCT_USER,
TSDB_ACCT_DB,
TSDB_ACCT_TABLE
} EAcctGrantType;
-int32_t acctInit();
-void acctCleanUp();
-SAcctObj *acctGetAcct(char *acctName);
-void acctIncRef(SAcctObj *pAcct);
-void acctDecRef(SAcctObj *pAcct);
-int32_t acctCheck(SAcctObj *pAcct, EAcctGrantType type);
+int32_t acctInit();
+void acctCleanUp();
+void *acctGetAcct(char *acctName);
+void acctIncRef(struct _acct_obj *pAcct);
+void acctReleaseAcct(struct _acct_obj *pAcct);
+int32_t acctCheck(struct _acct_obj *pAcct, EAcctGrantType type);
-void acctAddDb(SAcctObj *pAcct, SDbObj *pDb);
-void acctRemoveDb(SAcctObj *pAcct, SDbObj *pDb);
-void acctAddUser(SAcctObj *pAcct, SUserObj *pUser);
-void acctRemoveUser(SAcctObj *pAcct, SUserObj *pUser);
+void acctAddDb(struct _acct_obj *pAcct, struct _db_obj *pDb);
+void acctRemoveDb(struct _acct_obj *pAcct, struct _db_obj *pDb);
+void acctAddUser(struct _acct_obj *pAcct, struct _user_obj *pUser);
+void acctRemoveUser(struct _acct_obj *pAcct, struct _user_obj *pUser);
#ifdef __cplusplus
}
diff --git a/src/mnode/inc/mgmtBalance.h b/src/inc/tadmin.h
similarity index 72%
rename from src/mnode/inc/mgmtBalance.h
rename to src/inc/tadmin.h
index 05f2ed94a7..4a883965f4 100644
--- a/src/mnode/inc/mgmtBalance.h
+++ b/src/inc/tadmin.h
@@ -13,18 +13,22 @@
* along with this program. If not, see .
*/
-#ifndef TDENGINE_MGMT_BALANCE_H
-#define TDENGINE_MGMT_BALANCE_H
+#ifndef TDENGINE_ADMIN_H
+#define TDENGINE_ADMIN_H
#ifdef __cplusplus
extern "C" {
#endif
-#include "mnode.h"
-int32_t mgmtInitBalance();
-void mgmtCleanupBalance();
-void mgmtBalanceNotify() ;
-int32_t mgmtAllocVnodes(SVgObj *pVgroup);
+#include
+#include
+
+void adminInit();
+
+struct _http_server_obj_;
+
+extern void (*adminInitHandleFp)(struct _http_server_obj_* pServer);
+extern void (*opInitHandleFp)(struct _http_server_obj_* pServer);
#ifdef __cplusplus
}
diff --git a/src/inc/taosmsg.h b/src/inc/taosmsg.h
index 3fae17170a..5f07d6ec99 100644
--- a/src/inc/taosmsg.h
+++ b/src/inc/taosmsg.h
@@ -515,7 +515,7 @@ typedef struct {
int64_t compStorage;
int64_t pointsWritten;
uint8_t status;
- uint8_t syncStatus;
+ uint8_t role;
uint8_t accessState;
uint8_t reserved[5];
} SVnodeLoad;
diff --git a/src/mnode/inc/mgmtDnode.h b/src/inc/tbalance.h
similarity index 64%
rename from src/mnode/inc/mgmtDnode.h
rename to src/inc/tbalance.h
index f262cd3c5e..8cf8cb9fb9 100644
--- a/src/mnode/inc/mgmtDnode.h
+++ b/src/inc/tbalance.h
@@ -13,22 +13,26 @@
* along with this program. If not, see .
*/
-#ifndef TDENGINE_MGMT_DNODE_H
-#define TDENGINE_MGMT_DNODE_H
+#ifndef TDENGINE_BALANCE_H
+#define TDENGINE_BALANCE_H
#ifdef __cplusplus
extern "C" {
#endif
-#include "mnode.h"
-int32_t mgmtInitDnodes();
-void mgmtCleanUpDnodes();
-int32_t mgmtGetDnodesNum();
-void * mgmtGetNextDnode(void *pNode, SDnodeObj **pDnode);
-void mgmtIncDnodeRef(SDnodeObj *pDnode);
-void mgmtDecDnodeRef(SDnodeObj *pDnode);
-SDnodeObj* mgmtGetDnode(int32_t dnodeId);
-SDnodeObj* mgmtGetDnodeByIp(uint32_t ip);
+#include
+#include
+#include
+
+struct _db_obj;
+struct _vg_obj;
+struct _dnode_obj;
+
+int32_t balanceInit();
+void balanceCleanUp();
+void balanceNotify();
+int32_t balanceAllocVnodes(struct _vg_obj *pVgroup);
+int32_t balanceDropDnode(struct _dnode_obj *pDnode);
#ifdef __cplusplus
}
diff --git a/src/inc/tcluster.h b/src/inc/tcluster.h
new file mode 100644
index 0000000000..769a819b90
--- /dev/null
+++ b/src/inc/tcluster.h
@@ -0,0 +1,55 @@
+/*
+ * Copyright (c) 2019 TAOS Data, Inc.
+ *
+ * This program is free software: you can use, redistribute, and/or modify
+ * it under the terms of the GNU Affero General Public License, version 3
+ * or later ("AGPL"), as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program. If not, see .
+ */
+
+#ifndef TDENGINE_CLUSTER_H
+#define TDENGINE_CLUSTER_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include
+#include
+#include
+
+struct _dnode_obj;
+
+enum _TAOS_DN_STATUS {
+ TAOS_DN_STATUS_OFFLINE,
+ TAOS_DN_STATUS_DROPPING,
+ TAOS_DN_STATUS_BALANCING,
+ TAOS_DN_STATUS_READY
+};
+
+int32_t clusterInit();
+void clusterCleanUp();
+char* clusterGetDnodeStatusStr(int32_t dnodeStatus);
+bool clusterCheckModuleInDnode(struct _dnode_obj *pDnode, int moduleType);
+
+int32_t clusterInitDnodes();
+void clusterCleanupDnodes();
+int32_t clusterGetDnodesNum();
+void * clusterGetNextDnode(void *pNode, struct _dnode_obj **pDnode);
+void clusterReleaseDnode(struct _dnode_obj *pDnode);
+void * clusterGetDnode(int32_t dnodeId);
+void * clusterGetDnodeByIp(uint32_t ip);
+void clusterUpdateDnode(struct _dnode_obj *pDnode);
+int32_t clusterDropDnode(struct _dnode_obj *pDnode);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
diff --git a/src/mnode/inc/mgmtGrant.h b/src/inc/tgrant.h
similarity index 95%
rename from src/mnode/inc/mgmtGrant.h
rename to src/inc/tgrant.h
index 92b20532c4..f62a521b6c 100644
--- a/src/mnode/inc/mgmtGrant.h
+++ b/src/inc/tgrant.h
@@ -13,8 +13,8 @@
* along with this program. If not, see .
*/
-#ifndef TDENGINE_MGMT_GRANT_H
-#define TDENGINE_MGMT_GRANT_H
+#ifndef TDENGINE_GTANT_H
+#define TDENGINE_GTANT_H
#ifdef __cplusplus
"C" {
diff --git a/src/inc/tsync.h b/src/inc/tsync.h
index 39c116c9cb..ea20ceec79 100644
--- a/src/inc/tsync.h
+++ b/src/inc/tsync.h
@@ -56,27 +56,24 @@ typedef struct {
} SNodesRole;
typedef struct {
- char label[20]; // for debug purpose
- char path[128]; // path to the file
- int8_t replica; // number of replications, >=1
- int8_t quorum; // number of confirms required, >=1
int32_t vgId; // vgroup ID
- void *ahandle; // handle provided by APP
uint64_t version; // initial version
- uint32_t arbitratorIp;
- SNodeInfo nodeInfo[TAOS_SYNC_MAX_REPLICA];
+ SSyncCfg syncCfg; // configuration from mgmt
+ char path[128]; // path to the file
+ void *ahandle; // handle provided by APP
+
// if name is null, get the file from index or after, used by master
// if name is provided, get the named file at the specified index, used by unsynced node
// it returns the file magic number and size, if file not there, magic shall be 0.
- uint32_t (*getFileInfo)(char *name, int *index, int *size);
+ uint32_t (*getFileInfo)(void *ahandle, char *name, uint32_t *index, int32_t *size);
// get the wal file from index or after
// return value, -1: error, 1:more wal files, 0:last WAL. if name[0]==0, no WAL file
- int (*getWalInfo)(char *name, int *index);
+ int (*getWalInfo)(void *ahandle, char *name, uint32_t *index);
// when a forward pkt is received, call this to handle data
- int (*writeToCache)(void *ahandle, SWalHead *, int type);
+ int (*writeToCache)(void *ahandle, void *pHead, int type);
// when forward is confirmed by peer, master call this API to notify app
void (*confirmForward)(void *ahandle, void *mhandle, int32_t code);
@@ -89,19 +86,21 @@ typedef void* tsync_h;
tsync_h syncStart(SSyncInfo *);
void syncStop(tsync_h shandle);
-int syncReconfig(tsync_h shandle, SSyncInfo *);
-int syncForwardToPeer(tsync_h shandle, SWalHead *pHead, void *mhandle);
+int syncReconfig(tsync_h shandle, SSyncCfg *);
+int syncForwardToPeer(tsync_h shandle, void *pHead, void *mhandle);
void syncConfirmForward(tsync_h shandle, uint64_t version, int32_t code);
void syncRecover(tsync_h shandle); // recover from other nodes:
int syncGetNodesRole(tsync_h shandle, SNodesRole *);
extern char *syncRole[];
+//global configurable parameters
extern int tsMaxSyncNum;
extern int tsSyncTcpThreads;
extern int tsMaxWatchFiles;
extern short tsSyncPort;
extern int tsMaxFwdInfo;
+extern int sDebugFlag;
#ifdef __cplusplus
}
diff --git a/src/inc/twal.h b/src/inc/twal.h
index 3648f5ae29..53d4f835b0 100644
--- a/src/inc/twal.h
+++ b/src/inc/twal.h
@@ -40,12 +40,12 @@ typedef struct {
typedef void* twal_h; // WAL HANDLE
-twal_h walOpen(char *path, int max, int level);
+twal_h walOpen(char *path, SWalCfg *pCfg);
void walClose(twal_h);
int walRenew(twal_h);
int walWrite(twal_h, SWalHead *);
void walFsync(twal_h);
-int walRestore(twal_h, void *pVnode, int (*writeFp)(void *ahandle, SWalHead *pHead, int type));
+int walRestore(twal_h, void *pVnode, int (*writeFp)(void *ahandle, void *pHead, int type));
int walGetWalFile(twal_h, char *name, uint32_t *index);
extern int wDebugFlag;
diff --git a/src/inc/vnode.h b/src/inc/vnode.h
index 3097343a48..e54820dffd 100644
--- a/src/inc/vnode.h
+++ b/src/inc/vnode.h
@@ -20,6 +20,14 @@
extern "C" {
#endif
+typedef enum _VN_STATUS {
+ TAOS_VN_STATUS_INIT,
+ TAOS_VN_STATUS_CREATING,
+ TAOS_VN_STATUS_READY,
+ TAOS_VN_STATUS_CLOSING,
+ TAOS_VN_STATUS_DELETING,
+} EVnStatus;
+
typedef struct {
int len;
int code;
@@ -41,7 +49,7 @@ void* vnodeGetWqueue(int32_t vgId);
void* vnodeGetWal(void *pVnode);
void* vnodeGetTsdb(void *pVnode);
-int32_t vnodeProcessWrite(void *pVnode, int qtype, SWalHead *pHead, void *item);
+int32_t vnodeProcessWrite(void *pVnode, int qtype, void *pHead, void *item);
void vnodeBuildStatusMsg(void * param);
int32_t vnodeProcessRead(void *pVnode, int msgType, void *pCont, int32_t contLen, SRspRet *ret);
diff --git a/src/mnode/inc/mgmtDb.h b/src/mnode/inc/mgmtDb.h
index fb6b8f8b6f..22c92bff6d 100644
--- a/src/mnode/inc/mgmtDb.h
+++ b/src/mnode/inc/mgmtDb.h
@@ -22,13 +22,18 @@ extern "C" {
#include "mnode.h"
+enum _TSDB_DB_STATUS {
+ TSDB_DB_STATUS_READY,
+ TSDB_DB_STATUS_DROPPING
+};
+
// api
int32_t mgmtInitDbs();
void mgmtCleanUpDbs();
SDbObj *mgmtGetDb(char *db);
SDbObj *mgmtGetDbByTableId(char *db);
void mgmtIncDbRef(SDbObj *pDb);
-void mgmtDecDbRef(SDbObj *pDb);
+void mgmtReleaseDb(SDbObj *pDb);
bool mgmtCheckIsMonitorDB(char *db, char *monitordb);
void mgmtDropAllDbs(SAcctObj *pAcct);
diff --git a/src/mnode/inc/mgmtMnode.h b/src/mnode/inc/mgmtMnode.h
index f82806a645..ad9688c0ee 100644
--- a/src/mnode/inc/mgmtMnode.h
+++ b/src/mnode/inc/mgmtMnode.h
@@ -20,6 +20,19 @@
extern "C" {
#endif
+enum _TSDB_MN_STATUS {
+ TSDB_MN_STATUS_OFFLINE,
+ TSDB_MN_STATUS_UNSYNCED,
+ TSDB_MN_STATUS_SYNCING,
+ TSDB_MN_STATUS_SERVING
+};
+
+enum _TSDB_MN_ROLE {
+ TSDB_MN_ROLE_UNDECIDED,
+ TSDB_MN_ROLE_SLAVE,
+ TSDB_MN_ROLE_MASTER
+};
+
int32_t mgmtInitMnodes();
void mgmtCleanupMnodes();
diff --git a/src/mnode/inc/mgmtUser.h b/src/mnode/inc/mgmtUser.h
index f5c9b96f03..6997081c7c 100644
--- a/src/mnode/inc/mgmtUser.h
+++ b/src/mnode/inc/mgmtUser.h
@@ -24,8 +24,7 @@ extern "C" {
int32_t mgmtInitUsers();
void mgmtCleanUpUsers();
SUserObj *mgmtGetUser(char *name);
-void mgmtIncUserRef(SUserObj *pUser);
-void mgmtDecUserRef(SUserObj *pUser);
+void mgmtReleaseUser(SUserObj *pUser);
SUserObj *mgmtGetUserFromConn(void *pConn, bool *usePublicIp);
int32_t mgmtCreateUser(SAcctObj *pAcct, char *name, char *pass);
void mgmtDropAllUsers(SAcctObj *pAcct);
diff --git a/src/mnode/inc/mgmtVgroup.h b/src/mnode/inc/mgmtVgroup.h
index d0b1e0de97..83e003e063 100644
--- a/src/mnode/inc/mgmtVgroup.h
+++ b/src/mnode/inc/mgmtVgroup.h
@@ -24,13 +24,20 @@ extern "C" {
#include
#include "mnode.h"
+enum _TSDB_VG_STATUS {
+ TSDB_VG_STATUS_READY,
+ TSDB_VG_STATUS_UPDATE
+};
+
int32_t mgmtInitVgroups();
void mgmtCleanUpVgroups();
SVgObj *mgmtGetVgroup(int32_t vgId);
-void mgmtIncVgroupRef(SVgObj *pVgroup);
-void mgmtDecVgroupRef(SVgObj *pVgroup);
+void mgmtReleaseVgroup(SVgObj *pVgroup);
void mgmtDropAllVgroups(SDbObj *pDropDb);
+void * mgmtGetNextVgroup(void *pNode, SVgObj **pVgroup);
+void mgmtUpdateVgroup(SVgObj *pVgroup);
+
void mgmtCreateVgroup(SQueuedMsg *pMsg, SDbObj *pDb);
void mgmtDropVgroup(SVgObj *pVgroup, void *ahandle);
void mgmtAlterVgroup(SVgObj *pVgroup, void *ahandle);
diff --git a/src/mnode/src/mgmtAcct.c b/src/mnode/src/mgmtAcct.c
index 22690c4a44..a22313c52e 100644
--- a/src/mnode/src/mgmtAcct.c
+++ b/src/mnode/src/mgmtAcct.c
@@ -17,9 +17,10 @@
#include "os.h"
#include "taoserror.h"
#include "mnode.h"
-#include "mgmtAcct.h"
+#include "taccount.h"
#include "mgmtDb.h"
#include "mgmtUser.h"
+
#ifndef _ACCOUNT
static SAcctObj tsAcctObj = {0};
@@ -30,11 +31,12 @@ int32_t acctInit() {
return TSDB_CODE_SUCCESS;
}
-void acctCleanUp() {}
-SAcctObj *acctGetAcct(char *acctName) { return &tsAcctObj; }
-void acctIncRef(SAcctObj *pAcct) {}
-void acctDecRef(SAcctObj *pAcct) {}
-int32_t acctCheck(SAcctObj *pAcct, EAcctGrantType type) { return TSDB_CODE_SUCCESS; }
+void acctCleanUp() {}
+void *acctGetAcct(char *acctName) { return &tsAcctObj; }
+void acctIncRef(struct _acct_obj *pAcct) {}
+void acctReleaseAcct(SAcctObj *pAcct) {}
+int32_t acctCheck(SAcctObj *pAcct, EAcctGrantType type) { return TSDB_CODE_SUCCESS; }
+
#endif
void acctAddDb(SAcctObj *pAcct, SDbObj *pDb) {
@@ -46,7 +48,7 @@ void acctAddDb(SAcctObj *pAcct, SDbObj *pDb) {
void acctRemoveDb(SAcctObj *pAcct, SDbObj *pDb) {
atomic_sub_fetch_32(&pAcct->acctInfo.numOfDbs, 1);
pDb->pAcct = NULL;
- acctIncRef(pAcct);
+ acctReleaseAcct(pAcct);
}
void acctAddUser(SAcctObj *pAcct, SUserObj *pUser) {
@@ -58,5 +60,5 @@ void acctAddUser(SAcctObj *pAcct, SUserObj *pUser) {
void acctRemoveUser(SAcctObj *pAcct, SUserObj *pUser) {
atomic_sub_fetch_32(&pAcct->acctInfo.numOfUsers, 1);
pUser->pAcct = NULL;
- acctIncRef(pAcct);
+ acctReleaseAcct(pAcct);
}
\ No newline at end of file
diff --git a/src/mnode/src/mgmtBalance.c b/src/mnode/src/mgmtBalance.c
index e697d70d58..77d68f43d8 100644
--- a/src/mnode/src/mgmtBalance.c
+++ b/src/mnode/src/mgmtBalance.c
@@ -14,56 +14,34 @@
*/
#define _DEFAULT_SOURCE
-#include "tstatus.h"
-#include "mgmtBalance.h"
-#include "mgmtDnode.h"
+#include "tbalance.h"
+#include "mnode.h"
+#include "tcluster.h"
+#include "mgmtVgroup.h"
-extern int32_t balanceInit();
-extern void balanceCleanUp();
-extern void balanceNotify();
-extern int32_t balanceAllocVnodes(SVgObj *pVgroup);
+#ifndef _VPEER
+int32_t balanceInit() { return 0; }
+void balanceCleanUp() {}
+void balanceNotify() {}
-int32_t mgmtInitBalance() {
-#ifdef _VPEER
- return balanceInit();
-#else
- return 0;
-#endif
-}
-
-void mgmtCleanupBalance() {
-#ifdef _VPEER
- balanceCleanUp();
-#endif
-}
-
-void mgmtBalanceNotify() {
-#ifdef _VPEER
- balanceNotify();
-#endif
-}
-
-int32_t mgmtAllocVnodes(SVgObj *pVgroup) {
-#ifdef _VPEER
- return balanceAllocVnodes(pVgroup);
-#else
+int32_t balanceAllocVnodes(SVgObj *pVgroup) {
void * pNode = NULL;
SDnodeObj *pDnode = NULL;
SDnodeObj *pSelDnode = NULL;
float vnodeUsage = 1.0;
while (1) {
- mgmtDecDnodeRef(pDnode);
- pNode = mgmtGetNextDnode(pNode, &pDnode);
+ pNode = clusterGetNextDnode(pNode, &pDnode);
if (pDnode == NULL) break;
- if (pDnode->numOfTotalVnodes <= 0) continue;
- if (pDnode->openVnodes == pDnode->numOfTotalVnodes) continue;
- float usage = (float)pDnode->openVnodes / pDnode->numOfTotalVnodes;
- if (usage <= vnodeUsage) {
- pSelDnode = pDnode;
- vnodeUsage = usage;
+ if (pDnode->numOfTotalVnodes > 0 && pDnode->openVnodes < pDnode->numOfTotalVnodes) {
+ float usage = (float)pDnode->openVnodes / pDnode->numOfTotalVnodes;
+ if (usage <= vnodeUsage) {
+ pSelDnode = pDnode;
+ vnodeUsage = usage;
+ }
}
+ clusterReleaseDnode(pDnode);
}
if (pSelDnode == NULL) {
@@ -77,5 +55,6 @@ int32_t mgmtAllocVnodes(SVgObj *pVgroup) {
mTrace("dnode:%d, alloc one vnode to vgroup, openVnodes:%d", pSelDnode->dnodeId, pSelDnode->openVnodes);
return TSDB_CODE_SUCCESS;
-#endif
}
+
+#endif
diff --git a/src/mnode/src/mgmtDClient.c b/src/mnode/src/mgmtDClient.c
index cbdcb8ff5d..b402a85005 100644
--- a/src/mnode/src/mgmtDClient.c
+++ b/src/mnode/src/mgmtDClient.c
@@ -17,15 +17,14 @@
#include "os.h"
#include "taoserror.h"
#include "tsched.h"
-#include "tstatus.h"
#include "tsystem.h"
#include "tutil.h"
#include "dnode.h"
#include "mnode.h"
-#include "mgmtBalance.h"
+#include "tbalance.h"
#include "mgmtDb.h"
-#include "mgmtDnode.h"
-#include "mgmtGrant.h"
+#include "tcluster.h"
+#include "tgrant.h"
#include "mgmtProfile.h"
#include "mgmtShell.h"
#include "mgmtTable.h"
diff --git a/src/mnode/src/mgmtDServer.c b/src/mnode/src/mgmtDServer.c
index ca23a3cfca..0ac93d429c 100644
--- a/src/mnode/src/mgmtDServer.c
+++ b/src/mnode/src/mgmtDServer.c
@@ -18,15 +18,14 @@
#include "taoserror.h"
#include "trpc.h"
#include "tsched.h"
-#include "tstatus.h"
#include "tsystem.h"
#include "tutil.h"
#include "dnode.h"
#include "mnode.h"
-#include "mgmtBalance.h"
+#include "tbalance.h"
#include "mgmtDb.h"
#include "mgmtDServer.h"
-#include "mgmtGrant.h"
+#include "tgrant.h"
#include "mgmtProfile.h"
#include "mgmtShell.h"
#include "mgmtTable.h"
diff --git a/src/mnode/src/mgmtDb.c b/src/mnode/src/mgmtDb.c
index 7d13451f7e..9ecc2c6458 100644
--- a/src/mnode/src/mgmtDb.c
+++ b/src/mnode/src/mgmtDb.c
@@ -16,15 +16,14 @@
#define _DEFAULT_SOURCE
#include "os.h"
#include "taoserror.h"
-#include "tstatus.h"
#include "tutil.h"
#include "name.h"
#include "mnode.h"
-#include "mgmtAcct.h"
-#include "mgmtBalance.h"
+#include "taccount.h"
+#include "tbalance.h"
#include "mgmtDb.h"
-#include "mgmtDnode.h"
-#include "mgmtGrant.h"
+#include "tcluster.h"
+#include "tgrant.h"
#include "mgmtShell.h"
#include "mgmtMnode.h"
#include "mgmtProfile.h"
@@ -38,7 +37,7 @@ static int32_t tsDbUpdateSize;
static int32_t mgmtCreateDb(SAcctObj *pAcct, SCMCreateDbMsg *pCreate);
static void mgmtDropDb(SQueuedMsg *newMsg);
-static int32_t mgmtSetDbDirty(SDbObj *pDb);
+static int32_t mgmtSetDbDropping(SDbObj *pDb);
static int32_t mgmtGetDbMeta(STableMetaMsg *pMeta, SShowObj *pShow, void *pConn);
static int32_t mgmtRetrieveDbs(SShowObj *pShow, char *data, int32_t rows, void *pConn);
static void mgmtProcessCreateDbMsg(SQueuedMsg *pMsg);
@@ -146,11 +145,11 @@ SDbObj *mgmtGetDb(char *db) {
return (SDbObj *)sdbGetRow(tsDbSdb, db);
}
-void mgmtIncDbRef(SDbObj *pDb) {
+void mgmtIncDbRef(SDbObj *pDb) {
return sdbIncRef(tsDbSdb, pDb);
}
-void mgmtDecDbRef(SDbObj *pDb) {
+void mgmtReleaseDb(SDbObj *pDb) {
return sdbDecRef(tsDbSdb, pDb);
}
@@ -289,7 +288,7 @@ static int32_t mgmtCreateDb(SAcctObj *pAcct, SCMCreateDbMsg *pCreate) {
SDbObj *pDb = mgmtGetDb(pCreate->db);
if (pDb != NULL) {
- mgmtDecDbRef(pDb);
+ mgmtReleaseDb(pDb);
return TSDB_CODE_DB_ALREADY_EXIST;
}
@@ -519,7 +518,7 @@ static int32_t mgmtGetDbMeta(STableMetaMsg *pMeta, SShowObj *pShow, void *pConn)
pShow->rowSize = pShow->offset[cols - 1] + pShow->bytes[cols - 1];
pShow->numOfRows = pUser->pAcct->acctInfo.numOfDbs;
- mgmtDecUserRef(pUser);
+ mgmtReleaseUser(pUser);
return 0;
}
@@ -631,15 +630,15 @@ static int32_t mgmtRetrieveDbs(SShowObj *pShow, char *data, int32_t rows, void *
cols++;
pWrite = data + pShow->offset[cols] * rows + pShow->bytes[cols] * numOfRows;
- strcpy(pWrite, pDb->dirty != TSDB_DB_STATUS_READY ? "dropping" : "ready");
+ strcpy(pWrite, pDb->status != TSDB_DB_STATUS_READY ? "dropping" : "ready");
cols++;
numOfRows++;
- mgmtDecDbRef(pDb);
+ mgmtReleaseDb(pDb);
}
pShow->numOfReads += numOfRows;
- mgmtDecUserRef(pUser);
+ mgmtReleaseUser(pUser);
return numOfRows;
}
@@ -659,10 +658,10 @@ void mgmtRemoveTableFromDb(SDbObj *pDb) {
atomic_add_fetch_32(&pDb->numOfTables, -1);
}
-static int32_t mgmtSetDbDirty(SDbObj *pDb) {
- if (pDb->dirty) return TSDB_CODE_SUCCESS;
+static int32_t mgmtSetDbDropping(SDbObj *pDb) {
+ if (pDb->status) return TSDB_CODE_SUCCESS;
- pDb->dirty = true;
+ pDb->status = true;
SSdbOperDesc oper = {
.type = SDB_OPER_TYPE_GLOBAL,
.table = tsDbSdb,
@@ -850,7 +849,7 @@ static void mgmtProcessDropDbMsg(SQueuedMsg *pMsg) {
return;
}
- int32_t code = mgmtSetDbDirty(pDb);
+ int32_t code = mgmtSetDbDropping(pDb);
if (code != TSDB_CODE_SUCCESS) {
mError("db:%s, failed to drop, reason:%s", pDrop->db, tstrerror(code));
mgmtSendSimpleResp(pMsg->thandle, code);
@@ -881,11 +880,11 @@ void mgmtDropAllDbs(SAcctObj *pAcct) {
if (pDb == NULL) break;
if (pDb->pAcct == pAcct) {
- mgmtSetDbDirty(pDb);
+ mgmtSetDbDropping(pDb);
numOfDbs++;
}
- mgmtDecDbRef(pDb);
+ mgmtReleaseDb(pDb);
}
mTrace("acct:%s, all dbs is is set dirty", pAcct->user, numOfDbs);
-}
\ No newline at end of file
+}
diff --git a/src/mnode/src/mgmtDnode.c b/src/mnode/src/mgmtDnode.c
index ada0bce2e9..e4ab114090 100644
--- a/src/mnode/src/mgmtDnode.c
+++ b/src/mnode/src/mgmtDnode.c
@@ -16,9 +16,9 @@
#define _DEFAULT_SOURCE
#include "os.h"
#include "tmodule.h"
-#include "tstatus.h"
-#include "mgmtBalance.h"
-#include "mgmtDnode.h"
+#include "tbalance.h"
+#include "tcluster.h"
+#include "mnode.h"
#include "mgmtDClient.h"
#include "mgmtMnode.h"
#include "mgmtShell.h"
@@ -26,52 +26,29 @@
#include "mgmtUser.h"
#include "mgmtVgroup.h"
-static void mgmtProcessCfgDnodeMsg(SQueuedMsg *pMsg);
-static void mgmtProcessCfgDnodeMsgRsp(SRpcMsg *rpcMsg) ;
-static void mgmtProcessDnodeStatusMsg(SRpcMsg *rpcMsg);
-static int32_t mgmtGetModuleMeta(STableMetaMsg *pMeta, SShowObj *pShow, void *pConn);
-static int32_t mgmtRetrieveModules(SShowObj *pShow, char *data, int32_t rows, void *pConn);
-static int32_t mgmtGetConfigMeta(STableMetaMsg *pMeta, SShowObj *pShow, void *pConn);
-static int32_t mgmtRetrieveConfigs(SShowObj *pShow, char *data, int32_t rows, void *pConn);
-static int32_t mgmtGetVnodeMeta(STableMetaMsg *pMeta, SShowObj *pShow, void *pConn);
-static int32_t mgmtRetrieveVnodes(SShowObj *pShow, char *data, int32_t rows, void *pConn);
-static int32_t mgmtGetDnodeMeta(STableMetaMsg *pMeta, SShowObj *pShow, void *pConn);
-static int32_t mgmtRetrieveDnodes(SShowObj *pShow, char *data, int32_t rows, void *pConn);
+static void clusterProcessCfgDnodeMsg(SQueuedMsg *pMsg);
+static void clusterProcessCfgDnodeMsgRsp(SRpcMsg *rpcMsg) ;
+static void clusterProcessDnodeStatusMsg(SRpcMsg *rpcMsg);
+static int32_t clusterGetModuleMeta(STableMetaMsg *pMeta, SShowObj *pShow, void *pConn);
+static int32_t clusterRetrieveModules(SShowObj *pShow, char *data, int32_t rows, void *pConn);
+static int32_t clusterGetConfigMeta(STableMetaMsg *pMeta, SShowObj *pShow, void *pConn);
+static int32_t clusterRetrieveConfigs(SShowObj *pShow, char *data, int32_t rows, void *pConn);
+static int32_t clusterGetVnodeMeta(STableMetaMsg *pMeta, SShowObj *pShow, void *pConn);
+static int32_t clusterRetrieveVnodes(SShowObj *pShow, char *data, int32_t rows, void *pConn);
+static int32_t clusterGetDnodeMeta(STableMetaMsg *pMeta, SShowObj *pShow, void *pConn);
+static int32_t clusterRetrieveDnodes(SShowObj *pShow, char *data, int32_t rows, void *pConn);
-extern int32_t clusterInit();
-extern void clusterCleanUp();
-extern int32_t clusterGetDnodesNum();
-extern void * clusterGetNextDnode(void *pNode, SDnodeObj **pDnode);
-extern void clusterIncDnodeRef(SDnodeObj *pDnode);
-extern void clusterDecDnodeRef(SDnodeObj *pDnode);
-extern SDnodeObj* clusterGetDnode(int32_t dnodeId);
-extern SDnodeObj* clusterGetDnodeByIp(uint32_t ip);
#ifndef _CLUSTER
-static SDnodeObj tsDnodeObj = {0};
-#endif
-int32_t mgmtInitDnodes() {
- mgmtAddShellMsgHandle(TSDB_MSG_TYPE_CM_CONFIG_DNODE, mgmtProcessCfgDnodeMsg);
- mgmtAddDClientRspHandle(TSDB_MSG_TYPE_MD_CONFIG_DNODE_RSP, mgmtProcessCfgDnodeMsgRsp);
- mgmtAddDServerMsgHandle(TSDB_MSG_TYPE_DM_STATUS, mgmtProcessDnodeStatusMsg);
- mgmtAddShellShowMetaHandle(TSDB_MGMT_TABLE_MODULE, mgmtGetModuleMeta);
- mgmtAddShellShowRetrieveHandle(TSDB_MGMT_TABLE_MODULE, mgmtRetrieveModules);
- mgmtAddShellShowMetaHandle(TSDB_MGMT_TABLE_CONFIGS, mgmtGetConfigMeta);
- mgmtAddShellShowRetrieveHandle(TSDB_MGMT_TABLE_CONFIGS, mgmtRetrieveConfigs);
- mgmtAddShellShowMetaHandle(TSDB_MGMT_TABLE_VNODES, mgmtGetVnodeMeta);
- mgmtAddShellShowRetrieveHandle(TSDB_MGMT_TABLE_VNODES, mgmtRetrieveVnodes);
- mgmtAddShellShowMetaHandle(TSDB_MGMT_TABLE_DNODE, mgmtGetDnodeMeta);
- mgmtAddShellShowRetrieveHandle(TSDB_MGMT_TABLE_DNODE, mgmtRetrieveDnodes);
-
-#ifdef _CLUSTER
- return clusterInit();
-#else
+static SDnodeObj tsDnodeObj = {0};
+
+int32_t clusterInitDnodes() {
tsDnodeObj.dnodeId = 1;
tsDnodeObj.privateIp = inet_addr(tsPrivateIp);
tsDnodeObj.publicIp = inet_addr(tsPublicIp);
tsDnodeObj.createdTime = taosGetTimestampMs();
tsDnodeObj.numOfTotalVnodes = tsNumOfTotalVnodes;
- tsDnodeObj.status = TSDB_DN_STATUS_OFFLINE;
+ tsDnodeObj.status = TAOS_DN_STATUS_OFFLINE;
tsDnodeObj.lastReboot = taosGetTimestampSec();
sprintf(tsDnodeObj.dnodeName, "%d", tsDnodeObj.dnodeId);
@@ -83,69 +60,47 @@ int32_t mgmtInitDnodes() {
tsDnodeObj.moduleStatus |= (1 << TSDB_MOD_MONITOR);
}
return 0;
-#endif
}
-void mgmtCleanUpDnodes() {
-#ifdef _CLUSTER
- clusterCleanUp();
-#endif
-}
-
-SDnodeObj *mgmtGetDnode(int32_t dnodeId) {
-#ifdef _CLUSTER
- return clusterGetDnode(dnodeId);
-#else
- if (dnodeId == 1) {
- return &tsDnodeObj;
- } else {
- return NULL;
- }
-#endif
-}
-
-SDnodeObj *mgmtGetDnodeByIp(uint32_t ip) {
-#ifdef _CLUSTER
- return clusterGetDnodeByIp(ip);
-#else
- return &tsDnodeObj;
-#endif
-}
-
-int32_t mgmtGetDnodesNum() {
-#ifdef _CLUSTER
- return clusterGetDnodesNum();
-#else
- return 1;
-#endif
-}
-
-void mgmtIncDnodeRef(SDnodeObj *pDnode) {
-#ifdef _CLUSTER
- return clusterIncDnodeRef(pDnode);
-#endif
-}
-
-void mgmtDecDnodeRef(SDnodeObj *pDnode) {
-#ifdef _CLUSTER
- return clusterDecDnodeRef(pDnode);
-#endif
-}
-
-void * mgmtGetNextDnode(void *pNode, SDnodeObj **pDnode) {
-#ifdef _CLUSTER
- return clusterGetNextDnode(pNode, pDnode);
-#else
+void *clusterGetNextDnode(void *pNode, SDnodeObj **pDnode) {
if (*pDnode == NULL) {
*pDnode = &tsDnodeObj;
} else {
*pDnode = NULL;
}
return *pDnode;
-#endif
}
-void mgmtProcessCfgDnodeMsg(SQueuedMsg *pMsg) {
+void clusterCleanupDnodes() {}
+int32_t clusterGetDnodesNum() { return 1; }
+void * clusterGetDnode(int32_t dnodeId) { return dnodeId == 1 ? &tsDnodeObj : NULL; }
+void * clusterGetDnodeByIp(uint32_t ip) { return &tsDnodeObj; }
+void clusterReleaseDnode(struct _dnode_obj *pDnode) {}
+void clusterUpdateDnode(struct _dnode_obj *pDnode) {}
+
+#endif
+
+int32_t clusterInit() {
+ mgmtAddShellMsgHandle(TSDB_MSG_TYPE_CM_CONFIG_DNODE, clusterProcessCfgDnodeMsg);
+ mgmtAddDClientRspHandle(TSDB_MSG_TYPE_MD_CONFIG_DNODE_RSP, clusterProcessCfgDnodeMsgRsp);
+ mgmtAddDServerMsgHandle(TSDB_MSG_TYPE_DM_STATUS, clusterProcessDnodeStatusMsg);
+ mgmtAddShellShowMetaHandle(TSDB_MGMT_TABLE_MODULE, clusterGetModuleMeta);
+ mgmtAddShellShowRetrieveHandle(TSDB_MGMT_TABLE_MODULE, clusterRetrieveModules);
+ mgmtAddShellShowMetaHandle(TSDB_MGMT_TABLE_CONFIGS, clusterGetConfigMeta);
+ mgmtAddShellShowRetrieveHandle(TSDB_MGMT_TABLE_CONFIGS, clusterRetrieveConfigs);
+ mgmtAddShellShowMetaHandle(TSDB_MGMT_TABLE_VNODES, clusterGetVnodeMeta);
+ mgmtAddShellShowRetrieveHandle(TSDB_MGMT_TABLE_VNODES, clusterRetrieveVnodes);
+ mgmtAddShellShowMetaHandle(TSDB_MGMT_TABLE_DNODE, clusterGetDnodeMeta);
+ mgmtAddShellShowRetrieveHandle(TSDB_MGMT_TABLE_DNODE, clusterRetrieveDnodes);
+
+ return clusterInitDnodes();
+}
+
+void clusterCleanUp() {
+ clusterCleanupDnodes();
+}
+
+void clusterProcessCfgDnodeMsg(SQueuedMsg *pMsg) {
SRpcMsg rpcRsp = {.handle = pMsg->thandle, .pCont = NULL, .contLen = 0, .code = 0, .msgType = 0};
SCMCfgDnodeMsg *pCmCfgDnode = pMsg->pCont;
@@ -181,11 +136,11 @@ void mgmtProcessCfgDnodeMsg(SQueuedMsg *pMsg) {
rpcSendResponse(&rpcRsp);
}
-static void mgmtProcessCfgDnodeMsgRsp(SRpcMsg *rpcMsg) {
+static void clusterProcessCfgDnodeMsgRsp(SRpcMsg *rpcMsg) {
mPrint("cfg vnode rsp is received, result:%s", tstrerror(rpcMsg->code));
}
-void mgmtProcessDnodeStatusMsg(SRpcMsg *rpcMsg) {
+void clusterProcessDnodeStatusMsg(SRpcMsg *rpcMsg) {
if (mgmtCheckRedirect(rpcMsg->handle)) return;
SDMStatusMsg *pStatus = rpcMsg->pCont;
@@ -205,14 +160,14 @@ void mgmtProcessDnodeStatusMsg(SRpcMsg *rpcMsg) {
SDnodeObj *pDnode = NULL;
if (pStatus->dnodeId == 0) {
- pDnode = mgmtGetDnodeByIp(pStatus->privateIp);
+ pDnode = clusterGetDnodeByIp(pStatus->privateIp);
if (pDnode == NULL) {
mTrace("dnode not created, privateIp:%s", taosIpStr(pStatus->privateIp));
mgmtSendSimpleResp(rpcMsg->handle, TSDB_CODE_DNODE_NOT_EXIST);
return;
}
} else {
- pDnode = mgmtGetDnode(pStatus->dnodeId);
+ pDnode = clusterGetDnode(pStatus->dnodeId);
if (pDnode == NULL) {
mError("dnode:%d, not exist, privateIp:%s", pStatus->dnodeId, taosIpStr(pStatus->privateIp));
mgmtSendSimpleResp(rpcMsg->handle, TSDB_CODE_DNODE_NOT_EXIST);
@@ -245,16 +200,16 @@ void mgmtProcessDnodeStatusMsg(SRpcMsg *rpcMsg) {
mPrint("dnode:%d, vgroup:%d not exist in mnode, drop it", pDnode->dnodeId, pDnode->vload[j].vgId);
mgmtSendDropVnodeMsg(pDnode->vload[j].vgId, &ipSet, NULL);
}
- mgmtDecVgroupRef(pVgroup);
+ mgmtReleaseVgroup(pVgroup);
}
- if (pDnode->status != TSDB_DN_STATUS_READY) {
+ if (pDnode->status == TAOS_DN_STATUS_OFFLINE) {
mTrace("dnode:%d, from offline to online", pDnode->dnodeId);
- pDnode->status = TSDB_DN_STATUS_READY;
- mgmtBalanceNotify();
+ pDnode->status = TAOS_DN_STATUS_READY;
+ balanceNotify();
}
- mgmtDecDnodeRef(pDnode);
+ clusterReleaseDnode(pDnode);
int32_t contLen = sizeof(SDMStatusRsp) + TSDB_MAX_VNODES * sizeof(SVnodeAccess);
SDMStatusRsp *pRsp = rpcMallocCont(contLen);
@@ -284,7 +239,7 @@ void mgmtProcessDnodeStatusMsg(SRpcMsg *rpcMsg) {
rpcSendResponse(&rpcRsp);
}
-static int32_t mgmtGetDnodeMeta(STableMetaMsg *pMeta, SShowObj *pShow, void *pConn) {
+static int32_t clusterGetDnodeMeta(STableMetaMsg *pMeta, SShowObj *pShow, void *pConn) {
SUserObj *pUser = mgmtGetUserFromConn(pConn, NULL);
if (pUser == NULL) return 0;
@@ -351,16 +306,16 @@ static int32_t mgmtGetDnodeMeta(STableMetaMsg *pMeta, SShowObj *pShow, void *pCo
pShow->offset[i] = pShow->offset[i - 1] + pShow->bytes[i - 1];
}
- pShow->numOfRows = mgmtGetDnodesNum();
+ pShow->numOfRows = clusterGetDnodesNum();
pShow->rowSize = pShow->offset[cols - 1] + pShow->bytes[cols - 1];
pShow->pNode = NULL;
- mgmtDecUserRef(pUser);
+ mgmtReleaseUser(pUser);
return 0;
}
-static int32_t mgmtRetrieveDnodes(SShowObj *pShow, char *data, int32_t rows, void *pConn) {
+static int32_t clusterRetrieveDnodes(SShowObj *pShow, char *data, int32_t rows, void *pConn) {
int32_t numOfRows = 0;
int32_t cols = 0;
SDnodeObj *pDnode = NULL;
@@ -368,8 +323,7 @@ static int32_t mgmtRetrieveDnodes(SShowObj *pShow, char *data, int32_t rows, voi
char ipstr[32];
while (numOfRows < rows) {
- mgmtDecDnodeRef(pDnode);
- pShow->pNode = mgmtGetNextDnode(pShow->pNode, (SDnodeObj **)&pDnode);
+ pShow->pNode = clusterGetNextDnode(pShow->pNode, &pDnode);
if (pDnode == NULL) break;
cols = 0;
@@ -393,7 +347,7 @@ static int32_t mgmtRetrieveDnodes(SShowObj *pShow, char *data, int32_t rows, voi
cols++;
pWrite = data + pShow->offset[cols] * rows + pShow->bytes[cols] * numOfRows;
- strcpy(pWrite, taosGetDnodeStatusStr(pDnode->status) );
+ strcpy(pWrite, clusterGetDnodeStatusStr(pDnode->status));
cols++;
pWrite = data + pShow->offset[cols] * rows + pShow->bytes[cols] * numOfRows;
@@ -406,23 +360,24 @@ static int32_t mgmtRetrieveDnodes(SShowObj *pShow, char *data, int32_t rows, voi
#ifdef _VPEER
pWrite = data + pShow->offset[cols] * rows + pShow->bytes[cols] * numOfRows;
- strcpy(pWrite, taosGetDnodeLbStatusStr(pDnode->lbStatus));
+ strcpy(pWrite, clusterGetDnodeStatusStr(pDnode->status));
cols++;
#endif
numOfRows++;
+ clusterReleaseDnode(pDnode);
}
pShow->numOfReads += numOfRows;
return numOfRows;
}
-static bool clusterCheckModuleInDnode(SDnodeObj *pDnode, int32_t moduleType) {
+bool clusterCheckModuleInDnode(SDnodeObj *pDnode, int32_t moduleType) {
uint32_t status = pDnode->moduleStatus & (1 << moduleType);
return status > 0;
}
-static int32_t mgmtGetModuleMeta(STableMetaMsg *pMeta, SShowObj *pShow, void *pConn) {
+static int32_t clusterGetModuleMeta(STableMetaMsg *pMeta, SShowObj *pShow, void *pConn) {
int32_t cols = 0;
SUserObj *pUser = mgmtGetUserFromConn(pConn, NULL);
@@ -461,7 +416,7 @@ static int32_t mgmtGetModuleMeta(STableMetaMsg *pMeta, SShowObj *pShow, void *pC
pShow->numOfRows = 0;
SDnodeObj *pDnode = NULL;
while (1) {
- pShow->pNode = mgmtGetNextDnode(pShow->pNode, (SDnodeObj **)&pDnode);
+ pShow->pNode = clusterGetNextDnode(pShow->pNode, (SDnodeObj **)&pDnode);
if (pDnode == NULL) break;
for (int32_t moduleType = 0; moduleType < TSDB_MOD_MAX; ++moduleType) {
if (clusterCheckModuleInDnode(pDnode, moduleType)) {
@@ -472,12 +427,12 @@ static int32_t mgmtGetModuleMeta(STableMetaMsg *pMeta, SShowObj *pShow, void *pC
pShow->rowSize = pShow->offset[cols - 1] + pShow->bytes[cols - 1];
pShow->pNode = NULL;
- mgmtDecUserRef(pUser);
+ mgmtReleaseUser(pUser);
return 0;
}
-int32_t mgmtRetrieveModules(SShowObj *pShow, char *data, int32_t rows, void *pConn) {
+int32_t clusterRetrieveModules(SShowObj *pShow, char *data, int32_t rows, void *pConn) {
int32_t numOfRows = 0;
SDnodeObj *pDnode = NULL;
char * pWrite;
@@ -485,8 +440,8 @@ int32_t mgmtRetrieveModules(SShowObj *pShow, char *data, int32_t rows, void *pCo
char ipstr[20];
while (numOfRows < rows) {
- mgmtDecDnodeRef(pDnode);
- pShow->pNode = mgmtGetNextDnode(pShow->pNode, (SDnodeObj **)&pDnode);
+ clusterReleaseDnode(pDnode);
+ pShow->pNode = clusterGetNextDnode(pShow->pNode, (SDnodeObj **)&pDnode);
if (pDnode == NULL) break;
for (int32_t moduleType = 0; moduleType < TSDB_MOD_MAX; ++moduleType) {
@@ -506,7 +461,7 @@ int32_t mgmtRetrieveModules(SShowObj *pShow, char *data, int32_t rows, void *pCo
cols++;
pWrite = data + pShow->offset[cols] * rows + pShow->bytes[cols] * numOfRows;
- strcpy(pWrite, taosGetDnodeStatusStr(pDnode->status) );
+ strcpy(pWrite, clusterGetDnodeStatusStr(pDnode->status));
cols++;
numOfRows++;
@@ -523,7 +478,7 @@ static bool clusterCheckConfigShow(SGlobalConfig *cfg) {
return true;
}
-static int32_t mgmtGetConfigMeta(STableMetaMsg *pMeta, SShowObj *pShow, void *pConn) {
+static int32_t clusterGetConfigMeta(STableMetaMsg *pMeta, SShowObj *pShow, void *pConn) {
int32_t cols = 0;
SUserObj *pUser = mgmtGetUserFromConn(pConn, NULL);
@@ -560,12 +515,12 @@ static int32_t mgmtGetConfigMeta(STableMetaMsg *pMeta, SShowObj *pShow, void *pC
pShow->rowSize = pShow->offset[cols - 1] + pShow->bytes[cols - 1];
pShow->pNode = NULL;
- mgmtDecUserRef(pUser);
+ mgmtReleaseUser(pUser);
return 0;
}
-static int32_t mgmtRetrieveConfigs(SShowObj *pShow, char *data, int32_t rows, void *pConn) {
+static int32_t clusterRetrieveConfigs(SShowObj *pShow, char *data, int32_t rows, void *pConn) {
int32_t numOfRows = 0;
for (int32_t i = tsGlobalConfigNum - 1; i >= 0 && numOfRows < rows; --i) {
@@ -612,7 +567,7 @@ static int32_t mgmtRetrieveConfigs(SShowObj *pShow, char *data, int32_t rows, vo
return numOfRows;
}
-static int32_t mgmtGetVnodeMeta(STableMetaMsg *pMeta, SShowObj *pShow, void *pConn) {
+static int32_t clusterGetVnodeMeta(STableMetaMsg *pMeta, SShowObj *pShow, void *pConn) {
int32_t cols = 0;
SUserObj *pUser = mgmtGetUserFromConn(pConn, NULL);
if (pUser == NULL) return 0;
@@ -632,12 +587,6 @@ static int32_t mgmtGetVnodeMeta(STableMetaMsg *pMeta, SShowObj *pShow, void *pCo
pSchema[cols].bytes = htons(pShow->bytes[cols]);
cols++;
- pShow->bytes[cols] = 12;
- pSchema[cols].type = TSDB_DATA_TYPE_BINARY;
- strcpy(pSchema[cols].name, "sync_status");
- pSchema[cols].bytes = htons(pShow->bytes[cols]);
- cols++;
-
pMeta->numOfColumns = htons(cols);
pShow->numOfColumns = cols;
@@ -647,7 +596,7 @@ static int32_t mgmtGetVnodeMeta(STableMetaMsg *pMeta, SShowObj *pShow, void *pCo
SDnodeObj *pDnode = NULL;
if (pShow->payloadLen > 0 ) {
uint32_t ip = ip2uint(pShow->payload);
- pDnode = mgmtGetDnodeByIp(ip);
+ pDnode = clusterGetDnodeByIp(ip);
if (NULL == pDnode) {
return TSDB_CODE_NODE_OFFLINE;
}
@@ -664,7 +613,7 @@ static int32_t mgmtGetVnodeMeta(STableMetaMsg *pMeta, SShowObj *pShow, void *pCo
pShow->pNode = pDnode;
} else {
while (true) {
- pShow->pNode = mgmtGetNextDnode(pShow->pNode, (SDnodeObj **)&pDnode);
+ pShow->pNode = clusterGetNextDnode(pShow->pNode, (SDnodeObj **)&pDnode);
if (pDnode == NULL) break;
pShow->numOfRows += pDnode->openVnodes;
@@ -675,13 +624,13 @@ static int32_t mgmtGetVnodeMeta(STableMetaMsg *pMeta, SShowObj *pShow, void *pCo
}
pShow->rowSize = pShow->offset[cols - 1] + pShow->bytes[cols - 1];
- mgmtDecDnodeRef(pDnode);
- mgmtDecUserRef(pUser);
+ clusterReleaseDnode(pDnode);
+ mgmtReleaseUser(pUser);
return 0;
}
-static int32_t mgmtRetrieveVnodes(SShowObj *pShow, char *data, int32_t rows, void *pConn) {
+static int32_t clusterRetrieveVnodes(SShowObj *pShow, char *data, int32_t rows, void *pConn) {
int32_t numOfRows = 0;
SDnodeObj *pDnode = NULL;
char * pWrite;
@@ -707,11 +656,7 @@ static int32_t mgmtRetrieveVnodes(SShowObj *pShow, char *data, int32_t rows, voi
cols++;
pWrite = data + pShow->offset[cols] * rows + pShow->bytes[cols] * numOfRows;
- strcpy(pWrite, taosGetVnodeStatusStr(pVnode->status));
- cols++;
-
- pWrite = data + pShow->offset[cols] * rows + pShow->bytes[cols] * numOfRows;
- strcpy(pWrite, taosGetVnodeSyncStatusStr(pVnode->syncStatus));
+ strcpy(pWrite, pVnode->status ? "ready" : "offline");
cols++;
numOfRows++;
@@ -724,4 +669,14 @@ static int32_t mgmtRetrieveVnodes(SShowObj *pShow, char *data, int32_t rows, voi
pShow->numOfReads += numOfRows;
return numOfRows;
-}
\ No newline at end of file
+}
+
+char* clusterGetDnodeStatusStr(int32_t dnodeStatus) {
+ switch (dnodeStatus) {
+ case TAOS_DN_STATUS_OFFLINE: return "offline";
+ case TAOS_DN_STATUS_DROPPING: return "dropping";
+ case TAOS_DN_STATUS_BALANCING: return "balancing";
+ case TAOS_DN_STATUS_READY: return "ready";
+ default: return "undefined";
+ }
+}
diff --git a/src/mnode/src/mgmtGrant.c b/src/mnode/src/mgmtGrant.c
index 097d0fde3d..ed32f97426 100644
--- a/src/mnode/src/mgmtGrant.c
+++ b/src/mnode/src/mgmtGrant.c
@@ -18,7 +18,7 @@
#include "os.h"
#include "taoserror.h"
#include "tlog.h"
-#include "mgmtGrant.h"
+#include "tgrant.h"
int32_t grantInit() { return TSDB_CODE_SUCCESS; }
void grantCleanUp() {}
diff --git a/src/mnode/src/mgmtMain.c b/src/mnode/src/mgmtMain.c
index 4a81c9b691..e04630d745 100644
--- a/src/mnode/src/mgmtMain.c
+++ b/src/mnode/src/mgmtMain.c
@@ -19,13 +19,13 @@
#include "tmodule.h"
#include "tsched.h"
#include "mnode.h"
-#include "mgmtAcct.h"
-#include "mgmtBalance.h"
+#include "taccount.h"
+#include "tbalance.h"
+#include "tcluster.h"
#include "mgmtDb.h"
#include "mgmtDClient.h"
-#include "mgmtDnode.h"
#include "mgmtDServer.h"
-#include "mgmtGrant.h"
+#include "tgrant.h"
#include "mgmtMnode.h"
#include "mgmtSdb.h"
#include "mgmtVgroup.h"
@@ -89,7 +89,7 @@ int32_t mgmtStartSystem() {
return -1;
}
- if (mgmtInitDnodes() < 0) {
+ if (clusterInit() < 0) {
mError("failed to init dnodes");
return -1;
}
@@ -122,7 +122,7 @@ int32_t mgmtStartSystem() {
return -1;
}
- if (mgmtInitBalance() < 0) {
+ if (balanceInit() < 0) {
mError("failed to init dnode balance")
}
@@ -148,14 +148,14 @@ void mgmtCleanUpSystem() {
mPrint("starting to clean up mgmt");
grantCleanUp();
mgmtCleanupMnodes();
- mgmtCleanupBalance();
+ balanceCleanUp();
mgmtCleanUpShell();
mgmtCleanupDClient();
mgmtCleanupDServer();
mgmtCleanUpTables();
mgmtCleanUpVgroups();
mgmtCleanUpDbs();
- mgmtCleanUpDnodes();
+ clusterCleanUp();
mgmtCleanUpUsers();
acctCleanUp();
taosTmrCleanUp(tsMgmtTmr);
diff --git a/src/mnode/src/mgmtMnode.c b/src/mnode/src/mgmtMnode.c
index 4ccc4b8a04..1e2a4e9066 100644
--- a/src/mnode/src/mgmtMnode.c
+++ b/src/mnode/src/mgmtMnode.c
@@ -16,7 +16,6 @@
#define _DEFAULT_SOURCE
#include "os.h"
#include "taoserror.h"
-#include "tstatus.h"
#include "trpc.h"
#include "mgmtMnode.h"
#include "mgmtSdb.h"
@@ -64,6 +63,25 @@ static void *mgmtGetNextMnode(void *pNode, SMnodeObj **pMnode) {
return *pMnode;
}
+char *taosGetMnodeStatusStr(int32_t mnodeStatus) {
+ switch (mnodeStatus) {
+ case TSDB_MN_STATUS_OFFLINE: return "offline";
+ case TSDB_MN_STATUS_UNSYNCED: return "unsynced";
+ case TSDB_MN_STATUS_SYNCING: return "syncing";
+ case TSDB_MN_STATUS_SERVING: return "serving";
+ default: return "undefined";
+ }
+}
+
+char *taosGetMnodeRoleStr(int32_t mnodeRole) {
+ switch (mnodeRole) {
+ case TSDB_MN_ROLE_UNDECIDED: return "undicided";
+ case TSDB_MN_ROLE_SLAVE: return "slave";
+ case TSDB_MN_ROLE_MASTER: return "master";
+ default: return "undefined";
+ }
+}
+
static int32_t mgmtGetMnodeMeta(STableMetaMsg *pMeta, SShowObj *pShow, void *pConn) {
SUserObj *pUser = mgmtGetUserFromConn(pConn, NULL);
if (pUser == NULL) return 0;
@@ -120,7 +138,7 @@ static int32_t mgmtGetMnodeMeta(STableMetaMsg *pMeta, SShowObj *pShow, void *pCo
pShow->numOfRows = mgmtGetMnodesNum();
pShow->rowSize = pShow->offset[cols - 1] + pShow->bytes[cols - 1];
pShow->pNode = NULL;
- mgmtDecUserRef(pUser);
+ mgmtReleaseUser(pUser);
return 0;
}
diff --git a/src/mnode/src/mgmtProfile.c b/src/mnode/src/mgmtProfile.c
index 4a8b4b1ea1..0360432971 100644
--- a/src/mnode/src/mgmtProfile.c
+++ b/src/mnode/src/mgmtProfile.c
@@ -16,6 +16,8 @@
#define _DEFAULT_SOURCE
#include "os.h"
#include "taosmsg.h"
+#include "taccount.h"
+#include "tcluster.h"
#include "mgmtDb.h"
#include "mgmtMnode.h"
#include "mgmtProfile.h"
@@ -787,12 +789,12 @@ void *mgmtMallocQueuedMsg(SRpcMsg *rpcMsg) {
void mgmtFreeQueuedMsg(SQueuedMsg *pMsg) {
if (pMsg != NULL) {
rpcFreeCont(pMsg->pCont);
- if (pMsg->pUser) mgmtDecUserRef(pMsg->pUser);
- if (pMsg->pDb) mgmtDecDbRef(pMsg->pDb);
- if (pMsg->pVgroup) mgmtDecVgroupRef(pMsg->pVgroup);
+ if (pMsg->pUser) mgmtReleaseUser(pMsg->pUser);
+ if (pMsg->pDb) mgmtReleaseDb(pMsg->pDb);
+ if (pMsg->pVgroup) mgmtReleaseVgroup(pMsg->pVgroup);
if (pMsg->pTable) mgmtDecTableRef(pMsg->pTable);
- // if (pMsg->pAcct) acctDecRef(pMsg->pAcct);
- // if (pMsg->pDnode) mgmtDecTableRef(pMsg->pDnode);
+ if (pMsg->pAcct) acctReleaseAcct(pMsg->pAcct);
+ if (pMsg->pDnode) clusterReleaseDnode(pMsg->pDnode);
free(pMsg);
}
}
diff --git a/src/mnode/src/mgmtSdb.c b/src/mnode/src/mgmtSdb.c
index de68baf40f..f3fc7d07f5 100644
--- a/src/mnode/src/mgmtSdb.c
+++ b/src/mnode/src/mgmtSdb.c
@@ -435,7 +435,7 @@ void sdbIncRef(void *handle, void *pRow) {
SSdbTable *pTable = handle;
int32_t *pRefCount = (int32_t *)(pRow + pTable->refCountPos);
atomic_add_fetch_32(pRefCount, 1);
- if (0) {
+ if (0 && strcmp(pTable->tableName, "dnodes") == 0) {
sdbTrace("table:%s, add ref to record:%s:%s:%d", pTable->tableName, pTable->tableName, sdbGetkeyStr(pTable, pRow), *pRefCount);
}
}
@@ -446,7 +446,7 @@ void sdbDecRef(void *handle, void *pRow) {
SSdbTable *pTable = handle;
int32_t *pRefCount = (int32_t *)(pRow + pTable->refCountPos);
int32_t refCount = atomic_sub_fetch_32(pRefCount, 1);
- if (0) {
+ if (0 && strcmp(pTable->tableName, "dnodes") == 0) {
sdbTrace("table:%s, def ref of record:%s:%s:%d", pTable->tableName, pTable->tableName, sdbGetkeyStr(pTable, pRow), *pRefCount);
}
int8_t* updateEnd = pRow + pTable->refCountPos - 1;
@@ -520,6 +520,11 @@ int32_t sdbInsertRow(SSdbOperDesc *pOper) {
if (pTable->keyType == SDB_KEY_TYPE_AUTO) {
*((uint32_t *)pOper->pObj) = ++pTable->autoIndex;
+
+ // let vgId increase from 2
+ if (pTable->autoIndex == 1 && strcmp(pTable->tableName, "vgroups") == 0) {
+ *((uint32_t *)pOper->pObj) = ++pTable->autoIndex;
+ }
}
pTable->version++;
sdbVersion++;
diff --git a/src/mnode/src/mgmtShell.c b/src/mnode/src/mgmtShell.c
index 4b2f53f012..7b6a2654ae 100644
--- a/src/mnode/src/mgmtShell.c
+++ b/src/mnode/src/mgmtShell.c
@@ -19,15 +19,14 @@
#include "taoserror.h"
#include "tlog.h"
#include "trpc.h"
-#include "tstatus.h"
#include "tsched.h"
#include "dnode.h"
#include "mnode.h"
-#include "mgmtAcct.h"
-#include "mgmtBalance.h"
+#include "taccount.h"
+#include "tbalance.h"
#include "mgmtDb.h"
-#include "mgmtDnode.h"
-#include "mgmtGrant.h"
+#include "tcluster.h"
+#include "tgrant.h"
#include "mgmtMnode.h"
#include "mgmtProfile.h"
#include "mgmtSdb.h"
@@ -179,6 +178,28 @@ static void mgmtProcessMsgFromShell(SRpcMsg *rpcMsg) {
}
}
+char *mgmtGetShowTypeStr(int32_t showType) {
+ switch (showType) {
+ case TSDB_MGMT_TABLE_ACCT: return "show accounts";
+ case TSDB_MGMT_TABLE_USER: return "show users";
+ case TSDB_MGMT_TABLE_DB: return "show databases";
+ case TSDB_MGMT_TABLE_TABLE: return "show tables";
+ case TSDB_MGMT_TABLE_DNODE: return "show dnodes";
+ case TSDB_MGMT_TABLE_MNODE: return "show mnodes";
+ case TSDB_MGMT_TABLE_VGROUP: return "show vgroups";
+ case TSDB_MGMT_TABLE_METRIC: return "show stables";
+ case TSDB_MGMT_TABLE_MODULE: return "show modules";
+ case TSDB_MGMT_TABLE_QUERIES: return "show queries";
+ case TSDB_MGMT_TABLE_STREAMS: return "show streams";
+ case TSDB_MGMT_TABLE_CONFIGS: return "show configs";
+ case TSDB_MGMT_TABLE_CONNS: return "show connections";
+ case TSDB_MGMT_TABLE_SCORES: return "show scores";
+ case TSDB_MGMT_TABLE_GRANTS: return "show grants";
+ case TSDB_MGMT_TABLE_VNODES: return "show vnodes";
+ default: return "undefined";
+ }
+}
+
static void mgmtProcessShowMsg(SQueuedMsg *pMsg) {
SCMShowMsg *pShowMsg = pMsg->pCont;
if (pShowMsg->type >= TSDB_MGMT_TABLE_MAX) {
@@ -187,7 +208,7 @@ static void mgmtProcessShowMsg(SQueuedMsg *pMsg) {
}
if (!tsMgmtShowMetaFp[pShowMsg->type] || !tsMgmtShowRetrieveFp[pShowMsg->type]) {
- mError("show type:%s is not support", taosGetShowTypeStr(pShowMsg->type));
+ mError("show type:%s is not support", mgmtGetShowTypeStr(pShowMsg->type));
mgmtSendSimpleResp(pMsg->thandle, TSDB_CODE_OPS_NOT_SUPPORT);
return;
}
@@ -209,7 +230,7 @@ static void mgmtProcessShowMsg(SQueuedMsg *pMsg) {
mgmtSaveQhandle(pShow);
pShowRsp->qhandle = htobe64((uint64_t) pShow);
- mTrace("show:%p, type:%s, start to get meta", pShow, taosGetShowTypeStr(pShowMsg->type));
+ mTrace("show:%p, type:%s, start to get meta", pShow, mgmtGetShowTypeStr(pShowMsg->type));
int32_t code = (*tsMgmtShowMetaFp[pShowMsg->type])(&pShowRsp->tableMeta, pShow, pMsg->thandle);
if (code == 0) {
SRpcMsg rpcRsp = {
@@ -220,7 +241,7 @@ static void mgmtProcessShowMsg(SQueuedMsg *pMsg) {
};
rpcSendResponse(&rpcRsp);
} else {
- mError("show:%p, type:%s, failed to get meta, reason:%s", pShow, taosGetShowTypeStr(pShowMsg->type), tstrerror(code));
+ mError("show:%p, type:%s, failed to get meta, reason:%s", pShow, mgmtGetShowTypeStr(pShowMsg->type), tstrerror(code));
mgmtFreeQhandle(pShow);
SRpcMsg rpcRsp = {
.handle = pMsg->thandle,
@@ -248,7 +269,7 @@ static void mgmtProcessRetrieveMsg(SQueuedMsg *pMsg) {
}
SShowObj *pShow = (SShowObj *)pRetrieve->qhandle;
- mTrace("show:%p, type:%s, retrieve data", pShow, taosGetShowTypeStr(pShow->type));
+ mTrace("show:%p, type:%s, retrieve data", pShow, mgmtGetShowTypeStr(pShow->type));
if (!mgmtCheckQhandle(pRetrieve->qhandle)) {
mError("pShow:%p, query memory is corrupted", pShow);
@@ -338,11 +359,11 @@ static int mgmtShellRetriveAuth(char *user, char *spi, char *encrypt, char *secr
SUserObj *pUser = mgmtGetUser(user);
if (pUser == NULL) {
*secret = 0;
- mgmtDecUserRef(pUser);
+ mgmtReleaseUser(pUser);
return TSDB_CODE_INVALID_USER;
} else {
memcpy(secret, pUser->pass, TSDB_KEY_LEN);
- mgmtDecUserRef(pUser);
+ mgmtReleaseUser(pUser);
return TSDB_CODE_SUCCESS;
}
}
diff --git a/src/mnode/src/mgmtTable.c b/src/mnode/src/mgmtTable.c
index 24218998b5..a14bdd058f 100644
--- a/src/mnode/src/mgmtTable.c
+++ b/src/mnode/src/mgmtTable.c
@@ -19,7 +19,6 @@
#include "tscompression.h"
#include "tskiplist.h"
#include "ttime.h"
-#include "tstatus.h"
#include "tutil.h"
#include "qast.h"
#include "qextbuffer.h"
@@ -28,15 +27,14 @@
#include "tscompression.h"
#include "tskiplist.h"
#include "tsqlfunction.h"
-#include "tstatus.h"
#include "ttime.h"
#include "name.h"
-#include "mgmtAcct.h"
+#include "taccount.h"
#include "mgmtDClient.h"
#include "mgmtDb.h"
-#include "mgmtDnode.h"
+#include "tcluster.h"
#include "mgmtDServer.h"
-#include "mgmtGrant.h"
+#include "tgrant.h"
#include "mgmtMnode.h"
#include "mgmtProfile.h"
#include "mgmtSdb.h"
@@ -98,21 +96,21 @@ static int32_t mgmtChildTableActionInsert(SSdbOperDesc *pOper) {
mError("ctable:%s, not in vgroup:%d", pTable->info.tableId, pTable->vgId);
return TSDB_CODE_INVALID_VGROUP_ID;
}
- mgmtDecVgroupRef(pVgroup);
+ mgmtReleaseVgroup(pVgroup);
SDbObj *pDb = mgmtGetDb(pVgroup->dbName);
if (pDb == NULL) {
mError("ctable:%s, vgroup:%d not in db:%s", pTable->info.tableId, pVgroup->vgId, pVgroup->dbName);
return TSDB_CODE_INVALID_DB;
}
- mgmtDecDbRef(pDb);
+ mgmtReleaseDb(pDb);
SAcctObj *pAcct = acctGetAcct(pDb->cfg.acct);
if (pAcct == NULL) {
mError("ctable:%s, account:%s not exists", pTable->info.tableId, pDb->cfg.acct);
return TSDB_CODE_INVALID_ACCT;
}
- acctDecRef(pAcct);
+ acctReleaseAcct(pAcct);
if (pTable->info.type == TSDB_CHILD_TABLE) {
pTable->superTable = mgmtGetSuperTable(pTable->superTableId);
@@ -140,21 +138,21 @@ static int32_t mgmtChildTableActionDelete(SSdbOperDesc *pOper) {
if (pVgroup == NULL) {
return TSDB_CODE_INVALID_VGROUP_ID;
}
- mgmtDecVgroupRef(pVgroup);
+ mgmtReleaseVgroup(pVgroup);
SDbObj *pDb = mgmtGetDb(pVgroup->dbName);
if (pDb == NULL) {
mError("ctable:%s, vgroup:%d not in DB:%s", pTable->info.tableId, pVgroup->vgId, pVgroup->dbName);
return TSDB_CODE_INVALID_DB;
}
- mgmtDecDbRef(pDb);
+ mgmtReleaseDb(pDb);
SAcctObj *pAcct = acctGetAcct(pDb->cfg.acct);
if (pAcct == NULL) {
mError("ctable:%s, account:%s not exists", pTable->info.tableId, pDb->cfg.acct);
return TSDB_CODE_INVALID_ACCT;
}
- acctDecRef(pAcct);
+ acctReleaseAcct(pAcct);
if (pTable->info.type == TSDB_CHILD_TABLE) {
grantRestore(TSDB_GRANT_TIMESERIES, pTable->superTable->numOfColumns - 1);
@@ -272,7 +270,7 @@ static int32_t mgmtInitChildTables() {
pNode = pLastNode;
continue;
}
- mgmtDecDbRef(pDb);
+ mgmtReleaseDb(pDb);
SVgObj *pVgroup = mgmtGetVgroup(pTable->vgId);
if (pVgroup == NULL) {
@@ -286,7 +284,7 @@ static int32_t mgmtInitChildTables() {
pNode = pLastNode;
continue;
}
- mgmtDecVgroupRef(pVgroup);
+ mgmtReleaseVgroup(pVgroup);
if (strcmp(pVgroup->dbName, pDb->name) != 0) {
mError("ctable:%s, db:%s not match with vgroup:%d db:%s sid:%d, discard it",
@@ -354,7 +352,7 @@ static int32_t mgmtSuperTableActionInsert(SSdbOperDesc *pOper) {
if (pDb != NULL) {
mgmtAddSuperTableIntoDb(pDb);
}
- mgmtDecDbRef(pDb);
+ mgmtReleaseDb(pDb);
return TSDB_CODE_SUCCESS;
}
@@ -366,7 +364,7 @@ static int32_t mgmtSuperTableActionDelete(SSdbOperDesc *pOper) {
mgmtRemoveSuperTableFromDb(pDb);
mgmtDropAllChildTablesInStable((SSuperTableObj *)pStable);
}
- mgmtDecDbRef(pDb);
+ mgmtReleaseDb(pDb);
return TSDB_CODE_SUCCESS;
}
@@ -554,7 +552,7 @@ static void mgmtProcessCreateTableMsg(SQueuedMsg *pMsg) {
}
pMsg->pDb = mgmtGetDb(pCreate->db);
- if (pMsg->pDb == NULL || pMsg->pDb->dirty) {
+ if (pMsg->pDb == NULL || pMsg->pDb->status != TSDB_DB_STATUS_READY) {
mError("table:%s, failed to create, db not selected", pCreate->tableId);
mgmtSendSimpleResp(pMsg->thandle, TSDB_CODE_DB_NOT_SELECTED);
return;
@@ -572,7 +570,7 @@ static void mgmtProcessCreateTableMsg(SQueuedMsg *pMsg) {
static void mgmtProcessDropTableMsg(SQueuedMsg *pMsg) {
SCMDropTableMsg *pDrop = pMsg->pCont;
pMsg->pDb = mgmtGetDbByTableId(pDrop->tableId);
- if (pMsg->pDb == NULL || pMsg->pDb->dirty) {
+ if (pMsg->pDb == NULL || pMsg->pDb->status != TSDB_DB_STATUS_READY) {
mError("table:%s, failed to drop table, db not selected", pDrop->tableId);
mgmtSendSimpleResp(pMsg->thandle, TSDB_CODE_DB_NOT_SELECTED);
return;
@@ -611,7 +609,7 @@ static void mgmtProcessTableMetaMsg(SQueuedMsg *pMsg) {
mTrace("table:%s, table meta msg is received from thandle:%p", pInfo->tableId, pMsg->thandle);
pMsg->pDb = mgmtGetDbByTableId(pInfo->tableId);
- if (pMsg->pDb == NULL || pMsg->pDb->dirty) {
+ if (pMsg->pDb == NULL || pMsg->pDb->status != TSDB_DB_STATUS_READY) {
mError("table:%s, failed to get table meta, db not selected", pInfo->tableId);
mgmtSendSimpleResp(pMsg->thandle, TSDB_CODE_DB_NOT_SELECTED);
return;
@@ -860,7 +858,7 @@ static int32_t mgmtAddSuperTableColumn(SDbObj *pDb, SSuperTableObj *pStable, SSc
SAcctObj *pAcct = acctGetAcct(pDb->cfg.acct);
if (pAcct != NULL) {
pAcct->acctInfo.numOfTimeSeries += (ncols * pStable->numOfTables);
- acctDecRef(pAcct);
+ acctReleaseAcct(pAcct);
}
SSdbOperDesc oper = {
@@ -897,7 +895,7 @@ static int32_t mgmtDropSuperTableColumn(SDbObj *pDb, SSuperTableObj *pStable, ch
SAcctObj *pAcct = acctGetAcct(pDb->cfg.acct);
if (pAcct != NULL) {
pAcct->acctInfo.numOfTimeSeries -= pStable->numOfTables;
- acctDecRef(pAcct);
+ acctReleaseAcct(pAcct);
}
SSdbOperDesc oper = {
@@ -963,7 +961,7 @@ static int32_t mgmtGetShowSuperTableMeta(STableMetaMsg *pMeta, SShowObj *pShow,
pShow->numOfRows = pDb->numOfSuperTables;
pShow->rowSize = pShow->offset[cols - 1] + pShow->bytes[cols - 1];
- mgmtDecDbRef(pDb);
+ mgmtReleaseDb(pDb);
return 0;
}
@@ -1028,7 +1026,7 @@ int32_t mgmtRetrieveShowSuperTables(SShowObj *pShow, char *data, int32_t rows, v
}
pShow->numOfReads += numOfRows;
- mgmtDecDbRef(pDb);
+ mgmtReleaseDb(pDb);
return numOfRows;
}
@@ -1106,7 +1104,7 @@ static void mgmtProcessSuperTableVgroupMsg(SQueuedMsg *pMsg) {
return;
}
- SCMSTableVgroupRspMsg *pRsp = rpcMallocCont(sizeof(SCMSTableVgroupRspMsg) + sizeof(uint32_t) * mgmtGetDnodesNum());
+ SCMSTableVgroupRspMsg *pRsp = rpcMallocCont(sizeof(SCMSTableVgroupRspMsg) + sizeof(uint32_t) * clusterGetDnodesNum());
if (pRsp == NULL) {
mgmtSendSimpleResp(pMsg->thandle, TSDB_CODE_INVALID_TABLE);
return;
@@ -1409,7 +1407,7 @@ static int32_t mgmtAddNormalTableColumn(SDbObj *pDb, SChildTableObj *pTable, SSc
SAcctObj *pAcct = acctGetAcct(pDb->cfg.acct);
if (pAcct != NULL) {
pAcct->acctInfo.numOfTimeSeries += ncols;
- acctDecRef(pAcct);
+ acctReleaseAcct(pAcct);
}
SSdbOperDesc oper = {
@@ -1443,7 +1441,7 @@ static int32_t mgmtDropNormalTableColumn(SDbObj *pDb, SChildTableObj *pTable, ch
SAcctObj *pAcct = acctGetAcct(pDb->cfg.acct);
if (pAcct != NULL) {
pAcct->acctInfo.numOfTimeSeries--;
- acctDecRef(pAcct);
+ acctReleaseAcct(pAcct);
}
SSdbOperDesc oper = {
@@ -1633,7 +1631,7 @@ static void mgmtDropAllChildTablesInStable(SSuperTableObj *pStable) {
}
static SChildTableObj* mgmtGetTableByPos(uint32_t dnodeId, int32_t vnode, int32_t sid) {
- SDnodeObj *pObj = mgmtGetDnode(dnodeId);
+ SDnodeObj *pObj = clusterGetDnode(dnodeId);
SVgObj *pVgroup = mgmtGetVgroup(vnode);
if (pObj == NULL || pVgroup == NULL) {
@@ -1642,7 +1640,7 @@ static SChildTableObj* mgmtGetTableByPos(uint32_t dnodeId, int32_t vnode, int32_
SChildTableObj *pTable = pVgroup->tableList[sid];
mgmtIncTableRef((STableObj *)pTable);
- mgmtDecVgroupRef(pVgroup);
+ mgmtReleaseVgroup(pVgroup);
return pTable;
}
@@ -1863,7 +1861,7 @@ static int32_t mgmtGetShowTableMeta(STableMetaMsg *pMeta, SShowObj *pShow, void
pShow->numOfRows = pDb->numOfTables;
pShow->rowSize = pShow->offset[cols - 1] + pShow->bytes[cols - 1];
- mgmtDecDbRef(pDb);
+ mgmtReleaseDb(pDb);
return 0;
}
@@ -1940,7 +1938,7 @@ static int32_t mgmtRetrieveShowTables(SShowObj *pShow, char *data, int32_t rows,
const int32_t NUM_OF_COLUMNS = 4;
mgmtVacuumResult(data, NUM_OF_COLUMNS, numOfRows, rows, pShow);
- mgmtDecDbRef(pDb);
+ mgmtReleaseDb(pDb);
return numOfRows;
}
@@ -1950,7 +1948,7 @@ static void mgmtProcessAlterTableMsg(SQueuedMsg *pMsg) {
mTrace("table:%s, alter table msg is received from thandle:%p", pAlter->tableId, pMsg->thandle);
pMsg->pDb = mgmtGetDbByTableId(pAlter->tableId);
- if (pMsg->pDb == NULL || pMsg->pDb->dirty) {
+ if (pMsg->pDb == NULL || pMsg->pDb->status != TSDB_DB_STATUS_READY) {
mError("table:%s, failed to alter table, db not selected", pAlter->tableId);
mgmtSendSimpleResp(pMsg->thandle, TSDB_CODE_DB_NOT_SELECTED);
return;
diff --git a/src/mnode/src/mgmtUser.c b/src/mnode/src/mgmtUser.c
index 0ee41b6b87..fe7d40e120 100644
--- a/src/mnode/src/mgmtUser.c
+++ b/src/mnode/src/mgmtUser.c
@@ -18,8 +18,8 @@
#include "trpc.h"
#include "ttime.h"
#include "tutil.h"
-#include "mgmtAcct.h"
-#include "mgmtGrant.h"
+#include "taccount.h"
+#include "tgrant.h"
#include "mgmtMnode.h"
#include "mgmtSdb.h"
#include "mgmtShell.h"
@@ -117,7 +117,7 @@ int32_t mgmtInitUsers() {
mgmtCreateUser(pAcct, "root", "taosdata");
mgmtCreateUser(pAcct, "monitor", tsInternalPass);
mgmtCreateUser(pAcct, "_root", tsInternalPass);
- acctDecRef(pAcct);
+ acctReleaseAcct(pAcct);
mgmtAddShellMsgHandle(TSDB_MSG_TYPE_CM_CREATE_USER, mgmtProcessCreateUserMsg);
mgmtAddShellMsgHandle(TSDB_MSG_TYPE_CM_ALTER_USER, mgmtProcessAlterUserMsg);
@@ -137,11 +137,7 @@ SUserObj *mgmtGetUser(char *name) {
return (SUserObj *)sdbGetRow(tsUserSdb, name);
}
-void mgmtIncUserRef(SUserObj *pUser) {
- return sdbIncRef(tsUserSdb, pUser);
-}
-
-void mgmtDecUserRef(SUserObj *pUser) {
+void mgmtReleaseUser(SUserObj *pUser) {
return sdbDecRef(tsUserSdb, pUser);
}
@@ -174,7 +170,7 @@ int32_t mgmtCreateUser(SAcctObj *pAcct, char *name, char *pass) {
SUserObj *pUser = mgmtGetUser(name);
if (pUser != NULL) {
mTrace("user:%s is already there", name);
- mgmtDecUserRef(pUser);
+ mgmtReleaseUser(pUser);
return TSDB_CODE_USER_ALREADY_EXIST;
}
@@ -264,7 +260,7 @@ static int32_t mgmtGetUserMeta(STableMetaMsg *pMeta, SShowObj *pShow, void *pCon
pShow->numOfRows = pUser->pAcct->acctInfo.numOfUsers;
pShow->rowSize = pShow->offset[cols - 1] + pShow->bytes[cols - 1];
- mgmtDecUserRef(pUser);
+ mgmtReleaseUser(pUser);
return 0;
}
@@ -299,7 +295,7 @@ static int32_t mgmtRetrieveUsers(SShowObj *pShow, char *data, int32_t rows, void
cols++;
numOfRows++;
- mgmtDecUserRef(pUser);
+ mgmtReleaseUser(pUser);
}
pShow->numOfReads += numOfRows;
return numOfRows;
@@ -351,7 +347,7 @@ static void mgmtProcessAlterUserMsg(SQueuedMsg *pMsg) {
if (strcmp(pUser->user, "monitor") == 0 || (strcmp(pUser->user + 1, pUser->acct) == 0 && pUser->user[0] == '_')) {
mgmtSendSimpleResp(pMsg->thandle, TSDB_CODE_NO_RIGHTS);
- mgmtDecUserRef(pUser);
+ mgmtReleaseUser(pUser);
return;
}
@@ -427,7 +423,7 @@ static void mgmtProcessAlterUserMsg(SQueuedMsg *pMsg) {
mgmtSendSimpleResp(pMsg->thandle, TSDB_CODE_NO_RIGHTS);
}
- mgmtDecUserRef(pUser);
+ mgmtReleaseUser(pUser);
}
static void mgmtProcessDropUserMsg(SQueuedMsg *pMsg) {
@@ -446,7 +442,7 @@ static void mgmtProcessDropUserMsg(SQueuedMsg *pMsg) {
if (strcmp(pUser->user, "monitor") == 0 || strcmp(pUser->user, pUser->acct) == 0 ||
(strcmp(pUser->user + 1, pUser->acct) == 0 && pUser->user[0] == '_')) {
mgmtSendSimpleResp(pMsg->thandle, TSDB_CODE_NO_RIGHTS);
- mgmtDecUserRef(pUser);
+ mgmtReleaseUser(pUser);
return ;
}
@@ -475,7 +471,7 @@ static void mgmtProcessDropUserMsg(SQueuedMsg *pMsg) {
}
mgmtSendSimpleResp(pMsg->thandle, code);
- mgmtDecUserRef(pUser);
+ mgmtReleaseUser(pUser);
}
void mgmtDropAllUsers(SAcctObj *pAcct) {
@@ -501,7 +497,7 @@ void mgmtDropAllUsers(SAcctObj *pAcct) {
numOfUsers++;
}
- mgmtDecUserRef(pUser);
+ mgmtReleaseUser(pUser);
}
mTrace("acct:%s, all users:%d is dropped from sdb", pAcct->user, numOfUsers);
diff --git a/src/mnode/src/mgmtVgroup.c b/src/mnode/src/mgmtVgroup.c
index 8ca23dc98a..4c969124a0 100644
--- a/src/mnode/src/mgmtVgroup.c
+++ b/src/mnode/src/mgmtVgroup.c
@@ -17,12 +17,11 @@
#include "os.h"
#include "taoserror.h"
#include "tlog.h"
-#include "tstatus.h"
+#include "tbalance.h"
+#include "tcluster.h"
#include "mnode.h"
-#include "mgmtBalance.h"
#include "mgmtDb.h"
#include "mgmtDClient.h"
-#include "mgmtDnode.h"
#include "mgmtDServer.h"
#include "mgmtMnode.h"
#include "mgmtProfile.h"
@@ -54,11 +53,11 @@ static int32_t mgmtVgroupActionDestroy(SSdbOperDesc *pOper) {
}
for (int32_t i = 0; i < pVgroup->numOfVnodes; ++i) {
- SDnodeObj *pDnode = mgmtGetDnode(pVgroup->vnodeGid[i].dnodeId);
+ SDnodeObj *pDnode = clusterGetDnode(pVgroup->vnodeGid[i].dnodeId);
if (pDnode) {
atomic_sub_fetch_32(&pDnode->openVnodes, 1);
}
- mgmtDecDnodeRef(pDnode);
+ clusterReleaseDnode(pDnode);
}
tfree(pOper->pObj);
@@ -71,7 +70,7 @@ static int32_t mgmtVgroupActionInsert(SSdbOperDesc *pOper) {
if (pDb == NULL) {
return TSDB_CODE_INVALID_DB;
}
- mgmtDecDbRef(pDb);
+ mgmtReleaseDb(pDb);
pVgroup->pDb = pDb;
pVgroup->prev = NULL;
@@ -92,12 +91,12 @@ static int32_t mgmtVgroupActionInsert(SSdbOperDesc *pOper) {
}
for (int32_t i = 0; i < pVgroup->numOfVnodes; ++i) {
- SDnodeObj *pDnode = mgmtGetDnode(pVgroup->vnodeGid[i].dnodeId);
+ SDnodeObj *pDnode = clusterGetDnode(pVgroup->vnodeGid[i].dnodeId);
if (pDnode != NULL) {
pVgroup->vnodeGid[i].privateIp = pDnode->privateIp;
pVgroup->vnodeGid[i].publicIp = pDnode->publicIp;
atomic_add_fetch_32(&pDnode->openVnodes, 1);
- mgmtDecDnodeRef(pDnode);
+ clusterReleaseDnode(pDnode);
}
}
@@ -114,7 +113,7 @@ static int32_t mgmtVgroupActionDelete(SSdbOperDesc *pOper) {
mgmtRemoveVgroupFromDb(pVgroup);
}
- mgmtDecDbRef(pVgroup->pDb);
+ mgmtReleaseDb(pVgroup->pDb);
return TSDB_CODE_SUCCESS;
}
@@ -190,11 +189,7 @@ int32_t mgmtInitVgroups() {
return 0;
}
-void mgmtIncVgroupRef(SVgObj *pVgroup) {
- return sdbIncRef(tsVgroupSdb, pVgroup);
-}
-
-void mgmtDecVgroupRef(SVgObj *pVgroup) {
+void mgmtReleaseVgroup(SVgObj *pVgroup) {
return sdbDecRef(tsVgroupSdb, pVgroup);
}
@@ -202,16 +197,32 @@ SVgObj *mgmtGetVgroup(int32_t vgId) {
return (SVgObj *)sdbGetRow(tsVgroupSdb, &vgId);
}
+void mgmtUpdateVgroup(SVgObj *pVgroup) {
+ SSdbOperDesc oper = {
+ .type = SDB_OPER_TYPE_GLOBAL,
+ .table = tsVgroupSdb,
+ .pObj = pVgroup,
+ .rowSize = tsVgUpdateSize
+ };
+
+ sdbUpdateRow(&oper);
+ mgmtSendCreateVgroupMsg(pVgroup, NULL);
+}
+
SVgObj *mgmtGetAvailableVgroup(SDbObj *pDb) {
return pDb->pHead;
}
+void *mgmtGetNextVgroup(void *pNode, SVgObj **pVgroup) {
+ return sdbFetchRow(tsVgroupSdb, pNode, (void **)pVgroup);
+}
+
void mgmtCreateVgroup(SQueuedMsg *pMsg, SDbObj *pDb) {
SVgObj *pVgroup = (SVgObj *)calloc(1, sizeof(SVgObj));
strcpy(pVgroup->dbName, pDb->name);
pVgroup->numOfVnodes = pDb->cfg.replications;
pVgroup->createdTime = taosGetTimestampMs();
- if (mgmtAllocVnodes(pVgroup) != 0) {
+ if (balanceAllocVnodes(pVgroup) != 0) {
mError("db:%s, no enough dnode to alloc %d vnodes to vgroup", pDb->name, pVgroup->numOfVnodes);
free(pVgroup);
mgmtSendSimpleResp(pMsg->thandle, TSDB_CODE_NO_ENOUGH_DNODES);
@@ -302,7 +313,7 @@ int32_t mgmtGetVgroupMeta(STableMetaMsg *pMeta, SShowObj *pShow, void *pConn) {
mgmtDecTableRef(pTable);
pVgroup = mgmtGetVgroup(((SChildTableObj*)pTable)->vgId);
if (NULL == pVgroup) return TSDB_CODE_INVALID_TABLE_ID;
- mgmtDecVgroupRef(pVgroup);
+ mgmtReleaseVgroup(pVgroup);
maxReplica = pVgroup->numOfVnodes > maxReplica ? pVgroup->numOfVnodes : maxReplica;
} else {
SVgObj *pVgroup = pDb->pHead;
@@ -348,26 +359,26 @@ int32_t mgmtGetVgroupMeta(STableMetaMsg *pMeta, SShowObj *pShow, void *pConn) {
pShow->pNode = pVgroup;
}
- mgmtDecDbRef(pDb);
+ mgmtReleaseDb(pDb);
return 0;
}
char *mgmtGetVnodeStatus(SVgObj *pVgroup, SVnodeGid *pVnode) {
- SDnodeObj *pDnode = mgmtGetDnode(pVnode->dnodeId);
+ SDnodeObj *pDnode = clusterGetDnode(pVnode->dnodeId);
if (pDnode == NULL) {
mError("vgroup:%d, not exist in dnode:%d", pVgroup->vgId, pDnode->dnodeId);
return "null";
}
- mgmtDecDnodeRef(pDnode);
+ clusterReleaseDnode(pDnode);
- if (pDnode->status == TSDB_DN_STATUS_OFFLINE) {
+ if (pDnode->status == TAOS_DN_STATUS_OFFLINE) {
return "offline";
}
for (int i = 0; i < pDnode->openVnodes; ++i) {
if (pDnode->vload[i].vgId == pVgroup->vgId) {
- return (char*)taosGetVnodeStatusStr(pDnode->vload[i].status);
+ return pDnode->vload[i].status ? "ready" : "offline";
}
}
@@ -407,7 +418,7 @@ int32_t mgmtRetrieveVgroups(SShowObj *pShow, char *data, int32_t rows, void *pCo
cols++;
pWrite = data + pShow->offset[cols] * rows + pShow->bytes[cols] * numOfRows;
- strcpy(pWrite, taosGetVgroupLbStatusStr(pVgroup->lbStatus));
+ strcpy(pWrite, pVgroup->status ? "updating" : "ready");
cols++;
for (int32_t i = 0; i < maxReplica; ++i) {
@@ -434,7 +445,7 @@ int32_t mgmtRetrieveVgroups(SShowObj *pShow, char *data, int32_t rows, void *pCo
}
pShow->numOfReads += numOfRows;
- mgmtDecDbRef(pDb);
+ mgmtReleaseDb(pDb);
return numOfRows;
}
@@ -645,13 +656,13 @@ static void mgmtProcessVnodeCfgMsg(SRpcMsg *rpcMsg) {
pCfg->dnodeId = htonl(pCfg->dnodeId);
pCfg->vgId = htonl(pCfg->vgId);
- SDnodeObj *pDnode = mgmtGetDnode(pCfg->dnodeId);
+ SDnodeObj *pDnode = clusterGetDnode(pCfg->dnodeId);
if (pDnode == NULL) {
mTrace("dnode:%s, invalid dnode", taosIpStr(pCfg->dnodeId), pCfg->vgId);
mgmtSendSimpleResp(rpcMsg->handle, TSDB_CODE_NOT_ACTIVE_VNODE);
return;
}
- mgmtDecDnodeRef(pDnode);
+ clusterReleaseDnode(pDnode);
SVgObj *pVgroup = mgmtGetVgroup(pCfg->vgId);
if (pVgroup == NULL) {
@@ -659,7 +670,7 @@ static void mgmtProcessVnodeCfgMsg(SRpcMsg *rpcMsg) {
mgmtSendSimpleResp(rpcMsg->handle, TSDB_CODE_NOT_ACTIVE_VNODE);
return;
}
- mgmtDecVgroupRef(pVgroup);
+ mgmtReleaseVgroup(pVgroup);
mgmtSendSimpleResp(rpcMsg->handle, TSDB_CODE_SUCCESS);
@@ -675,7 +686,7 @@ void mgmtDropAllVgroups(SDbObj *pDropDb) {
SVgObj *pVgroup = NULL;
while (1) {
- mgmtDecVgroupRef(pVgroup);
+ mgmtReleaseVgroup(pVgroup);
pNode = sdbFetchRow(tsVgroupSdb, pNode, (void **)&pVgroup);
if (pVgroup == NULL) break;
@@ -704,4 +715,5 @@ void mgmtAlterVgroup(SVgObj *pVgroup, void *ahandle) {
} else {
mgmtAddToShellQueue(ahandle);
}
-}
\ No newline at end of file
+}
+
diff --git a/src/query/src/queryExecutor.c b/src/query/src/queryExecutor.c
index 05e1c2f66f..5af0cdc687 100644
--- a/src/query/src/queryExecutor.c
+++ b/src/query/src/queryExecutor.c
@@ -20,7 +20,6 @@
#include "tlog.h"
#include "tlosertree.h"
#include "tscompression.h"
-#include "tstatus.h"
#include "ttime.h"
#include "qast.h"
diff --git a/src/rpc/src/rpcMain.c b/src/rpc/src/rpcMain.c
index 31426fc53c..f50d3e0698 100755
--- a/src/rpc/src/rpcMain.c
+++ b/src/rpc/src/rpcMain.c
@@ -935,6 +935,9 @@ static void rpcProcessIncomingMsg(SRpcConn *pConn, SRpcHead *pHead) {
memcpy(&pContext->ipSet, pHead->content, sizeof(pContext->ipSet));
tTrace("%s %p, redirect is received, numOfIps:%d", pRpc->label, pConn, pContext->ipSet.numOfIps);
rpcSendReqToServer(pRpc, pContext);
+ } else if (pHead->code == TSDB_CODE_NOT_READY) {
+ pConn->pContext->code = pHead->code;
+ rpcProcessConnError(pConn->pContext, NULL);
} else {
rpcNotifyClient(pContext, &rpcMsg);
}
@@ -1079,7 +1082,7 @@ static void rpcSendMsgToPeer(SRpcConn *pConn, void *msg, int msgLen) {
if (pHead->msgType < TSDB_MSG_TYPE_CM_HEARTBEAT || (rpcDebugFlag & 16))
tTrace( "%s %p, %s is sent to %s:%hu, code:0x%x len:%d sig:0x%08x:0x%08x:%d",
pRpc->label, pConn, taosMsg[pHead->msgType], pConn->peerIpstr, pConn->peerPort,
- pHead->code, msgLen, pHead->sourceId, pHead->destId, pHead->tranId);
+ htonl(pHead->code), msgLen, pHead->sourceId, pHead->destId, pHead->tranId);
}
writtenLen = (*taosSendData[pConn->connType])(pConn->peerIp, pConn->peerPort, pHead, msgLen, pConn->chandle);
diff --git a/src/util/inc/tmodule.h b/src/util/inc/tmodule.h
index 9f8ef147f8..f5ad6a6b60 100644
--- a/src/util/inc/tmodule.h
+++ b/src/util/inc/tmodule.h
@@ -28,8 +28,6 @@ enum _module {
TSDB_MOD_MGMT,
TSDB_MOD_HTTP,
TSDB_MOD_MONITOR,
- TSDB_MOD_DCLUSTER,
- TSDB_MOD_MSTORAGE,
TSDB_MOD_MAX
};
diff --git a/src/util/inc/tstatus.h b/src/util/inc/tstatus.h
deleted file mode 100644
index 223ed1d52d..0000000000
--- a/src/util/inc/tstatus.h
+++ /dev/null
@@ -1,127 +0,0 @@
-/*
- * Copyright (c) 2019 TAOS Data, Inc.
- *
- * This program is free software: you can use, redistribute, and/or modify
- * it under the terms of the GNU Affero General Public License, version 3
- * or later ("AGPL"), as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see .
- */
-
-#ifndef TDENGINE_TSTATUS_H
-#define TDENGINE_TSTATUS_H
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#include
-#include
-#include "taoserror.h"
-
-enum _TSDB_VG_STATUS {
- TSDB_VG_STATUS_READY = TSDB_CODE_SUCCESS,
- TSDB_VG_STATUS_IN_PROGRESS = 1, //TSDB_CODE_ACTION_IN_PROGRESS,
- TSDB_VG_STATUS_NO_DISK_PERMISSIONS = 73,//TSDB_CODE_NO_DISK_PERMISSIONS,
- TSDB_VG_STATUS_SERVER_NO_PACE = 110, //TSDB_CODE_SERV_NO_DISKSPACE,
- TSDB_VG_STATUS_SERV_OUT_OF_MEMORY = 69, //TSDB_CODE_SERV_OUT_OF_MEMORY,
- TSDB_VG_STATUS_INIT_FAILED = 74, //TSDB_CODE_VG_INIT_FAILED,
- TSDB_VG_STATUS_FULL = 48, //TSDB_CODE_NO_ENOUGH_DNODES,
-};
-
-enum _TSDB_DB_STATUS {
- TSDB_DB_STATUS_READY,
- TSDB_DB_STATUS_DROPPING,
- TSDB_DB_STATUS_DROP_FROM_SDB
-};
-
-typedef enum _TSDB_VN_STATUS {
- TSDB_VN_STATUS_NOT_READY,
- TSDB_VN_STATUS_UNSYNCED,
- TSDB_VN_STATUS_SLAVE,
- TSDB_VN_STATUS_MASTER,
- TSDB_VN_STATUS_CREATING,
- TSDB_VN_STATUS_CLOSING,
- TSDB_VN_STATUS_DELETING,
-} EVnodeStatus;
-
-enum _TSDB_VN_SYNC_STATUS {
- TSDB_VN_SYNC_STATUS_INIT,
- TSDB_VN_SYNC_STATUS_SYNCING,
- TSDB_VN_SYNC_STATUS_SYNC_CACHE,
- TSDB_VN_SYNC_STATUS_SYNC_FILE
-};
-
-enum _TSDB_VN_DROP_STATUS {
- TSDB_VN_DROP_STATUS_READY,
- TSDB_VN_DROP_STATUS_DROPPING
-};
-
-enum _TSDB_MN_STATUS {
- TSDB_MN_STATUS_OFFLINE,
- TSDB_MN_STATUS_UNSYNCED,
- TSDB_MN_STATUS_SYNCING,
- TSDB_MN_STATUS_SERVING
-};
-
-enum _TSDB_MN_ROLE {
- TSDB_MN_ROLE_UNDECIDED,
- TSDB_MN_ROLE_SLAVE,
- TSDB_MN_ROLE_MASTER
-};
-
-enum _TSDB_DN_STATUS {
- TSDB_DN_STATUS_OFFLINE,
- TSDB_DN_STATUS_READY
-};
-
-enum _TSDB_DN_LB_STATUS {
- TSDB_DN_LB_STATUS_BALANCED,
- TSDB_DN_LB_STATUS_BALANCING,
- TSDB_DN_LB_STATUS_OFFLINE_REMOVING,
- TSDB_DN_LB_STATE_SHELL_REMOVING
-};
-
-enum _TSDB_VG_LB_STATUS {
- TSDB_VG_LB_STATUS_READY,
- TSDB_VG_LB_STATUS_UPDATE
-};
-
-enum _TSDB_VN_STREAM_STATUS {
- TSDB_VN_STREAM_STATUS_STOP,
- TSDB_VN_STREAM_STATUS_START
-};
-
-enum TSDB_TABLE_STATUS {
- TSDB_METER_STATE_READY = 0x00,
- TSDB_METER_STATE_INSERTING = 0x01,
- TSDB_METER_STATE_IMPORTING = 0x02,
- TSDB_METER_STATE_UPDATING = 0x04,
- TSDB_METER_STATE_DROPPING = 0x10,
- TSDB_METER_STATE_DROPPED = 0x18,
-};
-
-char* taosGetVgroupStatusStr(int32_t vgroupStatus);
-char* taosGetDbStatusStr(int32_t dbStatus);
-char* taosGetVnodeStatusStr(int32_t vnodeStatus);
-char* taosGetVnodeSyncStatusStr(int32_t vnodeSyncStatus);
-char* taosGetVnodeDropStatusStr(int32_t dropping);
-char* taosGetDnodeStatusStr(int32_t dnodeStatus);
-char* taosGetDnodeLbStatusStr(int32_t dnodeBalanceStatus);
-char* taosGetVgroupLbStatusStr(int32_t vglbStatus);
-char* taosGetVnodeStreamStatusStr(int32_t vnodeStreamStatus);
-char* taosGetTableStatusStr(int32_t tableStatus);
-char *taosGetShowTypeStr(int32_t showType);
-char *taosGetMnodeStatusStr(int32_t mnodeStatus);
-char *taosGetMnodeRoleStr(int32_t mnodeRole);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif // TDENGINE_TSTATUS_H
diff --git a/src/util/src/tglobalcfg.c b/src/util/src/tglobalcfg.c
index 8a0d66068e..88a3be0e02 100644
--- a/src/util/src/tglobalcfg.c
+++ b/src/util/src/tglobalcfg.c
@@ -111,7 +111,12 @@ short tsDaysPerFile = 10;
int tsDaysToKeep = 3650;
int tsReplications = TSDB_REPLICA_MIN_NUM;
+#ifdef _MPEER
int tsNumOfMPeers = 3;
+#else
+int tsNumOfMPeers = 1;
+#endif
+
int tsMaxShellConns = 2000;
int tsMaxTables = 100000;
@@ -552,9 +557,11 @@ static void doInitGlobalConfig() {
tsInitConfigOption(cfg++, "tblocks", &tsNumOfBlocksPerMeter, TSDB_CFG_VTYPE_SHORT,
TSDB_CFG_CTYPE_B_CONFIG | TSDB_CFG_CTYPE_B_SHOW,
32, 4096, 0, TSDB_CFG_UTYPE_NONE);
+#ifdef _MPEER
tsInitConfigOption(cfg++, "numOfMPeers", &tsNumOfMPeers, TSDB_CFG_VTYPE_INT,
TSDB_CFG_CTYPE_B_CONFIG | TSDB_CFG_CTYPE_B_SHOW | TSDB_CFG_CTYPE_B_CLUSTER,
1, 3, 0, TSDB_CFG_UTYPE_NONE);
+#endif
tsInitConfigOption(cfg++, "balanceInterval", &tsBalanceStartInterval, TSDB_CFG_VTYPE_INT,
TSDB_CFG_CTYPE_B_CONFIG | TSDB_CFG_CTYPE_B_SHOW | TSDB_CFG_CTYPE_B_CLUSTER,
1, 30000, 0, TSDB_CFG_UTYPE_NONE);
diff --git a/src/util/src/tstatus.c b/src/util/src/tstatus.c
deleted file mode 100644
index e8534de30b..0000000000
--- a/src/util/src/tstatus.c
+++ /dev/null
@@ -1,157 +0,0 @@
-/*
- * Copyright (c) 2019 TAOS Data, Inc.
- *
- * This program is free software: you can use, redistribute, and/or modify
- * it under the terms of the GNU Affero General Public License, version 3
- * or later ("AGPL"), as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see .
- */
-
-#include "taosmsg.h"
-#include "tstatus.h"
-
-char* taosGetVgroupStatusStr(int32_t vgroupStatus) {
- switch (vgroupStatus) {
- case TSDB_VG_STATUS_READY: return (char*)tstrerror(vgroupStatus);
- case TSDB_VG_STATUS_IN_PROGRESS: return (char*)tstrerror(vgroupStatus);
- case TSDB_VG_STATUS_NO_DISK_PERMISSIONS: return (char*)tstrerror(vgroupStatus);
- case TSDB_VG_STATUS_SERVER_NO_PACE: return (char*)tstrerror(vgroupStatus);
- case TSDB_VG_STATUS_SERV_OUT_OF_MEMORY: return (char*)tstrerror(vgroupStatus);
- case TSDB_VG_STATUS_INIT_FAILED: return (char*)tstrerror(vgroupStatus);
- case TSDB_VG_STATUS_FULL: return (char*)tstrerror(vgroupStatus);
- default: return "undefined";
- }
-}
-
-char* taosGetDbStatusStr(int32_t dbStatus) {
- switch (dbStatus) {
- case TSDB_DB_STATUS_READY: return "ready";
- case TSDB_DB_STATUS_DROPPING: return "dropping";
- case TSDB_DB_STATUS_DROP_FROM_SDB: return "drop_from_sdb";
- default: return "undefined";
- }
-}
-
-char* taosGetVnodeStatusStr(int32_t vnodeStatus) {
- switch (vnodeStatus) {
- case TSDB_VN_STATUS_NOT_READY:return "not_ready";
- case TSDB_VN_STATUS_UNSYNCED: return "unsynced";
- case TSDB_VN_STATUS_SLAVE: return "slave";
- case TSDB_VN_STATUS_MASTER: return "master";
- case TSDB_VN_STATUS_CREATING: return "creating";
- case TSDB_VN_STATUS_CLOSING: return "closing";
- case TSDB_VN_STATUS_DELETING: return "deleting";
- default: return "undefined";
- }
-}
-
-char* taosGetVnodeSyncStatusStr(int32_t vnodeSyncStatus) {
- switch (vnodeSyncStatus) {
- case TSDB_VN_SYNC_STATUS_INIT: return "ready";
- case TSDB_VN_SYNC_STATUS_SYNCING: return "syncing";
- case TSDB_VN_SYNC_STATUS_SYNC_CACHE: return "sync_cache";
- case TSDB_VN_SYNC_STATUS_SYNC_FILE: return "sync_file";
- default: return "undefined";
- }
-}
-
-char* taosGetVnodeDropStatusStr(int32_t dropping) {
- switch (dropping) {
- case TSDB_VN_DROP_STATUS_READY: return "ready";
- case TSDB_VN_DROP_STATUS_DROPPING: return "dropping";
- default: return "undefined";
- }
-}
-
-char* taosGetDnodeStatusStr(int32_t dnodeStatus) {
- switch (dnodeStatus) {
- case TSDB_DN_STATUS_OFFLINE: return "offline";
- case TSDB_DN_STATUS_READY: return "ready";
- default: return "undefined";
- }
-}
-
-char* taosGetDnodeLbStatusStr(int32_t dnodeBalanceStatus) {
- switch (dnodeBalanceStatus) {
- case TSDB_DN_LB_STATUS_BALANCED: return "balanced";
- case TSDB_DN_LB_STATUS_BALANCING: return "balancing";
- case TSDB_DN_LB_STATUS_OFFLINE_REMOVING: return "offline removing";
- case TSDB_DN_LB_STATE_SHELL_REMOVING: return "removing";
- default: return "undefined";
- }
-}
-
-char* taosGetVgroupLbStatusStr(int32_t vglbStatus) {
- switch (vglbStatus) {
- case TSDB_VG_LB_STATUS_READY: return "ready";
- case TSDB_VG_LB_STATUS_UPDATE: return "updating";
- default: return "undefined";
- }
-}
-
-char* taosGetVnodeStreamStatusStr(int32_t vnodeStreamStatus) {
- switch (vnodeStreamStatus) {
- case TSDB_VN_STREAM_STATUS_START: return "start";
- case TSDB_VN_STREAM_STATUS_STOP: return "stop";
- default: return "undefined";
- }
-}
-
-char* taosGetTableStatusStr(int32_t tableStatus) {
- switch(tableStatus) {
- case TSDB_METER_STATE_INSERTING:return "inserting";
- case TSDB_METER_STATE_IMPORTING:return "importing";
- case TSDB_METER_STATE_UPDATING: return "updating";
- case TSDB_METER_STATE_DROPPING: return "deleting";
- case TSDB_METER_STATE_DROPPED: return "dropped";
- case TSDB_METER_STATE_READY: return "ready";
- default:return "undefined";
- }
-}
-
-char *taosGetShowTypeStr(int32_t showType) {
- switch (showType) {
- case TSDB_MGMT_TABLE_ACCT: return "show accounts";
- case TSDB_MGMT_TABLE_USER: return "show users";
- case TSDB_MGMT_TABLE_DB: return "show databases";
- case TSDB_MGMT_TABLE_TABLE: return "show tables";
- case TSDB_MGMT_TABLE_DNODE: return "show dnodes";
- case TSDB_MGMT_TABLE_MNODE: return "show mnodes";
- case TSDB_MGMT_TABLE_VGROUP: return "show vgroups";
- case TSDB_MGMT_TABLE_METRIC: return "show stables";
- case TSDB_MGMT_TABLE_MODULE: return "show modules";
- case TSDB_MGMT_TABLE_QUERIES: return "show queries";
- case TSDB_MGMT_TABLE_STREAMS: return "show streams";
- case TSDB_MGMT_TABLE_CONFIGS: return "show configs";
- case TSDB_MGMT_TABLE_CONNS: return "show connections";
- case TSDB_MGMT_TABLE_SCORES: return "show scores";
- case TSDB_MGMT_TABLE_GRANTS: return "show grants";
- case TSDB_MGMT_TABLE_VNODES: return "show vnodes";
- default: return "undefined";
- }
-}
-
-char *taosGetMnodeStatusStr(int32_t mnodeStatus) {
- switch (mnodeStatus) {
- case TSDB_MN_STATUS_OFFLINE: return "offline";
- case TSDB_MN_STATUS_UNSYNCED: return "unsynced";
- case TSDB_MN_STATUS_SYNCING: return "syncing";
- case TSDB_MN_STATUS_SERVING: return "serving";
- default: return "undefined";
- }
-}
-
-char *taosGetMnodeRoleStr(int32_t mnodeRole) {
- switch (mnodeRole) {
- case TSDB_MN_ROLE_UNDECIDED: return "undicided";
- case TSDB_MN_ROLE_SLAVE: return "slave";
- case TSDB_MN_ROLE_MASTER: return "master";
- default: return "undefined";
- }
-}
diff --git a/src/util/src/tstring.c b/src/util/src/tstring.c
index 7aca939f47..5a134df129 100644
--- a/src/util/src/tstring.c
+++ b/src/util/src/tstring.c
@@ -110,6 +110,8 @@ char *taosMsg[] = {
"",
"",
"",
+ "",
+ "",
"", //90
"config-table",
diff --git a/src/vnode/main/inc/vnodeInt.h b/src/vnode/main/inc/vnodeInt.h
index 4d078869c4..f1b9d55d54 100644
--- a/src/vnode/main/inc/vnodeInt.h
+++ b/src/vnode/main/inc/vnodeInt.h
@@ -23,19 +23,11 @@ extern "C" {
#include "tsync.h"
#include "twal.h"
-typedef enum _VN_STATUS {
- VN_STATUS_INIT,
- VN_STATUS_CREATING,
- VN_STATUS_READY,
- VN_STATUS_CLOSING,
- VN_STATUS_DELETING,
-} EVnStatus;
-
typedef struct {
int32_t vgId; // global vnode group ID
int32_t refCount; // reference count
- EVnStatus status;
- int role;
+ int status;
+ int8_t role;
int64_t version;
void *wqueue;
void *rqueue;
@@ -49,7 +41,7 @@ typedef struct {
SWalCfg walCfg;
} SVnodeObj;
-int vnodeWriteToQueue(void *param, SWalHead *pHead, int type);
+int vnodeWriteToQueue(void *param, void *pHead, int type);
void vnodeInitWriteFp(void);
void vnodeInitReadFp(void);
diff --git a/src/vnode/main/src/vnodeMain.c b/src/vnode/main/src/vnodeMain.c
index 13210e496f..182b4b6257 100644
--- a/src/vnode/main/src/vnodeMain.c
+++ b/src/vnode/main/src/vnodeMain.c
@@ -20,7 +20,6 @@
#include "taosmsg.h"
#include "tlog.h"
#include "trpc.h"
-#include "tstatus.h"
#include "tsdb.h"
#include "ttime.h"
#include "ttimer.h"
@@ -29,16 +28,25 @@
#include "vnode.h"
#include "vnodeInt.h"
-static void *tsDnodeVnodesHash;
-static void vnodeCleanUp(SVnodeObj *pVnode);
-static void vnodeBuildVloadMsg(char *pNode, void * param);
-static int vnodeWALCallback(void *arg);
-static int32_t vnodeSaveCfg(SMDCreateVnodeMsg *pVnodeCfg);
-static int32_t vnodeReadCfg(SVnodeObj *pVnode);
+static int32_t tsOpennedVnodes;
+static void *tsDnodeVnodesHash;
+static void vnodeCleanUp(SVnodeObj *pVnode);
+static void vnodeBuildVloadMsg(char *pNode, void * param);
+static int vnodeWalCallback(void *arg);
+static int32_t vnodeSaveCfg(SMDCreateVnodeMsg *pVnodeCfg);
+static int32_t vnodeReadCfg(SVnodeObj *pVnode);
+static int vnodeWalCallback(void *arg);
+static uint32_t vnodeGetFileInfo(void *ahandle, char *name, uint32_t *index, int32_t *size);
+static int vnodeGetWalInfo(void *ahandle, char *name, uint32_t *index);
+static void vnodeNotifyRole(void *ahandle, int8_t role);
-static int32_t tsOpennedVnodes;
static pthread_once_t vnodeModuleInit = PTHREAD_ONCE_INIT;
+#ifndef _VPEER
+tsync_h syncStart(SSyncInfo *info) { return NULL; }
+int syncForwardToPeer(tsync_h shandle, void *pHead, void *mhandle) { return 0; }
+#endif
+
static void vnodeInit() {
vnodeInitWriteFp();
vnodeInitReadFp();
@@ -54,7 +62,6 @@ int32_t vnodeCreate(SMDCreateVnodeMsg *pVnodeCfg) {
pthread_once(&vnodeModuleInit, vnodeInit);
SVnodeObj *pTemp = (SVnodeObj *)taosGetIntHashData(tsDnodeVnodesHash, pVnodeCfg->cfg.vgId);
-
if (pTemp != NULL) {
dPrint("vgId:%d, vnode already exist, pVnode:%p", pVnodeCfg->cfg.vgId, pTemp);
return TSDB_CODE_SUCCESS;
@@ -104,14 +111,15 @@ int32_t vnodeCreate(SMDCreateVnodeMsg *pVnodeCfg) {
}
int32_t vnodeDrop(int32_t vgId) {
- SVnodeObj *pVnode = *(SVnodeObj **)taosGetIntHashData(tsDnodeVnodesHash, vgId);
- if (pVnode == NULL) {
+ SVnodeObj **ppVnode = (SVnodeObj **)taosGetIntHashData(tsDnodeVnodesHash, vgId);
+ if (ppVnode == NULL || *ppVnode == NULL) {
dTrace("vgId:%d, failed to drop, vgId not exist", vgId);
return TSDB_CODE_INVALID_VGROUP_ID;
}
+ SVnodeObj *pVnode = *ppVnode;
dTrace("pVnode:%p vgId:%d, vnode will be dropped", pVnode, pVnode->vgId);
- pVnode->status = VN_STATUS_DELETING;
+ pVnode->status = TAOS_VN_STATUS_DELETING;
vnodeCleanUp(pVnode);
return TSDB_CODE_SUCCESS;
@@ -123,7 +131,7 @@ int32_t vnodeOpen(int32_t vnode, char *rootDir) {
SVnodeObj *pVnode = calloc(sizeof(SVnodeObj), 1);
pVnode->vgId = vnode;
- pVnode->status = VN_STATUS_INIT;
+ pVnode->status = TAOS_VN_STATUS_INIT;
pVnode->refCount = 1;
pVnode->version = 0;
taosAddIntHash(tsDnodeVnodesHash, pVnode->vgId, (char *)(&pVnode));
@@ -139,14 +147,27 @@ int32_t vnodeOpen(int32_t vnode, char *rootDir) {
pVnode->rqueue = dnodeAllocateRqueue(pVnode);
sprintf(temp, "%s/wal", rootDir);
- pVnode->wal = walOpen(temp, pVnode->walCfg.wals, pVnode->walCfg.commitLog);
- pVnode->sync = NULL;
+ pVnode->wal = walOpen(temp, &pVnode->walCfg);
+
+ SSyncInfo syncInfo;
+ syncInfo.vgId = pVnode->vgId;
+ syncInfo.version = pVnode->version;
+ syncInfo.syncCfg = pVnode->syncCfg;
+ sprintf(syncInfo.path, "%s/tsdb/", rootDir);
+ syncInfo.ahandle = pVnode;
+ syncInfo.getWalInfo = vnodeGetWalInfo;
+ syncInfo.getFileInfo = vnodeGetFileInfo;
+ syncInfo.writeToCache = vnodeWriteToQueue;
+ syncInfo.confirmForward = dnodeSendRpcWriteRsp;
+ syncInfo.notifyRole = vnodeNotifyRole;
+ pVnode->sync = syncStart(&syncInfo);;
+
pVnode->events = NULL;
pVnode->cq = NULL;
STsdbAppH appH = {0};
appH.appH = (void *)pVnode;
- appH.walCallBack = vnodeWALCallback;
+ appH.walCallBack = vnodeWalCallback;
sprintf(temp, "%s/tsdb", rootDir);
void *pTsdb = tsdbOpenRepo(temp, &appH);
@@ -160,20 +181,20 @@ int32_t vnodeOpen(int32_t vnode, char *rootDir) {
walRestore(pVnode->wal, pVnode, vnodeWriteToQueue);
- pVnode->status = VN_STATUS_READY;
+ pVnode->status = TAOS_VN_STATUS_READY;
dTrace("pVnode:%p vgId:%d, vnode is opened in %s", pVnode, pVnode->vgId, rootDir);
- tsOpennedVnodes++;
+ atomic_add_fetch_32(&tsOpennedVnodes, 1);
return TSDB_CODE_SUCCESS;
}
int32_t vnodeClose(int32_t vgId) {
+ SVnodeObj **ppVnode = (SVnodeObj **)taosGetIntHashData(tsDnodeVnodesHash, vgId);
+ if (ppVnode == NULL || *ppVnode == NULL) return 0;
- SVnodeObj *pVnode = *(SVnodeObj **)taosGetIntHashData(tsDnodeVnodesHash, vgId);
- if (pVnode == NULL) return 0;
-
+ SVnodeObj *pVnode = *ppVnode;
dTrace("pVnode:%p vgId:%d, vnode will be closed", pVnode, pVnode->vgId);
- pVnode->status = VN_STATUS_CLOSING;
+ pVnode->status = TAOS_VN_STATUS_CLOSING;
vnodeCleanUp(pVnode);
return 0;
@@ -197,15 +218,15 @@ void vnodeRelease(void *pVnodeRaw) {
dnodeFreeWqueue(pVnode->wqueue);
pVnode->wqueue = NULL;
- if (pVnode->status == VN_STATUS_DELETING) {
+ if (pVnode->status == TAOS_VN_STATUS_DELETING) {
// remove the whole directory
}
dTrace("pVnode:%p vgId:%d, vnode is released", pVnode, pVnode->vgId);
free(pVnode);
- tsOpennedVnodes--;
- if (tsOpennedVnodes <= 0) {
+ int32_t count = atomic_sub_fetch_32(&tsOpennedVnodes, 1);
+ if (count <= 0) {
taosCleanUpIntHash(tsDnodeVnodesHash);
vnodeModuleInit = PTHREAD_ONCE_INIT;
tsDnodeVnodesHash = NULL;
@@ -213,13 +234,13 @@ void vnodeRelease(void *pVnodeRaw) {
}
void *vnodeGetVnode(int32_t vgId) {
- SVnodeObj *pVnode = *(SVnodeObj **) taosGetIntHashData(tsDnodeVnodesHash, vgId);
- if (pVnode == NULL) {
+ SVnodeObj **ppVnode = (SVnodeObj **)taosGetIntHashData(tsDnodeVnodesHash, vgId);
+ if (ppVnode == NULL || *ppVnode == NULL) {
terrno = TSDB_CODE_INVALID_VGROUP_ID;
- return NULL;
+ assert(false);
}
- return pVnode;
+ return *ppVnode;
}
void *vnodeAccquireVnode(int32_t vgId) {
@@ -257,7 +278,7 @@ void vnodeBuildStatusMsg(void *param) {
static void vnodeBuildVloadMsg(char *pNode, void * param) {
SVnodeObj *pVnode = *(SVnodeObj **) pNode;
- if (pVnode->status == VN_STATUS_DELETING) return;
+ if (pVnode->status == TAOS_VN_STATUS_DELETING) return;
SDMStatusMsg *pStatus = param;
if (pStatus->openVnodes >= TSDB_MAX_VNODES) return;
@@ -266,6 +287,7 @@ static void vnodeBuildVloadMsg(char *pNode, void * param) {
pLoad->vgId = htonl(pVnode->vgId);
pLoad->vnode = htonl(pVnode->vgId);
pLoad->status = pVnode->status;
+ pLoad->role = pVnode->role;
}
static void vnodeCleanUp(SVnodeObj *pVnode) {
@@ -280,11 +302,27 @@ static void vnodeCleanUp(SVnodeObj *pVnode) {
}
// TODO: this is a simple implement
-static int vnodeWALCallback(void *arg) {
+static int vnodeWalCallback(void *arg) {
SVnodeObj *pVnode = arg;
return walRenew(pVnode->wal);
}
+static uint32_t vnodeGetFileInfo(void *ahandle, char *name, uint32_t *index, int32_t *size) {
+ // SVnodeObj *pVnode = ahandle;
+ //tsdbGetFileInfo(pVnode->tsdb, name, index, size);
+ return 0;
+}
+
+static int vnodeGetWalInfo(void *ahandle, char *name, uint32_t *index) {
+ SVnodeObj *pVnode = ahandle;
+ return walGetWalFile(pVnode->wal, name, index);
+}
+
+static void vnodeNotifyRole(void *ahandle, int8_t role) {
+ SVnodeObj *pVnode = ahandle;
+ pVnode->role = role;
+}
+
static int32_t vnodeSaveCfg(SMDCreateVnodeMsg *pVnodeCfg) {
char cfgFile[TSDB_FILENAME_LEN * 2] = {0};
sprintf(cfgFile, "%s/vnode%d/config", tsVnodeDir, pVnodeCfg->cfg.vgId);
@@ -335,7 +373,7 @@ static int32_t vnodeReadCfg(SVnodeObj *pVnode) {
if (num != 2) return TSDB_CODE_INVALID_FILE_FORMAT;
if (strcmp(option[0], "arbitratorIp") != 0) return TSDB_CODE_INVALID_FILE_FORMAT;
if (arbitratorIp == -1) return TSDB_CODE_INVALID_FILE_FORMAT;
- pVnode->syncCfg.arbitratorIp = arbitratorIp;
+ pVnode->syncCfg.arbitratorIp = 0;
int32_t quorum = -1;
num = fscanf(fp, "%s %d", option[0], &quorum);
diff --git a/src/vnode/main/src/vnodeRead.c b/src/vnode/main/src/vnodeRead.c
index 929a30fbcd..59f392eb82 100644
--- a/src/vnode/main/src/vnodeRead.c
+++ b/src/vnode/main/src/vnodeRead.c
@@ -42,7 +42,7 @@ int32_t vnodeProcessRead(void *param, int msgType, void *pCont, int32_t contLen,
if (vnodeProcessReadMsgFp[msgType] == NULL)
return TSDB_CODE_MSG_NOT_PROCESSED;
- if (pVnode->status == VN_STATUS_DELETING || pVnode->status == VN_STATUS_CLOSING)
+ if (pVnode->status == TAOS_VN_STATUS_DELETING || pVnode->status == TAOS_VN_STATUS_CLOSING)
return TSDB_CODE_NOT_ACTIVE_VNODE;
return (*vnodeProcessReadMsgFp[msgType])(pVnode, pCont, contLen, ret);
diff --git a/src/vnode/main/src/vnodeWrite.c b/src/vnode/main/src/vnodeWrite.c
index 648e7197b0..5e03305487 100644
--- a/src/vnode/main/src/vnodeWrite.c
+++ b/src/vnode/main/src/vnodeWrite.c
@@ -42,18 +42,19 @@ void vnodeInitWriteFp(void) {
vnodeProcessWriteMsgFp[TSDB_MSG_TYPE_MD_DROP_STABLE] = vnodeProcessDropStableMsg;
}
-int32_t vnodeProcessWrite(void *param, int qtype, SWalHead *pHead, void *item) {
+int32_t vnodeProcessWrite(void *param1, int qtype, void *param2, void *item) {
int32_t code = 0;
- SVnodeObj *pVnode = (SVnodeObj *)param;
+ SVnodeObj *pVnode = (SVnodeObj *)param1;
+ SWalHead *pHead = param2;
if (vnodeProcessWriteMsgFp[pHead->msgType] == NULL)
return TSDB_CODE_MSG_NOT_PROCESSED;
- if (pVnode->status == VN_STATUS_DELETING || pVnode->status == VN_STATUS_CLOSING)
+ if (pVnode->status == TAOS_VN_STATUS_DELETING || pVnode->status == TAOS_VN_STATUS_CLOSING)
return TSDB_CODE_NOT_ACTIVE_VNODE;
if (pHead->version == 0) { // from client
- if (pVnode->status != VN_STATUS_READY)
+ if (pVnode->status != TAOS_VN_STATUS_READY)
return TSDB_CODE_NOT_ACTIVE_VNODE;
// if (pVnode->replica > 1 && pVnode->role != TAOS_SYNC_ROLE_MASTER)
@@ -77,11 +78,8 @@ int32_t vnodeProcessWrite(void *param, int qtype, SWalHead *pHead, void *item) {
code = (*vnodeProcessWriteMsgFp[pHead->msgType])(pVnode, pHead->cont, item);
if (code < 0) return code;
-/* forward
- if (pVnode->replica > 1 && pVnode->role == TAOS_SYNC_ROLE_MASTER) {
+ if (pVnode->syncCfg.replica > 1)
code = syncForwardToPeer(pVnode->sync, pHead, item);
- }
-*/
return code;
}
@@ -251,8 +249,9 @@ static int32_t vnodeProcessDropStableMsg(SVnodeObj *pVnode, void *pCont, SRspRet
return code;
}
-int vnodeWriteToQueue(void *param, SWalHead *pHead, int type) {
+int vnodeWriteToQueue(void *param, void *data, int type) {
SVnodeObj *pVnode = param;
+ SWalHead *pHead = data;
int size = sizeof(SWalHead) + pHead->len;
SWalHead *pWal = (SWalHead *)taosAllocateQitem(size);
diff --git a/src/vnode/wal/src/walMain.c b/src/vnode/wal/src/walMain.c
index 504e370279..1738967098 100644
--- a/src/vnode/wal/src/walMain.c
+++ b/src/vnode/wal/src/walMain.c
@@ -49,18 +49,18 @@ int wDebugFlag = 135;
static uint32_t walSignature = 0xFAFBFDFE;
static int walHandleExistingFiles(char *path);
-static int walRestoreWalFile(char *name, void *pVnode, int (*writeFp)(void *, SWalHead *, int));
+static int walRestoreWalFile(char *name, void *pVnode, int (*writeFp)(void *, void *, int));
static int walRemoveWalFiles(char *path);
-void *walOpen(char *path, int max, int level) {
+void *walOpen(char *path, SWalCfg *pCfg) {
SWal *pWal = calloc(sizeof(SWal), 1);
if (pWal == NULL) return NULL;
pWal->fd = -1;
- pWal->max = max;
+ pWal->max = pCfg->wals;
pWal->id = 0;
pWal->num = 0;
- pWal->level = level;
+ pWal->level = pCfg->commitLog;
strcpy(pWal->path, path);
pthread_mutex_init(&pWal->mutex, NULL);
@@ -170,7 +170,7 @@ void walFsync(void *handle) {
fsync(pWal->fd);
}
-int walRestore(void *handle, void *pVnode, int (*writeFp)(void *, SWalHead *, int)) {
+int walRestore(void *handle, void *pVnode, int (*writeFp)(void *, void *, int)) {
SWal *pWal = (SWal *)handle;
int code = 0;
struct dirent *ent;
@@ -247,7 +247,7 @@ int walGetWalFile(void *handle, char *name, uint32_t *index) {
return code;
}
-static int walRestoreWalFile(char *name, void *pVnode, int (*writeFp)(void *, SWalHead *, int)) {
+static int walRestoreWalFile(char *name, void *pVnode, int (*writeFp)(void *, void *, int)) {
int code = 0;
char *buffer = malloc(1024000); // size for one record
diff --git a/src/vnode/wal/test/waltest.c b/src/vnode/wal/test/waltest.c
index 37d1d8e84c..8e10bc11e5 100644
--- a/src/vnode/wal/test/waltest.c
+++ b/src/vnode/wal/test/waltest.c
@@ -21,8 +21,10 @@
int64_t ver = 0;
void *pWal = NULL;
-int writeToQueue(void *pVnode, SWalHead *pHead, int type) {
+int writeToQueue(void *pVnode, void *data, int type) {
// do nothing
+ SWalHead *pHead = data;
+
if (pHead->version > ver)
ver = pHead->version;
@@ -74,7 +76,11 @@ int main(int argc, char *argv[]) {
taosInitLog("wal.log", 100000, 10);
- pWal = walOpen(path, max, level);
+ SWalCfg walCfg;
+ walCfg.commitLog = level;
+ walCfg.wals = max;
+
+ pWal = walOpen(path, &walCfg);
if (pWal == NULL) {
printf("failed to open wal\n");
exit(-1);
diff --git a/tests/script/general/db/basic4.sim b/tests/script/general/db/basic4.sim
index f620112cfb..deac9d47b4 100644
--- a/tests/script/general/db/basic4.sim
+++ b/tests/script/general/db/basic4.sim
@@ -36,7 +36,7 @@ sql show d1.vgroups
if $rows != 1 then
return -1
endi
-if $data00 != 1 then
+if $data00 != 2 then
return -1
endi
if $data01 != 4 then
@@ -75,7 +75,7 @@ sql show d1.vgroups
if $rows != 1 then
return -1
endi
-if $data00 != 1 then
+if $data00 != 2 then
return -1
endi
if $data01 != 3 then
diff --git a/tests/script/general/db/basic5.sim b/tests/script/general/db/basic5.sim
index ec619389bd..ebb7d3c967 100644
--- a/tests/script/general/db/basic5.sim
+++ b/tests/script/general/db/basic5.sim
@@ -36,7 +36,7 @@ sql show d1.vgroups
if $rows != 1 then
return -1
endi
-if $data00 != 1 then
+if $data00 != 2 then
return -1
endi
if $data01 != 4 then
diff --git a/tests/script/general/table/basic2.sim b/tests/script/general/table/basic2.sim
index 2afd6baf36..1f6d889429 100644
--- a/tests/script/general/table/basic2.sim
+++ b/tests/script/general/table/basic2.sim
@@ -29,7 +29,7 @@ if $data03 != 1 then
endi
sql show d1.vgroups
-if $data00 != 1 then
+if $data00 != 2 then
return -1
endi