Merge pull request #5511 from taosdata/feature/linux

change queued msg from 10k to 100k
This commit is contained in:
Shengliang Guan 2021-03-19 18:00:37 +08:00 committed by GitHub
commit c5ff2275e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@
#include "mnodeSdb.h"
#define SDB_TABLE_LEN 12
#define MAX_QUEUED_MSG_NUM 10000
#define MAX_QUEUED_MSG_NUM 100000
typedef enum {
SDB_ACTION_INSERT = 0,

View File

@ -24,7 +24,7 @@
#include "dnode.h"
#include "vnodeStatus.h"
#define MAX_QUEUED_MSG_NUM 10000
#define MAX_QUEUED_MSG_NUM 100000
extern void * tsDnodeTmr;
static int32_t (*vnodeProcessWriteMsgFp[TSDB_MSG_TYPE_MAX])(SVnodeObj *, void *pCont, SRspRet *);