Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
taosdata
TDengine
提交
955b89f3
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看板
提交
955b89f3
编写于
2月 24, 2022
作者:
S
Shengliang Guan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
rpc config
上级
e321edbe
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
5 addition
and
24 deletion
+5
-24
include/libs/transport/trpc.h
include/libs/transport/trpc.h
+1
-7
source/client/src/clientEnv.c
source/client/src/clientEnv.c
+1
-5
source/dnode/mgmt/impl/src/dndEnv.c
source/dnode/mgmt/impl/src/dndEnv.c
+1
-2
source/libs/transport/src/rpcMain.c
source/libs/transport/src/rpcMain.c
+1
-9
source/libs/transport/src/trans.c
source/libs/transport/src/trans.c
+1
-1
未找到文件。
include/libs/transport/trpc.h
浏览文件 @
955b89f3
...
...
@@ -84,13 +84,7 @@ typedef struct SRpcInit {
void
*
parent
;
}
SRpcInit
;
typedef
struct
{
int32_t
rpcTimer
;
int32_t
rpcMaxTime
;
int32_t
sver
;
}
SRpcCfg
;
int32_t
rpcInit
(
SRpcCfg
*
pCfg
);
int32_t
rpcInit
();
void
rpcCleanup
();
void
*
rpcOpen
(
const
SRpcInit
*
pRpc
);
void
rpcClose
(
void
*
);
...
...
source/client/src/clientEnv.c
浏览文件 @
955b89f3
...
...
@@ -225,11 +225,7 @@ void taos_init_imp(void) {
initMsgHandleFp
();
initQueryModuleMsgHandle
();
SRpcCfg
rpcCfg
=
{
0
};
rpcCfg
.
rpcTimer
=
cfgGetItem
(
tscCfg
,
"rpcTimer"
)
->
i32
;
rpcCfg
.
rpcMaxTime
=
cfgGetItem
(
tscCfg
,
"rpcMaxTime"
)
->
i32
;
rpcCfg
.
sver
=
30000000
;
rpcInit
(
&
rpcCfg
);
rpcInit
();
SCatalogCfg
cfg
=
{.
maxDBCacheNum
=
100
,
.
maxTblCacheNum
=
100
};
catalogInit
(
&
cfg
);
...
...
source/dnode/mgmt/impl/src/dndEnv.c
浏览文件 @
955b89f3
...
...
@@ -270,8 +270,7 @@ int32_t dndInit(const SDnodeEnvCfg *pCfg) {
taosBlockSIGPIPE
();
taosResolveCRC
();
SRpcCfg
rpcCfg
=
{.
rpcTimer
=
pCfg
->
rpcTimer
,
.
rpcMaxTime
=
pCfg
->
rpcMaxTime
,
.
sver
=
pCfg
->
sver
};
if
(
rpcInit
(
&
rpcCfg
)
!=
0
)
{
if
(
rpcInit
()
!=
0
)
{
dError
(
"failed to init rpc since %s"
,
terrstr
());
dndCleanup
();
return
-
1
;
...
...
source/libs/transport/src/rpcMain.c
浏览文件 @
955b89f3
...
...
@@ -42,8 +42,6 @@ int tsRpcMaxRetry;
int
tsRpcHeadSize
;
int
tsRpcOverhead
;
int32_t
tsRpcForceTcp
=
1
;
// disable this, means query, show command use udp protocol as default
SHashObj
*
tsFqdnHash
;
#ifndef USE_UV
...
...
@@ -146,10 +144,6 @@ typedef struct SRpcConn {
static
int
tsRpcRefId
=
-
1
;
static
int32_t
tsRpcNum
=
0
;
int32_t
tsRpcTimer
=
300
;
int32_t
tsRpcMaxTime
=
600
;
// seconds;
uint32_t
tsVersion
=
0
;
// static pthread_once_t tsRpcInit = PTHREAD_ONCE_INIT;
// server:0 client:1 tcp:2 udp:0
...
...
@@ -229,9 +223,7 @@ static void rpcInitImp(void) {
tsFqdnHash
=
taosHashInit
(
64
,
taosGetDefaultHashFunction
(
TSDB_DATA_TYPE_BINARY
),
false
,
HASH_ENTRY_LOCK
);
}
int32_t
rpcInit
(
SRpcCfg
*
pCfg
)
{
tsRpcTimer
=
pCfg
->
rpcTimer
;
tsRpcMaxTime
=
pCfg
->
rpcMaxTime
;
int32_t
rpcInit
()
{
pthread_once
(
&
tsRpcInitOnce
,
rpcInitImp
);
return
0
;
}
...
...
source/libs/transport/src/trans.c
浏览文件 @
955b89f3
...
...
@@ -112,7 +112,7 @@ void rpcSendRedirectRsp(void* thandle, const SEpSet* pEpSet) {
int
rpcReportProgress
(
void
*
pConn
,
char
*
pCont
,
int
contLen
)
{
return
-
1
;
}
void
rpcCancelRequest
(
int64_t
rid
)
{
return
;
}
int32_t
rpcInit
(
SRpcCfg
*
pCfg
)
{
int32_t
rpcInit
()
{
// impl later
return
0
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录