Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
慢慢CG
TDengine
提交
ffdc93d1
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看板
提交
ffdc93d1
编写于
2月 29, 2020
作者:
陶建辉(Jeff)
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
put tsRpcMaxUdpSize as an configurable parameter
上级
7d5b51ab
变更
5
显示空白变更内容
内联
并排
Showing
5 changed file
with
2 addition
and
41 deletion
+2
-41
src/inc/trpc.h
src/inc/trpc.h
+0
-1
src/rpc/inc/tsched.h
src/rpc/inc/tsched.h
+0
-39
src/rpc/src/rpcMain.c
src/rpc/src/rpcMain.c
+0
-1
src/util/inc/tglobalcfg.h
src/util/inc/tglobalcfg.h
+1
-0
src/util/src/tglobalcfg.c
src/util/src/tglobalcfg.c
+1
-0
未找到文件。
src/inc/trpc.h
浏览文件 @
ffdc93d1
...
@@ -27,7 +27,6 @@ extern "C" {
...
@@ -27,7 +27,6 @@ extern "C" {
#define TAOS_CONN_CLIENT 1
#define TAOS_CONN_CLIENT 1
extern
int
tsRpcHeadSize
;
extern
int
tsRpcHeadSize
;
extern
int
tsRpcMaxUdpSize
;
typedef
struct
{
typedef
struct
{
int8_t
inUse
;
int8_t
inUse
;
...
...
src/rpc/inc/tsched.h
已删除
100644 → 0
浏览文件 @
7d5b51ab
/*
* Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
*
* This program is free software: you can use, redistribute, and/or modify
* it under the terms of the GNU Affero General Public License, version 3
* or later ("AGPL"), as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef TDENGINE_TSCHED_H
#define TDENGINE_TSCHED_H
#ifdef __cplusplus
extern
"C"
{
#endif
typedef
struct
_sched_msg
{
void
*
msg
;
int
msgLen
;
int8_t
type
;
int32_t
code
void
handle
;
}
SRpcMsg
;
void
*
rpcInitMsgQueue
(
int
queueSize
,
void
(
*
fp
)(
int
num
,
SRpcQueue
*
),
const
char
*
label
);
int
rpcPutIntoMsgQueue
(
void
*
qhandle
,
SRpcMsg
*
pMsg
);
void
rpcCleanUpMsgQueue
(
void
*
param
);
#ifdef __cplusplus
}
#endif
#endif // TDENGINE_TSCHED_H
src/rpc/src/rpcMain.c
浏览文件 @
ffdc93d1
...
@@ -122,7 +122,6 @@ typedef struct _RpcConn {
...
@@ -122,7 +122,6 @@ typedef struct _RpcConn {
}
SRpcConn
;
}
SRpcConn
;
int
tsRpcProgressTime
=
10
;
// milliseocnds
int
tsRpcProgressTime
=
10
;
// milliseocnds
int
tsRpcMaxUdpSize
=
15000
;
// bytes;
// not configurable
// not configurable
int
tsRpcMaxRetry
;
int
tsRpcMaxRetry
;
...
...
src/util/inc/tglobalcfg.h
浏览文件 @
ffdc93d1
...
@@ -178,6 +178,7 @@ extern uint32_t taosMaxTmrCtrl;
...
@@ -178,6 +178,7 @@ extern uint32_t taosMaxTmrCtrl;
extern
int
tsRpcTimer
;
extern
int
tsRpcTimer
;
extern
int
tsRpcMaxTime
;
extern
int
tsRpcMaxTime
;
extern
int
tsRpcMaxUdpSize
;
extern
int
tsUdpDelay
;
extern
int
tsUdpDelay
;
extern
char
version
[];
extern
char
version
[];
extern
char
compatible_version
[];
extern
char
compatible_version
[];
...
...
src/util/src/tglobalcfg.c
浏览文件 @
ffdc93d1
...
@@ -199,6 +199,7 @@ int tsIsCluster = 0;
...
@@ -199,6 +199,7 @@ int tsIsCluster = 0;
int
tsRpcTimer
=
300
;
int
tsRpcTimer
=
300
;
int
tsRpcMaxTime
=
600
;
// seconds;
int
tsRpcMaxTime
=
600
;
// seconds;
int
tsRpcMaxUdpSize
=
15000
;
// bytes
char
tsMonitorDbName
[
TSDB_DB_NAME_LEN
]
=
"log"
;
char
tsMonitorDbName
[
TSDB_DB_NAME_LEN
]
=
"log"
;
int
tsMonitorInterval
=
30
;
// seconds
int
tsMonitorInterval
=
30
;
// seconds
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录