未验证 提交 a00df119 编写于 作者: S Shengliang Guan 提交者: GitHub

Merge pull request #19100 from taosdata/fix/TS-2319-2.6

fix(mnode): change tsMaxTmrCtrlto 20480
...@@ -729,7 +729,7 @@ static void doInitGlobalConfig(void) { ...@@ -729,7 +729,7 @@ static void doInitGlobalConfig(void) {
cfg.valType = TAOS_CFG_VTYPE_INT32; cfg.valType = TAOS_CFG_VTYPE_INT32;
cfg.cfgType = TSDB_CFG_CTYPE_B_CONFIG | TSDB_CFG_CTYPE_B_SHOW; cfg.cfgType = TSDB_CFG_CTYPE_B_CONFIG | TSDB_CFG_CTYPE_B_SHOW;
cfg.minValue = 8; cfg.minValue = 8;
cfg.maxValue = 2048; cfg.maxValue = 20480;
cfg.ptrLength = 0; cfg.ptrLength = 0;
cfg.unitType = TAOS_CFG_UTYPE_NONE; cfg.unitType = TAOS_CFG_UTYPE_NONE;
taosInitConfigOption(cfg); taosInitConfigOption(cfg);
......
...@@ -84,7 +84,7 @@ typedef struct time_wheel_t { ...@@ -84,7 +84,7 @@ typedef struct time_wheel_t {
} time_wheel_t; } time_wheel_t;
int32_t tmrDebugFlag = 131; int32_t tmrDebugFlag = 131;
uint32_t tsMaxTmrCtrl = 512; uint32_t tsMaxTmrCtrl = 5120;
static pthread_once_t tmrModuleInit = PTHREAD_ONCE_INIT; static pthread_once_t tmrModuleInit = PTHREAD_ONCE_INIT;
static pthread_mutex_t tmrCtrlMutex; static pthread_mutex_t tmrCtrlMutex;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册