Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
慢慢CG
TDengine
提交
de76b5bd
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看板
提交
de76b5bd
编写于
4月 16, 2020
作者:
S
slguan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
change super table vgroup
上级
d7d51ad1
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
35 addition
and
27 deletion
+35
-27
src/inc/mnode.h
src/inc/mnode.h
+1
-0
src/inc/taosmsg.h
src/inc/taosmsg.h
+5
-6
src/mnode/src/mgmtTable.c
src/mnode/src/mgmtTable.c
+29
-21
未找到文件。
src/inc/mnode.h
浏览文件 @
de76b5bd
...
...
@@ -88,6 +88,7 @@ typedef struct _dnode_obj {
typedef
struct
{
int32_t
dnodeId
;
uint16_t
port
;
uint32_t
privateIp
;
uint32_t
publicIp
;
}
SVnodeGid
;
...
...
src/inc/taosmsg.h
浏览文件 @
de76b5bd
...
...
@@ -634,14 +634,13 @@ typedef struct SCMSTableVgroupMsg {
}
SCMSTableVgroupMsg
;
typedef
struct
{
SIpAddr
ipAddr
;
int32_t
numOfVgroups
;
int32_t
vgId
[];
}
STableDnodeVgroupInfo
;
int32_t
vgId
;
SIpAddr
ipAddr
[
TSDB_REPLICA_MAX_NUM
];
}
SCMVgroupInfo
;
typedef
struct
{
int32_t
numOf
Dnode
s
;
S
TableDnodeVgroupInfo
dnodeV
groups
[];
int32_t
numOf
Vgroup
s
;
S
CMVgroupInfo
v
groups
[];
}
SCMSTableVgroupRspMsg
;
typedef
struct
{
...
...
src/mnode/src/mgmtTable.c
浏览文件 @
de76b5bd
...
...
@@ -1166,40 +1166,48 @@ static void mgmtGetSuperTableMeta(SQueuedMsg *pMsg) {
static
void
mgmtProcessSuperTableVgroupMsg
(
SQueuedMsg
*
pMsg
)
{
SCMSTableVgroupMsg
*
pInfo
=
pMsg
->
pCont
;
pMsg
->
pTable
=
mgmtGetSuperTable
(
pInfo
->
tableId
);
SSuperTableObj
*
pTable
=
mgmtGetSuperTable
(
pInfo
->
tableId
);
pMsg
->
pTable
=
pTable
;
if
(
pMsg
->
pTable
==
NULL
)
{
mgmtSendSimpleResp
(
pMsg
->
thandle
,
TSDB_CODE_INVALID_TABLE
);
return
;
}
SCMSTableVgroupRspMsg
*
pRsp
=
rpcMallocCont
(
sizeof
(
SCMSTableVgroupRspMsg
)
+
sizeof
(
uint32_t
)
*
clusterGetDnodesNum
());
int32_t
contLen
=
sizeof
(
SCMSTableVgroupRspMsg
)
+
sizeof
(
SCMVgroupInfo
)
*
pTable
->
vgLen
;
SCMSTableVgroupRspMsg
*
pRsp
=
rpcMallocCont
(
contLen
);
if
(
pRsp
==
NULL
)
{
mgmtSendSimpleResp
(
pMsg
->
thandle
,
TSDB_CODE_
INVALID_TABLE
);
mgmtSendSimpleResp
(
pMsg
->
thandle
,
TSDB_CODE_
SERV_OUT_OF_MEMORY
);
return
;
}
int32_t
numOfVgroups
=
1
;
int32_t
numOfDnodes
=
1
;
pRsp
->
numOfDnodes
=
htonl
(
numOfDnodes
);
STableDnodeVgroupInfo
*
pVgroupInfo
=
pRsp
->
dnodeVgroups
;
pVgroupInfo
->
ipAddr
.
ip
=
htonl
(
inet_addr
(
tsPrivateIp
));
pVgroupInfo
->
ipAddr
.
port
=
htons
(
0
);
// todo fix it
pVgroupInfo
->
numOfVgroups
=
htonl
(
numOfVgroups
);
// todo fix it
int32_t
*
vgIdList
=
pVgroupInfo
->
vgId
;
for
(
int32_t
i
=
0
;
i
<
numOfVgroups
;
++
i
)
{
vgIdList
[
i
]
=
htonl
(
2
);
// todo fix it
int32_t
vg
=
0
;
for
(;
vg
<
pTable
->
vgLen
;
++
vg
)
{
int32_t
vgId
=
pTable
->
vgList
[
vg
];
if
(
vgId
==
0
)
break
;
SVgObj
*
pVgroup
=
mgmtGetVgroup
(
vgId
);
if
(
pVgroup
==
NULL
)
break
;
pRsp
->
vgroups
[
vg
].
vgId
=
htonl
(
vgId
);
for
(
int32_t
vn
=
0
;
vn
<
pVgroup
->
numOfVnodes
;
++
vn
)
{
SDnodeObj
*
pDnode
=
clusterGetDnode
(
pVgroup
->
vnodeGid
[
vn
].
dnodeId
);
if
(
pDnode
==
NULL
)
break
;
pRsp
->
vgroups
[
vg
].
ipAddr
[
vn
].
ip
=
htonl
(
pDnode
->
privateIp
);
pRsp
->
vgroups
[
vg
].
ipAddr
[
vn
].
port
=
htons
(
tsDnodeShellPort
);
clusterReleaseDnode
(
pDnode
);
}
mgmtReleaseVgroup
(
pVgroup
);
}
assert
(
numOfDnodes
==
1
);
// this size is valid only when numOfDnodes equals 1
int32_t
msgLen
=
sizeof
(
SCMSTableVgroupRspMsg
)
+
sizeof
(
STableDnodeVgroupInfo
)
+
numOfVgroups
*
sizeof
(
int32_t
);
pRsp
->
numOfVgroups
=
htonl
(
vg
);
SRpcMsg
rpcRsp
=
{
0
};
rpcRsp
.
handle
=
pMsg
->
thandle
;
rpcRsp
.
pCont
=
pRsp
;
rpcRsp
.
contLen
=
msgLen
;
rpcRsp
.
contLen
=
sizeof
(
SCMSTableVgroupRspMsg
)
+
sizeof
(
SCMVgroupInfo
)
*
vg
;
rpcSendResponse
(
&
rpcRsp
);
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录