Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
慢慢CG
TDengine
提交
f9f0e72d
T
TDengine
项目概览
慢慢CG
/
TDengine
与 Fork 源项目一致
Fork自
taosdata / TDengine
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
TDengine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
f9f0e72d
编写于
2月 12, 2020
作者:
S
slguan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
vnodePeer.h
上级
70462035
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
66 addition
and
4 deletion
+66
-4
src/inc/taosmsg.h
src/inc/taosmsg.h
+7
-2
src/mnode/inc/mgmtStable.h
src/mnode/inc/mgmtStable.h
+1
-1
src/mnode/src/mgmtStable.c
src/mnode/src/mgmtStable.c
+1
-0
src/mnode/src/mgmtTable.c
src/mnode/src/mgmtTable.c
+1
-1
src/vnode/common/inc/vnodePeer.h
src/vnode/common/inc/vnodePeer.h
+56
-0
src/vnode/common/src/vnodePeer.c
src/vnode/common/src/vnodePeer.c
+0
-0
未找到文件。
src/inc/taosmsg.h
浏览文件 @
f9f0e72d
...
...
@@ -684,10 +684,15 @@ typedef struct {
}
SSecIe
;
typedef
struct
{
uint32_t
ip
;
uint32_t
vnode
;
int32_t
dnode
;
//the ID of dnode
int32_t
vnode
;
//the index of vnode
}
SVPeerDesc
;
typedef
struct
{
int32_t
numOfVPeers
;
SVPeerDesc
vpeerDesc
[];
}
SVpeerDescArray
;
typedef
struct
{
int32_t
vnode
;
SVnodeCfg
cfg
;
...
...
src/mnode/inc/mgmtStable.h
浏览文件 @
f9f0e72d
...
...
@@ -25,7 +25,7 @@ extern "C" {
#include <stdint.h>
#include "mnode.h"
int32_t
mgmtInitSTable
();
#ifdef __cplusplus
...
...
src/mnode/src/mgmtStable.c
浏览文件 @
f9f0e72d
...
...
@@ -34,3 +34,4 @@
#include "tsqlfunction.h"
#include "ttime.h"
#include "tstatus.h"
src/mnode/src/mgmtTable.c
浏览文件 @
f9f0e72d
...
...
@@ -97,7 +97,7 @@ int32_t mgmtMeterDropColumnByName(STabObj *pTable, const char *name);
static
int
dropMeterImp
(
SDbObj
*
pDb
,
STabObj
*
pTable
,
SAcctObj
*
pAcct
);
static
void
dropAllMetersOfMetric
(
SDbObj
*
pDb
,
STabObj
*
pMetric
,
SAcctObj
*
pAcct
);
void
mgmtMeterActionInit
()
{
static
void
mgmtMeterActionInit
()
{
mgmtMeterActionFp
[
SDB_TYPE_INSERT
]
=
mgmtMeterActionInsert
;
mgmtMeterActionFp
[
SDB_TYPE_DELETE
]
=
mgmtMeterActionDelete
;
mgmtMeterActionFp
[
SDB_TYPE_UPDATE
]
=
mgmtMeterActionUpdate
;
...
...
src/vnode/
detail
/inc/vnodePeer.h
→
src/vnode/
common
/inc/vnodePeer.h
浏览文件 @
f9f0e72d
...
...
@@ -13,93 +13,41 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef TDENGINE_VNODEPEER_H
#ifndef TDENGINE_VNODE
_
PEER_H
#define TDENGINE_VNODEPEER_H
#include "os.h"
#ifdef __cplusplus
extern
"C"
{
#endif
#define TSDB_VMSG_SYNC_DATA 1
#define TSDB_VMSG_FORWARD 2
#define TSDB_VMSG_SYNC_REQ 3
#define TSDB_VMSG_SYNC_RSP 4
#define TSDB_VMSG_SYNC_MUST 5
#define TSDB_VMSG_STATUS 6
#pragma pack(push, 1)
typedef
struct
{
char
type
;
char
version
;
short
sourceVid
;
short
destVid
;
}
SFirstPkt
;
typedef
struct
{
uint64_t
lastCreate
;
uint64_t
lastRemove
;
uint32_t
fileId
;
uint64_t
fmagic
[];
}
SSyncMsg
;
#include <stdint.h>
#include <stdbool.h>
#include "tsdb.h"
typedef
struct
{
char
status
;
uint64_t
version
;
}
SPeerState
;
typedef
struct
{
char
status
:
6
;
char
ack
:
2
;
char
commitInProcess
;
int32_t
fileId
;
// ID for corrupted file, 0 means no corrupted file
uint64_t
version
;
SPeerState
peerStates
[];
}
SPeerStatus
;
#pragma pack(pop)
/*
* Initialize the resources
*/
int32_t
vnodeInitPeer
(
int
numOfThreads
);
typedef
struct
_thread_obj
{
pthread_t
thread
;
int
threadId
;
int
pollFd
;
int
numOfFds
;
}
SThreadObj
;
/*
* Free the resources
*/
void
vnodeCleanUpPeers
();
typedef
struct
{
int
numOfThreads
;
SThreadObj
**
pThread
;
pthread_t
thread
;
int
threadId
;
}
SThreadPool
;
/*
* Start a vnode synchronization process
*/
int32_t
vnodeOpenPeer
(
int32_t
vnode
);
typedef
struct
_vnodePeer
{
void
*
signature
;
int
ownId
;
// own vnode ID
uint32_t
ip
;
char
ipstr
[
20
];
// ip string
int
vid
;
int
status
;
int
syncStatus
;
int32_t
fileId
;
// 0 means no corrupted file
uint64_t
version
;
int
commitInProcess
;
int
syncFd
;
int
peerFd
;
// forward FD
void
*
hbTimer
;
void
*
syncTimer
;
SThreadObj
*
pThread
;
}
SVnodePeer
;
/*
* Update the peerinfo of vnode
*/
int32_t
vnodeConfigPeer
(
SVpeerDescArray
msg
);
typedef
struct
{
SVnodePeer
*
pVPeer
;
uint64_t
lastCreate
;
uint64_t
lastRemove
;
uint32_t
fileId
;
uint64_t
fmagic
[];
}
SSyncCmd
;
/*
* Close a vnode synchronization process
*/
void
vnodeCleanUpPeer
(
int32_t
vnode
);
#ifdef __cplusplus
}
...
...
src/vnode/
detail/src/vnodePeer.spec
.c
→
src/vnode/
common/src/vnodePeer
.c
浏览文件 @
f9f0e72d
文件已移动
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录