Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
慢慢CG
TDengine
提交
fbbe08ff
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看板
提交
fbbe08ff
编写于
7月 03, 2020
作者:
S
Shengliang Guan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[TD-468] add configs
上级
0beaad37
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
19 addition
and
13 deletion
+19
-13
src/common/src/tglobal.c
src/common/src/tglobal.c
+1
-1
src/dnode/src/dnodeMgmt.c
src/dnode/src/dnodeMgmt.c
+6
-4
src/inc/taosmsg.h
src/inc/taosmsg.h
+2
-0
src/mnode/src/mnodeDnode.c
src/mnode/src/mnodeDnode.c
+6
-4
src/mnode/src/mnodeTable.c
src/mnode/src/mnodeTable.c
+3
-3
src/mnode/src/mnodeVgroup.c
src/mnode/src/mnodeVgroup.c
+1
-1
未找到文件。
src/common/src/tglobal.c
浏览文件 @
fbbe08ff
...
...
@@ -600,7 +600,7 @@ static void doInitGlobalConfig() {
taosInitConfigOption
(
cfg
);
// database configs
cfg
.
option
=
"max
t
ablesPerVnode"
;
cfg
.
option
=
"max
T
ablesPerVnode"
;
cfg
.
ptr
=
&
tsMaxTablePerVnode
;
cfg
.
valType
=
TAOS_CFG_VTYPE_INT32
;
cfg
.
cfgType
=
TSDB_CFG_CTYPE_B_CONFIG
|
TSDB_CFG_CTYPE_B_SHOW
;
...
...
src/dnode/src/dnodeMgmt.c
浏览文件 @
fbbe08ff
...
...
@@ -681,10 +681,12 @@ static void dnodeSendStatusMsg(void *handle, void *tmrId) {
pStatus
->
alternativeRole
=
(
uint8_t
)
tsAlternativeRole
;
// fill cluster cfg parameters
pStatus
->
clusterCfg
.
numOfMnodes
=
tsNumOfMnodes
;
pStatus
->
clusterCfg
.
mnodeEqualVnodeNum
=
tsMnodeEqualVnodeNum
;
pStatus
->
clusterCfg
.
offlineThreshold
=
tsOfflineThreshold
;
pStatus
->
clusterCfg
.
statusInterval
=
tsStatusInterval
;
pStatus
->
clusterCfg
.
numOfMnodes
=
htonl
(
tsNumOfMnodes
);
pStatus
->
clusterCfg
.
mnodeEqualVnodeNum
=
htonl
(
tsMnodeEqualVnodeNum
);
pStatus
->
clusterCfg
.
offlineThreshold
=
htonl
(
tsOfflineThreshold
);
pStatus
->
clusterCfg
.
statusInterval
=
htonl
(
tsStatusInterval
);
pStatus
->
clusterCfg
.
maxtablesPerVnode
=
htonl
(
tsMaxTablePerVnode
);
pStatus
->
clusterCfg
.
maxVgroupsPerDb
=
htonl
(
tsMaxVgroupsPerDb
);
strcpy
(
pStatus
->
clusterCfg
.
arbitrator
,
tsArbitrator
);
strcpy
(
pStatus
->
clusterCfg
.
timezone
,
tsTimezone
);
strcpy
(
pStatus
->
clusterCfg
.
locale
,
tsLocale
);
...
...
src/inc/taosmsg.h
浏览文件 @
fbbe08ff
...
...
@@ -568,6 +568,8 @@ typedef struct {
char
timezone
[
64
];
// tsTimezone
char
locale
[
TSDB_LOCALE_LEN
];
// tsLocale
char
charset
[
TSDB_LOCALE_LEN
];
// tsCharset
int32_t
maxtablesPerVnode
;
int32_t
maxVgroupsPerDb
;
}
SClusterCfg
;
typedef
struct
{
...
...
src/mnode/src/mnodeDnode.c
浏览文件 @
fbbe08ff
...
...
@@ -302,10 +302,12 @@ static void mnodeProcessCfgDnodeMsgRsp(SRpcMsg *rpcMsg) {
}
static
bool
mnodeCheckClusterCfgPara
(
const
SClusterCfg
*
clusterCfg
)
{
if
(
clusterCfg
->
numOfMnodes
!=
tsNumOfMnodes
)
return
false
;
if
(
clusterCfg
->
mnodeEqualVnodeNum
!=
tsMnodeEqualVnodeNum
)
return
false
;
if
(
clusterCfg
->
offlineThreshold
!=
tsOfflineThreshold
)
return
false
;
if
(
clusterCfg
->
statusInterval
!=
tsStatusInterval
)
return
false
;
if
(
clusterCfg
->
numOfMnodes
!=
htonl
(
tsNumOfMnodes
))
return
false
;
if
(
clusterCfg
->
mnodeEqualVnodeNum
!=
htonl
(
tsMnodeEqualVnodeNum
))
return
false
;
if
(
clusterCfg
->
offlineThreshold
!=
htonl
(
tsOfflineThreshold
))
return
false
;
if
(
clusterCfg
->
statusInterval
!=
htonl
(
tsStatusInterval
))
return
false
;
if
(
clusterCfg
->
maxtablesPerVnode
!=
htonl
(
tsMaxTablePerVnode
))
return
false
;
if
(
clusterCfg
->
maxVgroupsPerDb
!=
htonl
(
tsMaxVgroupsPerDb
))
return
false
;
if
(
0
!=
strncasecmp
(
clusterCfg
->
arbitrator
,
tsArbitrator
,
strlen
(
tsArbitrator
)))
return
false
;
if
(
0
!=
strncasecmp
(
clusterCfg
->
timezone
,
tsTimezone
,
strlen
(
tsTimezone
)))
return
false
;
...
...
src/mnode/src/mnodeTable.c
浏览文件 @
fbbe08ff
...
...
@@ -1552,8 +1552,8 @@ static int32_t mnodeDoCreateChildTableCb(SMnodeMsg *pMsg, int32_t code) {
SChildTableObj
*
pTable
=
(
SChildTableObj
*
)
pMsg
->
pTable
;
assert
(
pTable
);
mDebug
(
"app:%p:%p, table:%s, create
table in id:%d, uid:%"
PRIu64
", result:%s"
,
pMsg
->
rpcMsg
.
ahandle
,
pMsg
,
p
Table
->
info
.
table
Id
,
pTable
->
sid
,
pTable
->
uid
,
tstrerror
(
code
));
mDebug
(
"app:%p:%p, table:%s, create
d in mnode, vgId:%d sid:%d, uid:%"
PRIu64
", result:%s"
,
pMsg
->
rpcMsg
.
ahandle
,
p
Msg
,
pTable
->
info
.
tableId
,
pTable
->
vg
Id
,
pTable
->
sid
,
pTable
->
uid
,
tstrerror
(
code
));
if
(
code
!=
TSDB_CODE_SUCCESS
)
return
code
;
...
...
@@ -1693,7 +1693,7 @@ static int32_t mnodeProcessCreateChildTableMsg(SMnodeMsg *pMsg) {
mnodeIncVgroupRef
(
pVgroup
);
}
mDebug
(
"app:%p:%p, table:%s,
create table
in vgroup, vgId:%d sid:%d"
,
pMsg
->
rpcMsg
.
ahandle
,
pMsg
,
pCreate
->
tableId
,
mDebug
(
"app:%p:%p, table:%s,
allocated
in vgroup, vgId:%d sid:%d"
,
pMsg
->
rpcMsg
.
ahandle
,
pMsg
,
pCreate
->
tableId
,
pVgroup
->
vgId
,
sid
);
return
mnodeDoCreateChildTable
(
pMsg
,
sid
);
...
...
src/mnode/src/mnodeVgroup.c
浏览文件 @
fbbe08ff
...
...
@@ -332,7 +332,7 @@ static int32_t mnodeAllocVgroupIdPool(SVgObj *pInputVgroup) {
// realloc all vgroups in db
int32_t
newIdPoolSize
;
if
(
minIdPoolSize
<
TSDB_TABLES_STEP
)
{
if
(
minIdPoolSize
*
2
<
TSDB_TABLES_STEP
)
{
newIdPoolSize
=
minIdPoolSize
*
2
;
}
else
{
newIdPoolSize
=
((
minIdPoolSize
/
TSDB_TABLES_STEP
)
+
1
)
*
TSDB_TABLES_STEP
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录