提交 ffdc93d1 编写于 作者: 陶建辉(Jeff)'s avatar 陶建辉(Jeff)

put tsRpcMaxUdpSize as an configurable parameter

上级 7d5b51ab
......@@ -27,7 +27,6 @@ extern "C" {
#define TAOS_CONN_CLIENT 1
extern int tsRpcHeadSize;
extern int tsRpcMaxUdpSize;
typedef struct {
int8_t inUse;
......
/*
* 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
......@@ -122,7 +122,6 @@ typedef struct _RpcConn {
} SRpcConn;
int tsRpcProgressTime = 10; // milliseocnds
int tsRpcMaxUdpSize = 15000; // bytes;
// not configurable
int tsRpcMaxRetry;
......
......@@ -178,6 +178,7 @@ extern uint32_t taosMaxTmrCtrl;
extern int tsRpcTimer;
extern int tsRpcMaxTime;
extern int tsRpcMaxUdpSize;
extern int tsUdpDelay;
extern char version[];
extern char compatible_version[];
......
......@@ -199,6 +199,7 @@ int tsIsCluster = 0;
int tsRpcTimer = 300;
int tsRpcMaxTime = 600; // seconds;
int tsRpcMaxUdpSize = 15000; // bytes
char tsMonitorDbName[TSDB_DB_NAME_LEN] = "log";
int tsMonitorInterval = 30; // seconds
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册