Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
04ea2358
T
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
04ea2358
编写于
11月 26, 2021
作者:
S
Shengliang Guan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
refact dnode
上级
19865f3b
变更
9
展开全部
隐藏空白更改
内联
并排
Showing
9 changed file
with
215 addition
and
249 deletion
+215
-249
include/common/tglobal.h
include/common/tglobal.h
+0
-4
include/dnode/mnode/mnode.h
include/dnode/mnode/mnode.h
+1
-1
include/dnode/vnode/vnode.h
include/dnode/vnode/vnode.h
+1
-1
include/util/tdef.h
include/util/tdef.h
+0
-6
source/common/src/tglobal.c
source/common/src/tglobal.c
+0
-9
source/dnode/mgmt/impl/inc/dndDnode.h
source/dnode/mgmt/impl/inc/dndDnode.h
+1
-1
source/dnode/mgmt/impl/inc/dndInt.h
source/dnode/mgmt/impl/inc/dndInt.h
+13
-13
source/dnode/mgmt/impl/src/dndDnode.c
source/dnode/mgmt/impl/src/dndDnode.c
+198
-213
source/dnode/mnode/impl/src/mnode.c
source/dnode/mnode/impl/src/mnode.c
+1
-1
未找到文件。
include/common/tglobal.h
浏览文件 @
04ea2358
...
...
@@ -28,10 +28,6 @@ extern char tsSecond[];
extern
char
tsLocalFqdn
[];
extern
char
tsLocalEp
[];
extern
uint16_t
tsServerPort
;
extern
uint16_t
tsDnodeShellPort
;
extern
uint16_t
tsDnodeDnodePort
;
extern
uint16_t
tsSyncPort
;
extern
uint16_t
tsArbitratorPort
;
extern
int32_t
tsStatusInterval
;
extern
int32_t
tsNumOfMnodes
;
extern
int8_t
tsEnableVnodeBak
;
...
...
include/dnode/mnode/mnode.h
浏览文件 @
04ea2358
...
...
@@ -26,7 +26,7 @@ typedef struct SMnode SMnode;
typedef
struct
SMnodeMsg
SMnodeMsg
;
typedef
void
(
*
SendMsgToDnodeFp
)(
SDnode
*
pDnd
,
struct
SEpSet
*
epSet
,
struct
SRpcMsg
*
rpcMsg
);
typedef
void
(
*
SendMsgToMnodeFp
)(
SDnode
*
pDnd
,
struct
SRpcMsg
*
rpcMsg
);
typedef
void
(
*
SendRedirectMsgFp
)(
SDnode
*
pDnd
,
struct
SRpcMsg
*
rpcMsg
,
bool
forShell
);
typedef
void
(
*
SendRedirectMsgFp
)(
SDnode
*
pDnd
,
struct
SRpcMsg
*
rpcMsg
);
typedef
int32_t
(
*
PutMsgToMnodeQFp
)(
SDnode
*
pDnd
,
SMnodeMsg
*
pMsg
);
typedef
struct
SMnodeLoad
{
...
...
include/dnode/vnode/vnode.h
浏览文件 @
04ea2358
...
...
@@ -187,7 +187,7 @@ typedef struct {
typedef
struct
SDnode
SDnode
;
typedef
void
(
*
SendMsgToDnodeFp
)(
SDnode
*
pDnd
,
struct
SEpSet
*
epSet
,
struct
SRpcMsg
*
rpcMsg
);
typedef
void
(
*
SendMsgToMnodeFp
)(
SDnode
*
pDnd
,
struct
SRpcMsg
*
rpcMsg
);
typedef
void
(
*
SendRedirectMsgFp
)(
SDnode
*
pDnd
,
struct
SRpcMsg
*
rpcMsg
,
bool
forShell
);
typedef
void
(
*
SendRedirectMsgFp
)(
SDnode
*
pDnd
,
struct
SRpcMsg
*
rpcMsg
);
typedef
int32_t
(
*
PutMsgToVnodeQFp
)(
SDnode
*
pDnd
,
int32_t
vgId
,
SVnodeMsg
*
pMsg
);
typedef
struct
{
...
...
include/util/tdef.h
浏览文件 @
04ea2358
...
...
@@ -358,12 +358,6 @@ do { \
#define TSDB_DEFAULT_STABLES_HASH_SIZE 100
#define TSDB_DEFAULT_CTABLES_HASH_SIZE 20000
#define TSDB_PORT_DNODESHELL 0
#define TSDB_PORT_DNODEDNODE 5
#define TSDB_PORT_SYNC 10
#define TSDB_PORT_HTTP 11
#define TSDB_PORT_ARBITRATOR 12
#define TSDB_MAX_WAL_SIZE (1024*1024*3)
#define TSDB_ARB_DUMMY_TIME 4765104000000 // 2121-01-01 00:00:00.000, :P
...
...
source/common/src/tglobal.c
浏览文件 @
04ea2358
...
...
@@ -33,10 +33,6 @@ char tsArbitrator[TSDB_EP_LEN] = {0};
char
tsLocalFqdn
[
TSDB_FQDN_LEN
]
=
{
0
};
char
tsLocalEp
[
TSDB_EP_LEN
]
=
{
0
};
// Local End Point, hostname:port
uint16_t
tsServerPort
=
6030
;
uint16_t
tsDnodeShellPort
=
6030
;
// udp[6035-6039] tcp[6035]
uint16_t
tsDnodeDnodePort
=
6035
;
// udp/tcp
uint16_t
tsSyncPort
=
6040
;
uint16_t
tsArbitratorPort
=
6042
;
int32_t
tsStatusInterval
=
1
;
// second
int32_t
tsNumOfMnodes
=
1
;
int8_t
tsEnableVnodeBak
=
1
;
...
...
@@ -1726,11 +1722,6 @@ int32_t taosCheckGlobalCfg() {
}
}
tsDnodeShellPort
=
tsServerPort
+
TSDB_PORT_DNODESHELL
;
// udp[6035-6039] tcp[6035]
tsDnodeDnodePort
=
tsServerPort
+
TSDB_PORT_DNODEDNODE
;
// udp/tcp
tsSyncPort
=
tsServerPort
+
TSDB_PORT_SYNC
;
tsHttpPort
=
tsServerPort
+
TSDB_PORT_HTTP
;
if
(
tsQueryBufferSize
>=
0
)
{
tsQueryBufferSizeBytes
=
tsQueryBufferSize
*
1048576UL
;
}
...
...
source/dnode/mgmt/impl/inc/dndDnode.h
浏览文件 @
04ea2358
...
...
@@ -30,7 +30,7 @@ int32_t dndGetDnodeId(SDnode *pDnd);
int64_t
dndGetClusterId
(
SDnode
*
pDnd
);
void
dndGetDnodeEp
(
SDnode
*
pDnd
,
int32_t
dnodeId
,
char
*
pEp
,
char
*
pFqdn
,
uint16_t
*
pPort
);
void
dndGetMnodeEpSet
(
SDnode
*
pDnd
,
SEpSet
*
pEpSet
);
void
dndSendRedirectMsg
(
SDnode
*
pDnd
,
SRpcMsg
*
pMsg
,
bool
forShell
);
void
dndSendRedirectMsg
(
SDnode
*
pDnd
,
SRpcMsg
*
pMsg
);
#ifdef __cplusplus
}
...
...
source/dnode/mgmt/impl/inc/dndInt.h
浏览文件 @
04ea2358
...
...
@@ -31,9 +31,10 @@ extern "C" {
#include "tthread.h"
#include "ttime.h"
#include "tworker.h"
#include "dnode.h"
#include "mnode.h"
#include "vnode.h"
#include "dnode.h"
extern
int32_t
dDebugFlag
;
...
...
@@ -54,17 +55,16 @@ typedef struct {
}
SDnodeDir
;
typedef
struct
{
int32_t
dnodeId
;
uint32_t
rebootTime
;
int32_t
dropped
;
int64_t
clusterId
;
SEpSet
shellEpSet
;
SEpSet
peerEpSet
;
char
*
file
;
SHashObj
*
dnodeHash
;
SDnodeEps
*
dnodeEps
;
pthread_t
*
threadId
;
pthread_mutex_t
mutex
;
int32_t
dnodeId
;
int32_t
dropped
;
uint32_t
rebootTime
;
int64_t
clusterId
;
SEpSet
mnodeEpSet
;
char
*
file
;
SHashObj
*
dnodeHash
;
SDnodeEps
*
dnodeEps
;
pthread_t
*
threadId
;
SRWLatch
latch
;
}
SDnodeMgmt
;
typedef
struct
{
...
...
@@ -108,7 +108,7 @@ typedef struct SDnode {
EStat
stat
;
SDnodeOpt
opt
;
SDnodeDir
dir
;
SDnodeMgmt
d
;
SDnodeMgmt
d
mgmt
;
SMnodeMgmt
m
;
SVnodesMgmt
vmgmt
;
STransMgmt
t
;
...
...
source/dnode/mgmt/impl/src/dndDnode.c
浏览文件 @
04ea2358
此差异已折叠。
点击以展开。
source/dnode/mnode/impl/src/mnode.c
浏览文件 @
04ea2358
...
...
@@ -53,7 +53,7 @@ void mnodeSendMsgToMnode(SMnode *pMnode, struct SRpcMsg *rpcMsg) {
void
mnodeSendRedirectMsg
(
SMnode
*
pMnode
,
struct
SRpcMsg
*
rpcMsg
,
bool
forShell
)
{
assert
(
pMnode
);
(
*
pMnode
->
sendRedirectMsgFp
)(
pMnode
->
pServer
,
rpcMsg
,
forShell
);
(
*
pMnode
->
sendRedirectMsgFp
)(
pMnode
->
pServer
,
rpcMsg
);
}
static
int32_t
mnodeInitTimer
()
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录