Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
06dbe69f
TDengine
项目概览
taosdata
/
TDengine
1 年多 前同步成功
通知
1185
Star
22016
Fork
4786
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
06dbe69f
编写于
3月 15, 2022
作者:
S
Shengliang Guan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
rename
上级
2a5e231f
变更
16
隐藏空白更改
内联
并排
Showing
16 changed file
with
20 addition
and
24 deletion
+20
-24
source/dnode/mgmt/bnode/inc/bmMsg.h
source/dnode/mgmt/bnode/inc/bmMsg.h
+0
-0
source/dnode/mgmt/bnode/src/bmInt.c
source/dnode/mgmt/bnode/src/bmInt.c
+1
-1
source/dnode/mgmt/bnode/src/bmMsg.c
source/dnode/mgmt/bnode/src/bmMsg.c
+1
-1
source/dnode/mgmt/mnode/inc/mmInt.h
source/dnode/mgmt/mnode/inc/mmInt.h
+7
-11
source/dnode/mgmt/mnode/inc/mmMsg.h
source/dnode/mgmt/mnode/inc/mmMsg.h
+3
-3
source/dnode/mgmt/mnode/src/mmInt.c
source/dnode/mgmt/mnode/src/mmInt.c
+1
-1
source/dnode/mgmt/mnode/src/mmMsg.c
source/dnode/mgmt/mnode/src/mmMsg.c
+1
-1
source/dnode/mgmt/qnode/inc/qmMsg.h
source/dnode/mgmt/qnode/inc/qmMsg.h
+0
-0
source/dnode/mgmt/qnode/src/qmInt.c
source/dnode/mgmt/qnode/src/qmInt.c
+1
-1
source/dnode/mgmt/qnode/src/qmMsg.c
source/dnode/mgmt/qnode/src/qmMsg.c
+1
-1
source/dnode/mgmt/snode/inc/smMsg.h
source/dnode/mgmt/snode/inc/smMsg.h
+0
-0
source/dnode/mgmt/snode/src/smInt.c
source/dnode/mgmt/snode/src/smInt.c
+1
-1
source/dnode/mgmt/snode/src/smMsg.c
source/dnode/mgmt/snode/src/smMsg.c
+1
-1
source/dnode/mgmt/vnode/inc/vmMsg.h
source/dnode/mgmt/vnode/inc/vmMsg.h
+0
-0
source/dnode/mgmt/vnode/src/vmInt.c
source/dnode/mgmt/vnode/src/vmInt.c
+1
-1
source/dnode/mgmt/vnode/src/vmMsg.c
source/dnode/mgmt/vnode/src/vmMsg.c
+1
-1
未找到文件。
source/dnode/mgmt/bnode/inc/bm
Handle
.h
→
source/dnode/mgmt/bnode/inc/bm
Msg
.h
浏览文件 @
06dbe69f
文件已移动
source/dnode/mgmt/bnode/src/bmInt.c
浏览文件 @
06dbe69f
...
...
@@ -15,7 +15,7 @@
#define _DEFAULT_SOURCE
#include "bmInt.h"
#include "bm
Handle
.h"
#include "bm
Msg
.h"
bool
bmRequireNode
(
SMgmtWrapper
*
pWrapper
)
{
return
false
;
}
...
...
source/dnode/mgmt/bnode/src/bm
Handle
.c
→
source/dnode/mgmt/bnode/src/bm
Msg
.c
浏览文件 @
06dbe69f
...
...
@@ -14,7 +14,7 @@
*/
#define _DEFAULT_SOURCE
#include "bm
Handle
.h"
#include "bm
Msg
.h"
#include "bmWorker.h"
int32_t
bmProcessCreateReq
(
SDnode
*
pDnode
,
SRpcMsg
*
pRpcMsg
)
{
return
0
;}
...
...
source/dnode/mgmt/mnode/inc/mmInt.h
浏览文件 @
06dbe69f
...
...
@@ -22,30 +22,26 @@
extern
"C"
{
#endif
typedef
struct
SMnodeMgmt
{
int32_t
refCount
;
int8_t
deployed
;
int8_t
dropped
;
int8_t
replica
;
int8_t
selfIndex
;
SReplica
replicas
[
TSDB_MAX_REPLICA
];
SMnode
*
pMnode
;
SProcObj
*
pProcess
;
bool
singleProc
;
SRWLatch
latch
;
SDnodeWorker
readWorker
;
SDnodeWorker
writeWorker
;
SDnodeWorker
syncWorker
;
int8_t
replica
;
int8_t
selfIndex
;
SReplica
replicas
[
TSDB_MAX_REPLICA
];
//
SProcObj
*
pProcess
;
bool
singleProc
;
}
SMnodeMgmt
;
// interface
// mmInt.h
void
mmGetMgmtFp
(
SMgmtWrapper
*
pMgmt
);
// mmMgmt.h
int32_t
mmInit
(
SDnode
*
pDnode
);
void
mmCleanup
(
SDnode
*
pDnode
);
...
...
source/dnode/mgmt/mnode/inc/mm
Handle
.h
→
source/dnode/mgmt/mnode/inc/mm
Msg
.h
浏览文件 @
06dbe69f
...
...
@@ -13,8 +13,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _TD_DND_MNODE_
HANDLE
_H_
#define _TD_DND_MNODE_
HANDLE
_H_
#ifndef _TD_DND_MNODE_
MSG
_H_
#define _TD_DND_MNODE_
MSG
_H_
#include "mmInt.h"
...
...
@@ -36,4 +36,4 @@ int32_t mmGetMonitorInfo(SDnode *pDnode, SMonClusterInfo *pClusterInfo, SMonVgro
}
#endif
#endif
/*_TD_DND_MNODE_HANDLE_H_*/
\ No newline at end of file
#endif
/*_TD_DND_MNODE_MSG_H_*/
\ No newline at end of file
source/dnode/mgmt/mnode/src/mmInt.c
浏览文件 @
06dbe69f
...
...
@@ -15,7 +15,7 @@
#define _DEFAULT_SOURCE
#include "mmInt.h"
#include "mm
Handle
.h"
#include "mm
Msg
.h"
bool
mmRequireNode
(
SMgmtWrapper
*
pWrapper
)
{
return
false
;
}
...
...
source/dnode/mgmt/mnode/src/mm
Handle
.c
→
source/dnode/mgmt/mnode/src/mm
Msg
.c
浏览文件 @
06dbe69f
...
...
@@ -14,7 +14,7 @@
*/
#define _DEFAULT_SOURCE
#include "mm
Handle
.h"
#include "mm
Msg
.h"
#include "mmWorker.h"
#if 0
...
...
source/dnode/mgmt/qnode/inc/qm
Handle
.h
→
source/dnode/mgmt/qnode/inc/qm
Msg
.h
浏览文件 @
06dbe69f
文件已移动
source/dnode/mgmt/qnode/src/qmInt.c
浏览文件 @
06dbe69f
...
...
@@ -15,7 +15,7 @@
#define _DEFAULT_SOURCE
#include "qmInt.h"
#include "qm
Handle
.h"
#include "qm
Msg
.h"
bool
qmRequireNode
(
SMgmtWrapper
*
pWrapper
)
{
return
false
;
}
...
...
source/dnode/mgmt/qnode/src/qm
Handle
.c
→
source/dnode/mgmt/qnode/src/qm
Msg
.c
浏览文件 @
06dbe69f
...
...
@@ -14,7 +14,7 @@
*/
#define _DEFAULT_SOURCE
#include "qm
Handle
.h"
#include "qm
Msg
.h"
#include "qmWorker.h"
int32_t
qmProcessCreateReq
(
SDnode
*
pDnode
,
SRpcMsg
*
pRpcMsg
)
{
return
0
;}
...
...
source/dnode/mgmt/snode/inc/sm
Handle
.h
→
source/dnode/mgmt/snode/inc/sm
Msg
.h
浏览文件 @
06dbe69f
文件已移动
source/dnode/mgmt/snode/src/smInt.c
浏览文件 @
06dbe69f
...
...
@@ -15,7 +15,7 @@
#define _DEFAULT_SOURCE
#include "smInt.h"
#include "sm
Handle
.h"
#include "sm
Msg
.h"
bool
smRequireNode
(
SMgmtWrapper
*
pWrapper
)
{
return
false
;
}
...
...
source/dnode/mgmt/snode/src/sm
Handle
.c
→
source/dnode/mgmt/snode/src/sm
Msg
.c
浏览文件 @
06dbe69f
...
...
@@ -14,7 +14,7 @@
*/
#define _DEFAULT_SOURCE
#include "sm
Handle
.h"
#include "sm
Msg
.h"
#include "smWorker.h"
int32_t
smProcessCreateReq
(
SDnode
*
pDnode
,
SRpcMsg
*
pRpcMsg
)
{
return
0
;}
...
...
source/dnode/mgmt/vnode/inc/vm
Handle
.h
→
source/dnode/mgmt/vnode/inc/vm
Msg
.h
浏览文件 @
06dbe69f
文件已移动
source/dnode/mgmt/vnode/src/vmInt.c
浏览文件 @
06dbe69f
...
...
@@ -15,7 +15,7 @@
#define _DEFAULT_SOURCE
#include "vmInt.h"
#include "vm
Handle
.h"
#include "vm
Msg
.h"
#include "vmMgmt.h"
static
int32_t
vmInit
(
SMgmtWrapper
*
pWrapper
)
{
...
...
source/dnode/mgmt/vnode/src/vm
Handle
.c
→
source/dnode/mgmt/vnode/src/vm
Msg
.c
浏览文件 @
06dbe69f
...
...
@@ -14,7 +14,7 @@
*/
#define _DEFAULT_SOURCE
#include "vm
Handle
.h"
#include "vm
Msg
.h"
#include "vmWorker.h"
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录