TDengine/source/dnode/vnode/src/vnd/vnodeSvr.c

1695 lines
53 KiB
C
Raw Normal View History

2022-04-14 08:42:50 +00:00
/*
* 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/>.
*/
2023-02-15 09:59:54 +00:00
#include "tencode.h"
#include "tmsg.h"
2022-04-26 11:04:26 +00:00
#include "vnd.h"
2023-02-15 09:59:54 +00:00
#include "vnode.h"
#include "vnodeInt.h"
2022-04-14 08:42:50 +00:00
static int32_t vnodeProcessCreateStbReq(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp);
static int32_t vnodeProcessAlterStbReq(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp);
static int32_t vnodeProcessDropStbReq(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp);
static int32_t vnodeProcessCreateTbReq(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp);
static int32_t vnodeProcessAlterTbReq(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp);
static int32_t vnodeProcessDropTbReq(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp);
static int32_t vnodeProcessSubmitReq(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp);
static int32_t vnodeProcessCreateTSmaReq(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp);
static int32_t vnodeProcessAlterConfirmReq(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp);
static int32_t vnodeProcessAlterConfigReq(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp);
static int32_t vnodeProcessDropTtlTbReq(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp);
2022-07-11 07:16:10 +00:00
static int32_t vnodeProcessTrimReq(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp);
2022-06-28 10:01:56 +00:00
static int32_t vnodeProcessDeleteReq(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp);
static int32_t vnodeProcessBatchDeleteReq(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp);
2023-01-05 07:39:35 +00:00
static int32_t vnodeProcessCreateIndexReq(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp);
static int32_t vnodeProcessDropIndexReq(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp);
static int32_t vnodeProcessCompactVnodeReq(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp);
2022-04-14 10:21:06 +00:00
2023-02-16 07:55:59 +00:00
static int32_t vnodePreprocessCreateTableReq(SVnode *pVnode, SDecoder *pCoder, int64_t ctime, int64_t *pUid) {
2023-02-15 09:59:54 +00:00
int32_t code = 0;
int32_t lino = 0;
if (tStartDecode(pCoder) < 0) {
code = TSDB_CODE_INVALID_MSG;
TSDB_CHECK_CODE(code, lino, _exit);
}
// flags
if (tDecodeI32v(pCoder, NULL) < 0) {
code = TSDB_CODE_INVALID_MSG;
TSDB_CHECK_CODE(code, lino, _exit);
}
// name
char *name = NULL;
if (tDecodeCStr(pCoder, &name) < 0) {
code = TSDB_CODE_INVALID_MSG;
TSDB_CHECK_CODE(code, lino, _exit);
}
// uid
int64_t uid = metaGetTableEntryUidByName(pVnode->pMeta, name);
if (uid == 0) {
uid = tGenIdPI64();
}
*(int64_t *)(pCoder->data + pCoder->pos) = uid;
// ctime
*(int64_t *)(pCoder->data + pCoder->pos + 8) = ctime;
tEndDecode(pCoder);
_exit:
if (code) {
vError("vgId:%d %s failed at line %d since %s", TD_VID(pVnode), __func__, lino, tstrerror(code));
} else {
vTrace("vgId:%d %s done, table:%s uid generated:%" PRId64, TD_VID(pVnode), __func__, name, uid);
2023-02-16 07:55:59 +00:00
if (pUid) *pUid = uid;
2023-02-15 09:59:54 +00:00
}
return code;
}
2023-02-03 06:46:45 +00:00
static int32_t vnodePreProcessCreateTableMsg(SVnode *pVnode, SRpcMsg *pMsg) {
int32_t code = 0;
int32_t lino = 0;
int64_t ctime = taosGetTimestampMs();
2022-05-23 08:38:05 +00:00
SDecoder dc = {0};
2023-02-03 06:46:45 +00:00
int32_t nReqs;
2022-04-14 08:42:50 +00:00
2023-02-03 06:46:45 +00:00
tDecoderInit(&dc, (uint8_t *)pMsg->pCont + sizeof(SMsgHead), pMsg->contLen - sizeof(SMsgHead));
if (tStartDecode(&dc) < 0) {
code = TSDB_CODE_INVALID_MSG;
return code;
}
if (tDecodeI32v(&dc, &nReqs) < 0) {
code = TSDB_CODE_INVALID_MSG;
TSDB_CHECK_CODE(code, lino, _exit);
}
for (int32_t iReq = 0; iReq < nReqs; iReq++) {
2023-02-16 07:55:59 +00:00
code = vnodePreprocessCreateTableReq(pVnode, &dc, ctime, NULL);
2023-02-15 09:59:54 +00:00
TSDB_CHECK_CODE(code, lino, _exit);
2023-02-03 06:46:45 +00:00
}
tEndDecode(&dc);
_exit:
tDecoderClear(&dc);
return code;
}
2023-02-15 09:59:54 +00:00
extern int64_t tsMaxKeyByPrecision[];
static int32_t vnodePreProcessSubmitTbData(SVnode *pVnode, SDecoder *pCoder, int64_t ctime) {
2023-02-03 06:46:45 +00:00
int32_t code = 0;
int32_t lino = 0;
2023-02-15 09:59:54 +00:00
if (tStartDecode(pCoder) < 0) {
code = TSDB_CODE_INVALID_MSG;
TSDB_CHECK_CODE(code, lino, _exit);
}
2023-02-03 06:46:45 +00:00
2023-02-15 09:59:54 +00:00
SSubmitTbData submitTbData;
if (tDecodeI32v(pCoder, &submitTbData.flags) < 0) {
code = TSDB_CODE_INVALID_MSG;
TSDB_CHECK_CODE(code, lino, _exit);
}
2023-02-03 06:46:45 +00:00
2023-02-16 07:55:59 +00:00
int64_t uid;
2023-02-15 09:59:54 +00:00
if (submitTbData.flags & SUBMIT_REQ_AUTO_CREATE_TABLE) {
2023-02-16 07:55:59 +00:00
code = vnodePreprocessCreateTableReq(pVnode, pCoder, ctime, &uid);
2023-02-15 09:59:54 +00:00
TSDB_CHECK_CODE(code, lino, _exit);
}
// submit data
if (tDecodeI64(pCoder, &submitTbData.suid) < 0) {
code = TSDB_CODE_INVALID_MSG;
TSDB_CHECK_CODE(code, lino, _exit);
}
2023-02-16 07:55:59 +00:00
if (submitTbData.flags & SUBMIT_REQ_AUTO_CREATE_TABLE) {
*(int64_t *)(pCoder->data + pCoder->pos) = uid;
2023-02-16 09:50:45 +00:00
pCoder->pos += sizeof(int64_t);
2023-02-16 07:55:59 +00:00
} else {
2023-02-22 06:29:14 +00:00
if (tDecodeI64(pCoder, &submitTbData.uid) < 0) {
code = TSDB_CODE_INVALID_MSG;
TSDB_CHECK_CODE(code, lino, _exit);
}
2023-02-15 09:59:54 +00:00
}
2023-02-16 07:55:59 +00:00
2023-02-15 09:59:54 +00:00
if (tDecodeI32v(pCoder, &submitTbData.sver) < 0) {
2023-02-03 06:46:45 +00:00
code = TSDB_CODE_INVALID_MSG;
TSDB_CHECK_CODE(code, lino, _exit);
}
2023-02-15 09:59:54 +00:00
// scan and check
TSKEY now = ctime;
if (pVnode->config.tsdbCfg.precision == TSDB_TIME_PRECISION_MICRO) {
now *= 1000;
} else if (pVnode->config.tsdbCfg.precision == TSDB_TIME_PRECISION_NANO) {
now *= 1000000;
}
TSKEY minKey = now - tsTickPerMin[pVnode->config.tsdbCfg.precision] * pVnode->config.tsdbCfg.keep2;
TSKEY maxKey = tsMaxKeyByPrecision[pVnode->config.tsdbCfg.precision];
if (submitTbData.flags & SUBMIT_REQ_COLUMN_DATA_FORMAT) {
uint64_t nColData;
if (tDecodeU64v(pCoder, &nColData) < 0) {
2023-02-03 06:46:45 +00:00
code = TSDB_CODE_INVALID_MSG;
2023-02-15 09:59:54 +00:00
goto _exit;
2023-02-03 06:46:45 +00:00
}
2023-02-15 09:59:54 +00:00
SColData colData = {0};
pCoder->pos += tGetColData(pCoder->data + pCoder->pos, &colData);
2023-02-22 06:29:14 +00:00
if (colData.flag != HAS_VALUE) {
code = TSDB_CODE_INVALID_MSG;
goto _exit;
}
2023-02-15 09:59:54 +00:00
for (int32_t iRow = 0; iRow < colData.nVal; iRow++) {
if (((TSKEY *)colData.pData)[iRow] < minKey || ((TSKEY *)colData.pData)[iRow] > maxKey) {
code = TSDB_CODE_TDB_TIMESTAMP_OUT_OF_RANGE;
goto _exit;
}
}
} else {
uint64_t nRow;
if (tDecodeU64v(pCoder, &nRow) < 0) {
2023-02-03 06:46:45 +00:00
code = TSDB_CODE_INVALID_MSG;
2023-02-15 09:59:54 +00:00
goto _exit;
2023-02-03 06:46:45 +00:00
}
2022-05-23 08:38:05 +00:00
2023-02-15 09:59:54 +00:00
for (int32_t iRow = 0; iRow < nRow; ++iRow) {
SRow *pRow = (SRow *)(pCoder->data + pCoder->pos);
pCoder->pos += pRow->len;
2022-05-23 08:38:05 +00:00
2023-02-15 09:59:54 +00:00
if (pRow->ts < minKey || pRow->ts > maxKey) {
code = TSDB_CODE_TDB_TIMESTAMP_OUT_OF_RANGE;
goto _exit;
2022-10-15 03:20:37 +00:00
}
2023-02-15 09:59:54 +00:00
}
}
2022-05-23 08:38:05 +00:00
2023-02-15 09:59:54 +00:00
tEndDecode(pCoder);
2022-05-23 08:38:05 +00:00
2023-02-15 09:59:54 +00:00
_exit:
2023-02-16 07:55:59 +00:00
return code;
2023-02-15 09:59:54 +00:00
}
static int32_t vnodePreProcessSubmitMsg(SVnode *pVnode, SRpcMsg *pMsg) {
int32_t code = 0;
int32_t lino = 0;
2022-05-23 08:38:05 +00:00
2023-02-15 09:59:54 +00:00
SDecoder *pCoder = &(SDecoder){0};
2022-11-29 07:47:24 +00:00
2023-03-08 07:19:55 +00:00
if (taosHton64(((SSubmitReq2Msg *)pMsg->pCont)->version) != 1) {
2023-03-08 06:45:04 +00:00
code = TSDB_CODE_INVALID_MSG;
TSDB_CHECK_CODE(code, lino, _exit);
}
2023-02-17 01:23:41 +00:00
tDecoderInit(pCoder, (uint8_t *)pMsg->pCont + sizeof(SSubmitReq2Msg), pMsg->contLen - sizeof(SSubmitReq2Msg));
2022-05-23 08:38:05 +00:00
2023-02-15 09:59:54 +00:00
if (tStartDecode(pCoder) < 0) {
code = TSDB_CODE_INVALID_MSG;
TSDB_CHECK_CODE(code, lino, _exit);
}
2022-05-23 08:38:05 +00:00
2023-02-15 09:59:54 +00:00
uint64_t nSubmitTbData;
if (tDecodeU64v(pCoder, &nSubmitTbData) < 0) {
code = TSDB_CODE_INVALID_MSG;
TSDB_CHECK_CODE(code, lino, _exit);
}
2022-05-23 08:38:05 +00:00
2023-02-15 09:59:54 +00:00
int64_t ctime = taosGetTimestampMs();
for (int32_t i = 0; i < nSubmitTbData; i++) {
code = vnodePreProcessSubmitTbData(pVnode, pCoder, ctime);
TSDB_CHECK_CODE(code, lino, _exit);
2023-02-03 06:46:45 +00:00
}
2022-05-23 09:34:08 +00:00
2023-02-15 09:59:54 +00:00
tEndDecode(pCoder);
2022-11-29 07:47:24 +00:00
2023-02-03 06:46:45 +00:00
_exit:
2023-02-15 09:59:54 +00:00
tDecoderClear(pCoder);
2023-02-03 06:46:45 +00:00
return code;
}
2022-05-23 08:38:05 +00:00
2023-02-03 06:46:45 +00:00
static int32_t vnodePreProcessDeleteMsg(SVnode *pVnode, SRpcMsg *pMsg) {
int32_t code = 0;
int32_t size;
int32_t ret;
uint8_t *pCont;
SEncoder *pCoder = &(SEncoder){0};
SDeleteRes res = {0};
SReadHandle handle = {.meta = pVnode->pMeta, .config = &pVnode->config, .vnode = pVnode, .pMsgCb = &pVnode->msgCb};
code = qWorkerProcessDeleteMsg(&handle, pVnode->pQuery, pMsg, &res);
if (code) goto _exit;
// malloc and encode
tEncodeSize(tEncodeDeleteRes, &res, size, ret);
pCont = rpcMallocCont(size + sizeof(SMsgHead));
2022-06-28 10:01:56 +00:00
2023-02-03 06:46:45 +00:00
((SMsgHead *)pCont)->contLen = size + sizeof(SMsgHead);
((SMsgHead *)pCont)->vgId = TD_VID(pVnode);
2022-06-28 10:01:56 +00:00
2023-02-03 06:46:45 +00:00
tEncoderInit(pCoder, pCont + sizeof(SMsgHead), size);
tEncodeDeleteRes(pCoder, &res);
tEncoderClear(pCoder);
2022-06-28 10:01:56 +00:00
2023-02-03 06:46:45 +00:00
rpcFreeCont(pMsg->pCont);
pMsg->pCont = pCont;
pMsg->contLen = size + sizeof(SMsgHead);
2022-06-28 10:01:56 +00:00
2023-02-03 06:46:45 +00:00
taosArrayDestroy(res.uidList);
_exit:
return code;
}
2022-06-28 10:01:56 +00:00
2023-02-03 06:46:45 +00:00
int32_t vnodePreProcessWriteMsg(SVnode *pVnode, SRpcMsg *pMsg) {
int32_t code = 0;
switch (pMsg->msgType) {
case TDMT_VND_CREATE_TABLE: {
code = vnodePreProcessCreateTableMsg(pVnode, pMsg);
} break;
case TDMT_VND_SUBMIT: {
code = vnodePreProcessSubmitMsg(pVnode, pMsg);
} break;
case TDMT_VND_DELETE: {
code = vnodePreProcessDeleteMsg(pVnode, pMsg);
2022-06-28 10:01:56 +00:00
} break;
2022-05-23 08:38:05 +00:00
default:
break;
}
2022-04-19 02:37:45 +00:00
2023-02-03 06:46:45 +00:00
_exit:
if (code) {
vError("vgId%d failed to preprocess write request since %s, msg type:%d", TD_VID(pVnode), tstrerror(code),
pMsg->msgType);
}
2022-06-28 10:01:56 +00:00
return code;
2022-04-14 08:42:50 +00:00
}
2022-07-06 07:15:55 +00:00
int32_t vnodeProcessWriteMsg(SVnode *pVnode, SRpcMsg *pMsg, int64_t version, SRpcMsg *pRsp) {
void *ptr = NULL;
void *pReq;
int32_t len;
int32_t ret;
/*
if (!pVnode->inUse) {
2022-11-02 07:28:32 +00:00
terrno = TSDB_CODE_VND_NO_AVAIL_BUFPOOL;
2022-10-17 01:58:34 +00:00
vError("vgId:%d, not ready to write since %s", TD_VID(pVnode), terrstr());
return -1;
}
*/
if (version <= pVnode->state.applied) {
vError("vgId:%d, duplicate write request. version: %" PRId64 ", applied: %" PRId64 "", TD_VID(pVnode), version,
pVnode->state.applied);
terrno = TSDB_CODE_VND_DUP_REQUEST;
return -1;
}
vDebug("vgId:%d, start to process write request %s, index:%" PRId64, TD_VID(pVnode), TMSG_INFO(pMsg->msgType),
2022-04-20 08:50:45 +00:00
version);
2022-04-14 08:42:50 +00:00
ASSERT(pVnode->state.applyTerm <= pMsg->info.conn.applyTerm);
ASSERT(pVnode->state.applied + 1 == version);
2022-04-21 03:47:58 +00:00
pVnode->state.applied = version;
2022-07-06 09:46:14 +00:00
pVnode->state.applyTerm = pMsg->info.conn.applyTerm;
2022-04-21 03:47:58 +00:00
if (!syncUtilUserCommit(pMsg->msgType)) goto _exit;
2022-12-27 05:57:00 +00:00
if (pMsg->msgType == TDMT_VND_STREAM_RECOVER_BLOCKING_STAGE || pMsg->msgType == TDMT_STREAM_TASK_CHECK_RSP) {
2022-12-23 11:04:39 +00:00
if (tqCheckLogInWal(pVnode->pTq, version)) return 0;
}
2022-04-20 08:50:45 +00:00
// skip header
pReq = POINTER_SHIFT(pMsg->pCont, sizeof(SMsgHead));
len = pMsg->contLen - sizeof(SMsgHead);
2022-12-23 12:16:23 +00:00
bool needCommit = false;
2022-04-14 08:42:50 +00:00
switch (pMsg->msgType) {
2022-04-20 08:50:45 +00:00
/* META */
2022-04-14 10:21:06 +00:00
case TDMT_VND_CREATE_STB:
2022-04-21 14:01:58 +00:00
if (vnodeProcessCreateStbReq(pVnode, version, pReq, len, pRsp) < 0) goto _err;
2022-04-19 03:45:22 +00:00
break;
2022-04-14 10:21:06 +00:00
case TDMT_VND_ALTER_STB:
2022-05-14 14:29:04 +00:00
if (vnodeProcessAlterStbReq(pVnode, version, pReq, len, pRsp) < 0) goto _err;
2022-04-19 03:45:22 +00:00
break;
2022-04-14 08:42:50 +00:00
case TDMT_VND_DROP_STB:
2022-04-28 04:09:31 +00:00
if (vnodeProcessDropStbReq(pVnode, version, pReq, len, pRsp) < 0) goto _err;
2022-04-14 08:42:50 +00:00
break;
2022-04-20 08:50:45 +00:00
case TDMT_VND_CREATE_TABLE:
2022-04-22 09:42:31 +00:00
if (vnodeProcessCreateTbReq(pVnode, version, pReq, len, pRsp) < 0) goto _err;
2022-04-20 08:50:45 +00:00
break;
case TDMT_VND_ALTER_TABLE:
2022-05-16 06:17:56 +00:00
if (vnodeProcessAlterTbReq(pVnode, version, pReq, len, pRsp) < 0) goto _err;
2022-04-20 08:50:45 +00:00
break;
2022-04-14 08:42:50 +00:00
case TDMT_VND_DROP_TABLE:
2022-04-28 04:09:31 +00:00
if (vnodeProcessDropTbReq(pVnode, version, pReq, len, pRsp) < 0) goto _err;
2022-04-14 08:42:50 +00:00
break;
case TDMT_VND_DROP_TTL_TABLE:
if (vnodeProcessDropTtlTbReq(pVnode, version, pReq, len, pRsp) < 0) goto _err;
break;
2022-07-11 07:16:10 +00:00
case TDMT_VND_TRIM:
if (vnodeProcessTrimReq(pVnode, version, pReq, len, pRsp) < 0) goto _err;
break;
case TDMT_VND_CREATE_SMA:
if (vnodeProcessCreateTSmaReq(pVnode, version, pReq, len, pRsp) < 0) goto _err;
2022-07-11 07:16:10 +00:00
break;
2022-04-20 08:50:45 +00:00
/* TSDB */
2022-04-14 08:42:50 +00:00
case TDMT_VND_SUBMIT:
if (vnodeProcessSubmitReq(pVnode, version, pMsg->pCont, pMsg->contLen, pRsp) < 0) goto _err;
2022-04-19 03:45:22 +00:00
break;
2022-06-05 12:33:21 +00:00
case TDMT_VND_DELETE:
2022-06-28 10:01:56 +00:00
if (vnodeProcessDeleteReq(pVnode, version, pReq, len, pRsp) < 0) goto _err;
2022-06-05 12:33:21 +00:00
break;
case TDMT_VND_BATCH_DEL:
if (vnodeProcessBatchDeleteReq(pVnode, version, pReq, len, pRsp) < 0) goto _err;
break;
2022-04-20 08:50:45 +00:00
/* TQ */
2022-10-31 10:37:28 +00:00
case TDMT_VND_TMQ_SUBSCRIBE:
if (tqProcessSubscribeReq(pVnode->pTq, version, pReq, len) < 0) {
2022-06-14 05:58:40 +00:00
goto _err;
2022-04-20 13:36:55 +00:00
}
break;
2022-10-31 10:37:28 +00:00
case TDMT_VND_TMQ_DELETE_SUB:
if (tqProcessDeleteSubReq(pVnode->pTq, version, pMsg->pCont, pMsg->contLen) < 0) {
2022-06-14 05:58:40 +00:00
goto _err;
}
break;
2022-10-31 10:37:28 +00:00
case TDMT_VND_TMQ_COMMIT_OFFSET:
if (tqProcessOffsetCommitReq(pVnode->pTq, version, pReq, pMsg->contLen - sizeof(SMsgHead)) < 0) {
2022-06-14 05:58:40 +00:00
goto _err;
2022-05-16 20:26:37 +00:00
}
break;
2022-10-31 10:37:28 +00:00
case TDMT_VND_TMQ_ADD_CHECKINFO:
if (tqProcessAddCheckInfoReq(pVnode->pTq, version, pReq, len) < 0) {
goto _err;
}
break;
2022-10-31 10:37:28 +00:00
case TDMT_VND_TMQ_DEL_CHECKINFO:
if (tqProcessDelCheckInfoReq(pVnode->pTq, version, pReq, len) < 0) {
2022-07-22 08:05:28 +00:00
goto _err;
}
break;
2022-06-07 08:24:50 +00:00
case TDMT_STREAM_TASK_DEPLOY: {
if (tqProcessTaskDeployReq(pVnode->pTq, version, pReq, len) < 0) {
2022-06-14 05:58:40 +00:00
goto _err;
2022-04-14 08:42:50 +00:00
}
} break;
2022-06-21 03:32:36 +00:00
case TDMT_STREAM_TASK_DROP: {
if (tqProcessTaskDropReq(pVnode->pTq, version, pMsg->pCont, pMsg->contLen) < 0) {
2022-06-15 13:13:47 +00:00
goto _err;
}
} break;
2022-11-29 15:39:58 +00:00
case TDMT_VND_STREAM_RECOVER_BLOCKING_STAGE: {
2022-10-31 10:37:28 +00:00
if (tqProcessTaskRecover2Req(pVnode->pTq, version, pMsg->pCont, pMsg->contLen) < 0) {
goto _err;
}
} break;
case TDMT_STREAM_TASK_CHECK_RSP: {
if (tqProcessStreamTaskCheckRsp(pVnode->pTq, version, pReq, len) < 0) {
goto _err;
}
} break;
case TDMT_VND_ALTER_CONFIRM:
vnodeProcessAlterConfirmReq(pVnode, version, pReq, len, pRsp);
break;
case TDMT_VND_ALTER_CONFIG:
vnodeProcessAlterConfigReq(pVnode, version, pReq, len, pRsp);
2022-04-20 06:58:14 +00:00
break;
2022-06-29 09:40:33 +00:00
case TDMT_VND_COMMIT:
2022-12-23 12:16:23 +00:00
needCommit = true;
break;
2023-01-05 07:39:35 +00:00
case TDMT_VND_CREATE_INDEX:
vnodeProcessCreateIndexReq(pVnode, version, pReq, len, pRsp);
break;
case TDMT_VND_DROP_INDEX:
vnodeProcessDropIndexReq(pVnode, version, pReq, len, pRsp);
break;
2022-12-19 07:23:12 +00:00
case TDMT_VND_COMPACT:
vnodeProcessCompactVnodeReq(pVnode, version, pReq, len, pRsp);
2022-12-19 07:23:12 +00:00
goto _exit;
2022-04-14 08:42:50 +00:00
default:
2022-11-01 13:22:36 +00:00
vError("vgId:%d, unprocessed msg, %d", TD_VID(pVnode), pMsg->msgType);
return -1;
2022-04-14 08:42:50 +00:00
}
2022-10-31 13:33:06 +00:00
vTrace("vgId:%d, process %s request, code:0x%x index:%" PRId64, TD_VID(pVnode), TMSG_INFO(pMsg->msgType), pRsp->code,
version);
2022-04-14 08:42:50 +00:00
walApplyVer(pVnode->pWal, version);
2023-02-02 09:26:49 +00:00
/*vInfo("vgId:%d, push msg begin", pVnode->config.vgId);*/
if (tqPushMsg(pVnode->pTq, pMsg->pCont, pMsg->contLen, pMsg->msgType, version) < 0) {
2023-02-02 09:26:49 +00:00
/*vInfo("vgId:%d, push msg end", pVnode->config.vgId);*/
2022-06-02 05:57:39 +00:00
vError("vgId:%d, failed to push msg to TQ since %s", TD_VID(pVnode), tstrerror(terrno));
return -1;
}
2023-02-02 09:26:49 +00:00
/*vInfo("vgId:%d, push msg end", pVnode->config.vgId);*/
2022-04-24 07:34:53 +00:00
// commit if need
2022-12-23 12:16:23 +00:00
if (needCommit) {
2022-06-02 05:57:39 +00:00
vInfo("vgId:%d, commit at version %" PRId64, TD_VID(pVnode), version);
if (vnodeAsyncCommit(pVnode) < 0) {
vError("vgId:%d, failed to vnode async commit since %s.", TD_VID(pVnode), tstrerror(terrno));
goto _err;
}
2022-04-24 07:34:53 +00:00
// start a new one
if (vnodeBegin(pVnode) < 0) {
2022-10-17 01:58:34 +00:00
vError("vgId:%d, failed to begin vnode since %s.", TD_VID(pVnode), tstrerror(terrno));
goto _err;
}
2022-04-14 08:42:50 +00:00
}
2022-12-02 07:46:36 +00:00
_exit:
2022-04-14 08:42:50 +00:00
return 0;
2022-04-21 03:47:58 +00:00
_err:
2022-08-02 08:48:49 +00:00
vError("vgId:%d, process %s request failed since %s, version:%" PRId64, TD_VID(pVnode), TMSG_INFO(pMsg->msgType),
2022-04-21 03:47:58 +00:00
tstrerror(terrno), version);
return -1;
2022-04-14 08:42:50 +00:00
}
int32_t vnodePreprocessQueryMsg(SVnode *pVnode, SRpcMsg *pMsg) {
2022-06-29 02:51:22 +00:00
if (TDMT_SCH_QUERY != pMsg->msgType && TDMT_SCH_MERGE_QUERY != pMsg->msgType) {
2022-06-02 13:02:02 +00:00
return 0;
}
return qWorkerPreprocessQueryMsg(pVnode->pQuery, pMsg, TDMT_SCH_QUERY == pMsg->msgType);
2022-06-02 13:02:02 +00:00
}
int32_t vnodeProcessQueryMsg(SVnode *pVnode, SRpcMsg *pMsg) {
2022-04-24 12:11:34 +00:00
vTrace("message in vnode query queue is processing");
2022-11-03 05:57:57 +00:00
if ((pMsg->msgType == TDMT_SCH_QUERY) && !syncIsReadyForRead(pVnode->sync)) {
2022-12-02 14:45:11 +00:00
vnodeRedirectRpcMsg(pVnode, pMsg, terrno);
2022-07-06 07:15:55 +00:00
return 0;
}
SReadHandle handle = {.meta = pVnode->pMeta, .config = &pVnode->config, .vnode = pVnode, .pMsgCb = &pVnode->msgCb};
2022-04-14 08:42:50 +00:00
switch (pMsg->msgType) {
2022-06-28 02:34:51 +00:00
case TDMT_SCH_QUERY:
2022-06-29 02:51:22 +00:00
case TDMT_SCH_MERGE_QUERY:
2022-05-28 14:13:26 +00:00
return qWorkerProcessQueryMsg(&handle, pVnode->pQuery, pMsg, 0);
2022-06-28 02:34:51 +00:00
case TDMT_SCH_QUERY_CONTINUE:
2022-05-28 14:13:26 +00:00
return qWorkerProcessCQueryMsg(&handle, pVnode->pQuery, pMsg, 0);
2022-04-14 08:42:50 +00:00
default:
vError("unknown msg type:%d in query queue", pMsg->msgType);
2022-11-02 07:28:32 +00:00
return TSDB_CODE_APP_ERROR;
2022-04-14 08:42:50 +00:00
}
}
int32_t vnodeProcessFetchMsg(SVnode *pVnode, SRpcMsg *pMsg, SQueueInfo *pInfo) {
2022-08-02 07:57:37 +00:00
vTrace("vgId:%d, msg:%p in fetch queue is processing", pVnode->config.vgId, pMsg);
2022-08-02 14:23:33 +00:00
if ((pMsg->msgType == TDMT_SCH_FETCH || pMsg->msgType == TDMT_VND_TABLE_META || pMsg->msgType == TDMT_VND_TABLE_CFG ||
pMsg->msgType == TDMT_VND_BATCH_META) &&
2022-11-03 05:57:57 +00:00
!syncIsReadyForRead(pVnode->sync)) {
2022-12-02 14:45:11 +00:00
vnodeRedirectRpcMsg(pVnode, pMsg, terrno);
2022-07-06 07:15:55 +00:00
return 0;
}
2022-10-31 10:37:28 +00:00
if (pMsg->msgType == TDMT_VND_TMQ_CONSUME && !pVnode->restored) {
2022-12-02 14:45:11 +00:00
vnodeRedirectRpcMsg(pVnode, pMsg, TSDB_CODE_SYN_RESTORING);
2022-09-29 06:25:56 +00:00
return 0;
}
2022-04-14 08:42:50 +00:00
switch (pMsg->msgType) {
2022-06-28 02:34:51 +00:00
case TDMT_SCH_FETCH:
2022-07-06 12:33:23 +00:00
case TDMT_SCH_MERGE_FETCH:
2022-05-28 14:13:26 +00:00
return qWorkerProcessFetchMsg(pVnode, pVnode->pQuery, pMsg, 0);
2022-06-29 09:15:08 +00:00
case TDMT_SCH_FETCH_RSP:
2022-07-06 13:00:31 +00:00
return qWorkerProcessRspMsg(pVnode, pVnode->pQuery, pMsg, 0);
2022-10-28 09:03:17 +00:00
// case TDMT_SCH_CANCEL_TASK:
// return qWorkerProcessCancelMsg(pVnode, pVnode->pQuery, pMsg, 0);
2022-06-28 02:34:51 +00:00
case TDMT_SCH_DROP_TASK:
2022-05-28 14:13:26 +00:00
return qWorkerProcessDropMsg(pVnode, pVnode->pQuery, pMsg, 0);
2022-06-28 02:34:51 +00:00
case TDMT_SCH_QUERY_HEARTBEAT:
2022-05-28 14:13:26 +00:00
return qWorkerProcessHbMsg(pVnode, pVnode->pQuery, pMsg, 0);
2022-04-14 08:42:50 +00:00
case TDMT_VND_TABLE_META:
2022-07-26 10:00:50 +00:00
return vnodeGetTableMeta(pVnode, pMsg, true);
2022-06-20 05:32:21 +00:00
case TDMT_VND_TABLE_CFG:
2022-07-26 10:00:50 +00:00
return vnodeGetTableCfg(pVnode, pMsg, true);
case TDMT_VND_BATCH_META:
return vnodeGetBatchMeta(pVnode, pMsg);
2022-10-31 10:37:28 +00:00
case TDMT_VND_TMQ_CONSUME:
2022-07-21 12:15:52 +00:00
return tqProcessPollReq(pVnode->pTq, pMsg);
2022-06-07 08:24:50 +00:00
case TDMT_STREAM_TASK_RUN:
return tqProcessTaskRunReq(pVnode->pTq, pMsg);
#if 1
2022-06-07 08:24:50 +00:00
case TDMT_STREAM_TASK_DISPATCH:
2022-08-02 14:23:33 +00:00
return tqProcessTaskDispatchReq(pVnode->pTq, pMsg, true);
2022-10-28 09:03:17 +00:00
#endif
case TDMT_STREAM_TASK_CHECK:
return tqProcessStreamTaskCheckReq(pVnode->pTq, pMsg);
2022-06-07 08:24:50 +00:00
case TDMT_STREAM_TASK_DISPATCH_RSP:
2022-05-20 10:53:21 +00:00
return tqProcessTaskDispatchRsp(pVnode->pTq, pMsg);
2022-10-31 10:37:28 +00:00
case TDMT_STREAM_RETRIEVE:
return tqProcessTaskRetrieveReq(pVnode->pTq, pMsg);
2022-06-22 09:56:46 +00:00
case TDMT_STREAM_RETRIEVE_RSP:
return tqProcessTaskRetrieveRsp(pVnode->pTq, pMsg);
2022-11-29 15:39:58 +00:00
case TDMT_VND_STREAM_RECOVER_NONBLOCKING_STAGE:
2022-10-31 10:37:28 +00:00
return tqProcessTaskRecover1Req(pVnode->pTq, pMsg);
case TDMT_STREAM_RECOVER_FINISH:
return tqProcessTaskRecoverFinishReq(pVnode->pTq, pMsg);
case TDMT_STREAM_RECOVER_FINISH_RSP:
return tqProcessTaskRecoverFinishRsp(pVnode->pTq, pMsg);
2022-04-14 08:42:50 +00:00
default:
vError("unknown msg type:%d in fetch queue", pMsg->msgType);
2022-11-02 07:28:32 +00:00
return TSDB_CODE_APP_ERROR;
2022-04-14 08:42:50 +00:00
}
}
// TODO: remove the function
void smaHandleRes(void *pVnode, int64_t smaId, const SArray *data) {
// TODO
2022-08-11 13:06:17 +00:00
// blockDebugShowDataBlocks(data, __func__);
tdProcessTSmaInsert(((SVnode *)pVnode)->pSma, smaId, (const char *)data);
2022-04-14 08:42:50 +00:00
}
2022-06-01 12:28:29 +00:00
void vnodeUpdateMetaRsp(SVnode *pVnode, STableMetaRsp *pMetaRsp) {
if (NULL == pMetaRsp) {
return;
}
2022-09-02 07:34:16 +00:00
2022-06-01 12:28:29 +00:00
strcpy(pMetaRsp->dbFName, pVnode->config.dbname);
pMetaRsp->dbId = pVnode->config.dbId;
pMetaRsp->vgId = TD_VID(pVnode);
pMetaRsp->precision = pVnode->config.tsdbCfg.precision;
}
2023-02-27 10:09:51 +00:00
extern int32_t vnodeAsyncRentention(SVnode *pVnode, int64_t now);
2022-07-11 07:16:10 +00:00
static int32_t vnodeProcessTrimReq(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp) {
2022-07-11 08:17:03 +00:00
int32_t code = 0;
2022-07-11 07:16:10 +00:00
SVTrimDbReq trimReq = {0};
2022-07-11 08:17:03 +00:00
// decode
if (tDeserializeSVTrimDbReq(pReq, len, &trimReq) != 0) {
code = TSDB_CODE_INVALID_MSG;
goto _exit;
2022-07-11 07:16:10 +00:00
}
2022-08-24 02:57:06 +00:00
vInfo("vgId:%d, trim vnode request will be processed, time:%d", pVnode->config.vgId, trimReq.timestamp);
2023-03-02 07:06:11 +00:00
// process
2023-02-27 10:09:51 +00:00
vnodeAsyncRentention(pVnode, trimReq.timestamp);
2023-03-02 07:06:11 +00:00
tsem_wait(&pVnode->canCommit);
tsem_post(&pVnode->canCommit);
2022-08-02 08:13:36 +00:00
2022-07-11 08:17:03 +00:00
_exit:
return code;
2022-07-11 07:16:10 +00:00
}
2022-06-20 11:53:48 +00:00
static int32_t vnodeProcessDropTtlTbReq(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp) {
SArray *tbUids = taosArrayInit(8, sizeof(int64_t));
if (tbUids == NULL) return TSDB_CODE_OUT_OF_MEMORY;
2022-07-11 07:16:10 +00:00
SVDropTtlTableReq ttlReq = {0};
if (tDeserializeSVDropTtlTableReq(pReq, len, &ttlReq) != 0) {
terrno = TSDB_CODE_INVALID_MSG;
goto end;
}
vDebug("vgId:%d, drop ttl table req will be processed, time:%d", pVnode->config.vgId, ttlReq.timestamp);
2022-07-11 07:16:10 +00:00
int32_t ret = metaTtlDropTable(pVnode->pMeta, ttlReq.timestamp, tbUids);
2022-06-20 11:53:48 +00:00
if (ret != 0) {
goto end;
}
2022-06-20 11:53:48 +00:00
if (taosArrayGetSize(tbUids) > 0) {
2022-06-16 12:45:00 +00:00
tqUpdateTbUidList(pVnode->pTq, tbUids, false);
}
2023-02-27 10:09:51 +00:00
vnodeAsyncRentention(pVnode, ttlReq.timestamp);
2023-02-17 02:38:55 +00:00
end:
taosArrayDestroy(tbUids);
return ret;
}
static int32_t vnodeProcessCreateStbReq(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp) {
2022-04-20 10:03:50 +00:00
SVCreateStbReq req = {0};
2022-05-07 10:03:06 +00:00
SDecoder coder;
2022-04-20 10:03:50 +00:00
2022-04-21 03:47:58 +00:00
pRsp->msgType = TDMT_VND_CREATE_STB_RSP;
pRsp->code = TSDB_CODE_SUCCESS;
pRsp->pCont = NULL;
pRsp->contLen = 0;
// decode and process req
2022-05-07 10:03:06 +00:00
tDecoderInit(&coder, pReq, len);
2022-04-20 10:03:50 +00:00
if (tDecodeSVCreateStbReq(&coder, &req) < 0) {
2022-04-21 03:47:58 +00:00
pRsp->code = terrno;
goto _err;
2022-04-20 10:03:50 +00:00
}
2022-04-22 05:30:15 +00:00
if (metaCreateSTable(pVnode->pMeta, version, &req) < 0) {
2022-04-21 03:47:58 +00:00
pRsp->code = terrno;
goto _err;
2022-04-14 10:21:06 +00:00
}
if (tdProcessRSmaCreate(pVnode->pSma, &req) < 0) {
pRsp->code = terrno;
goto _err;
}
2022-04-27 11:49:04 +00:00
2022-05-07 10:03:06 +00:00
tDecoderClear(&coder);
2022-04-14 10:21:06 +00:00
return 0;
2022-04-21 03:47:58 +00:00
_err:
2022-05-07 10:03:06 +00:00
tDecoderClear(&coder);
2022-04-21 03:47:58 +00:00
return -1;
2022-04-14 10:21:06 +00:00
}
static int32_t vnodeProcessCreateTbReq(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp) {
2022-05-07 10:03:06 +00:00
SDecoder decoder = {0};
SEncoder encoder = {0};
int32_t rcode = 0;
2022-04-22 09:42:31 +00:00
SVCreateTbBatchReq req = {0};
SVCreateTbReq *pCreateReq;
2022-04-23 10:50:26 +00:00
SVCreateTbBatchRsp rsp = {0};
SVCreateTbRsp cRsp = {0};
char tbName[TSDB_TABLE_FNAME_LEN];
2022-04-27 11:49:04 +00:00
STbUidStore *pStore = NULL;
SArray *tbUids = NULL;
2022-04-21 03:47:58 +00:00
pRsp->msgType = TDMT_VND_CREATE_TABLE_RSP;
2022-04-23 10:50:26 +00:00
pRsp->code = TSDB_CODE_SUCCESS;
pRsp->pCont = NULL;
pRsp->contLen = 0;
2022-04-14 10:21:06 +00:00
2022-04-22 09:42:31 +00:00
// decode
2022-05-07 10:03:06 +00:00
tDecoderInit(&decoder, pReq, len);
if (tDecodeSVCreateTbBatchReq(&decoder, &req) < 0) {
2022-04-22 09:42:31 +00:00
rcode = -1;
terrno = TSDB_CODE_INVALID_MSG;
goto _exit;
}
2022-04-14 10:21:06 +00:00
2022-05-06 08:34:38 +00:00
rsp.pArray = taosArrayInit(req.nReqs, sizeof(cRsp));
tbUids = taosArrayInit(req.nReqs, sizeof(int64_t));
if (rsp.pArray == NULL || tbUids == NULL) {
2022-04-23 10:50:26 +00:00
rcode = -1;
terrno = TSDB_CODE_OUT_OF_MEMORY;
goto _exit;
}
2022-04-22 09:42:31 +00:00
// loop to create table
for (int32_t iReq = 0; iReq < req.nReqs; iReq++) {
2022-04-22 09:42:31 +00:00
pCreateReq = req.pReqs + iReq;
2022-09-01 10:00:41 +00:00
memset(&cRsp, 0, sizeof(cRsp));
2022-04-23 10:50:26 +00:00
2022-07-23 11:38:41 +00:00
if ((terrno = grantCheck(TSDB_GRANT_TIMESERIES)) < 0) {
rcode = -1;
goto _exit;
}
2022-08-02 14:23:33 +00:00
2022-08-02 12:03:45 +00:00
if ((terrno = grantCheck(TSDB_GRANT_TABLE)) < 0) {
rcode = -1;
goto _exit;
}
2022-04-23 10:50:26 +00:00
// validate hash
sprintf(tbName, "%s.%s", pVnode->config.dbname, pCreateReq->name);
if (vnodeValidateTableHash(pVnode, tbName) < 0) {
cRsp.code = TSDB_CODE_VND_HASH_MISMATCH;
taosArrayPush(rsp.pArray, &cRsp);
continue;
}
// do create table
if (metaCreateTable(pVnode->pMeta, version, pCreateReq, &cRsp.pMeta) < 0) {
2022-05-06 13:06:10 +00:00
if (pCreateReq->flags & TD_CREATE_IF_NOT_EXISTS && terrno == TSDB_CODE_TDB_TABLE_ALREADY_EXIST) {
cRsp.code = TSDB_CODE_SUCCESS;
} else {
cRsp.code = terrno;
}
2022-04-14 10:21:06 +00:00
} else {
2022-04-23 10:50:26 +00:00
cRsp.code = TSDB_CODE_SUCCESS;
tdFetchTbUidList(pVnode->pSma, &pStore, pCreateReq->ctb.suid, pCreateReq->uid);
taosArrayPush(tbUids, &pCreateReq->uid);
2022-09-02 07:34:16 +00:00
vnodeUpdateMetaRsp(pVnode, cRsp.pMeta);
2022-04-14 10:21:06 +00:00
}
2022-04-23 10:50:26 +00:00
taosArrayPush(rsp.pArray, &cRsp);
2022-04-14 10:21:06 +00:00
}
2022-09-16 05:06:57 +00:00
vDebug("vgId:%d, add %d new created tables into query table list", TD_VID(pVnode), (int32_t)taosArrayGetSize(tbUids));
tqUpdateTbUidList(pVnode->pTq, tbUids, true);
if (tdUpdateTbUidList(pVnode->pSma, pStore, true) < 0) {
2022-08-12 13:00:48 +00:00
goto _exit;
}
tdUidStoreFree(pStore);
2022-04-27 11:49:04 +00:00
2022-04-22 09:42:31 +00:00
// prepare rsp
int32_t ret = 0;
2022-04-27 09:39:54 +00:00
tEncodeSize(tEncodeSVCreateTbBatchRsp, &rsp, pRsp->contLen, ret);
2022-04-23 10:50:26 +00:00
pRsp->pCont = rpcMallocCont(pRsp->contLen);
if (pRsp->pCont == NULL) {
terrno = TSDB_CODE_OUT_OF_MEMORY;
rcode = -1;
goto _exit;
}
2022-05-07 10:03:06 +00:00
tEncoderInit(&encoder, pRsp->pCont, pRsp->contLen);
tEncodeSVCreateTbBatchRsp(&encoder, &rsp);
2022-04-14 10:21:06 +00:00
2022-04-22 09:42:31 +00:00
_exit:
2022-07-13 10:49:57 +00:00
for (int32_t iReq = 0; iReq < req.nReqs; iReq++) {
pCreateReq = req.pReqs + iReq;
taosMemoryFree(pCreateReq->comment);
2022-07-13 10:49:57 +00:00
taosArrayDestroy(pCreateReq->ctb.tagName);
}
taosArrayDestroyEx(rsp.pArray, tFreeSVCreateTbRsp);
taosArrayDestroy(tbUids);
2022-05-07 10:03:06 +00:00
tDecoderClear(&decoder);
tEncoderClear(&encoder);
2022-04-22 09:42:31 +00:00
return rcode;
2022-04-14 10:21:06 +00:00
}
static int32_t vnodeProcessAlterStbReq(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp) {
2022-05-14 14:29:04 +00:00
SVCreateStbReq req = {0};
SDecoder dc = {0};
pRsp->msgType = TDMT_VND_ALTER_STB_RSP;
pRsp->code = TSDB_CODE_SUCCESS;
pRsp->pCont = NULL;
pRsp->contLen = 0;
tDecoderInit(&dc, pReq, len);
// decode req
if (tDecodeSVCreateStbReq(&dc, &req) < 0) {
terrno = TSDB_CODE_INVALID_MSG;
tDecoderClear(&dc);
return -1;
2022-04-14 10:21:06 +00:00
}
2022-05-14 14:29:04 +00:00
if (metaAlterSTable(pVnode->pMeta, version, &req) < 0) {
pRsp->code = terrno;
tDecoderClear(&dc);
return -1;
}
tDecoderClear(&dc);
2022-04-21 03:47:58 +00:00
return 0;
}
static int32_t vnodeProcessDropStbReq(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp) {
2022-04-28 06:20:00 +00:00
SVDropStbReq req = {0};
int32_t rcode = TSDB_CODE_SUCCESS;
2022-05-07 10:03:06 +00:00
SDecoder decoder = {0};
SArray *tbUidList = NULL;
2022-04-28 06:20:00 +00:00
pRsp->msgType = TDMT_VND_CREATE_STB_RSP;
pRsp->pCont = NULL;
pRsp->contLen = 0;
// decode request
2022-05-07 10:03:06 +00:00
tDecoderInit(&decoder, pReq, len);
if (tDecodeSVDropStbReq(&decoder, &req) < 0) {
2022-04-28 06:20:00 +00:00
rcode = TSDB_CODE_INVALID_MSG;
goto _exit;
}
// process request
tbUidList = taosArrayInit(8, sizeof(int64_t));
if (tbUidList == NULL) goto _exit;
if (metaDropSTable(pVnode->pMeta, version, &req, tbUidList) < 0) {
rcode = terrno;
goto _exit;
}
if (tqUpdateTbUidList(pVnode->pTq, tbUidList, false) < 0) {
rcode = terrno;
goto _exit;
}
2022-04-28 06:20:00 +00:00
if (tdProcessRSmaDrop(pVnode->pSma, &req) < 0) {
rcode = terrno;
goto _exit;
}
2022-04-28 06:20:00 +00:00
// return rsp
_exit:
if (tbUidList) taosArrayDestroy(tbUidList);
2022-04-28 06:20:00 +00:00
pRsp->code = rcode;
2022-05-07 10:03:06 +00:00
tDecoderClear(&decoder);
2022-04-21 03:47:58 +00:00
return 0;
}
static int32_t vnodeProcessAlterTbReq(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp) {
2022-06-01 12:28:29 +00:00
SVAlterTbReq vAlterTbReq = {0};
SVAlterTbRsp vAlterTbRsp = {0};
SDecoder dc = {0};
int32_t rcode = 0;
int32_t ret;
2022-06-01 12:28:29 +00:00
SEncoder ec = {0};
STableMetaRsp vMetaRsp = {0};
2022-05-16 06:17:56 +00:00
pRsp->msgType = TDMT_VND_ALTER_TABLE_RSP;
pRsp->pCont = NULL;
pRsp->contLen = 0;
pRsp->code = TSDB_CODE_SUCCESS;
tDecoderInit(&dc, pReq, len);
// decode
if (tDecodeSVAlterTbReq(&dc, &vAlterTbReq) < 0) {
2022-05-16 12:13:59 +00:00
vAlterTbRsp.code = TSDB_CODE_INVALID_MSG;
2022-05-16 06:17:56 +00:00
tDecoderClear(&dc);
2022-05-16 12:13:59 +00:00
rcode = -1;
goto _exit;
2022-05-16 06:17:56 +00:00
}
// process
2022-06-01 12:28:29 +00:00
if (metaAlterTable(pVnode->pMeta, version, &vAlterTbReq, &vMetaRsp) < 0) {
2022-07-13 08:00:06 +00:00
vAlterTbRsp.code = terrno;
2022-05-16 06:17:56 +00:00
tDecoderClear(&dc);
2022-05-16 12:13:59 +00:00
rcode = -1;
goto _exit;
2022-05-16 06:17:56 +00:00
}
tDecoderClear(&dc);
2022-05-16 12:13:59 +00:00
2022-06-01 12:28:29 +00:00
if (NULL != vMetaRsp.pSchemas) {
vnodeUpdateMetaRsp(pVnode, &vMetaRsp);
vAlterTbRsp.pMeta = &vMetaRsp;
}
2022-05-16 12:13:59 +00:00
_exit:
tEncodeSize(tEncodeSVAlterTbRsp, &vAlterTbRsp, pRsp->contLen, ret);
pRsp->pCont = rpcMallocCont(pRsp->contLen);
tEncoderInit(&ec, pRsp->pCont, pRsp->contLen);
tEncodeSVAlterTbRsp(&ec, &vAlterTbRsp);
tEncoderClear(&ec);
2022-07-18 05:31:13 +00:00
if (vMetaRsp.pSchemas) {
taosMemoryFree(vMetaRsp.pSchemas);
}
2022-04-21 03:47:58 +00:00
return 0;
}
static int32_t vnodeProcessDropTbReq(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp) {
2022-05-04 03:57:16 +00:00
SVDropTbBatchReq req = {0};
SVDropTbBatchRsp rsp = {0};
2022-05-07 10:03:06 +00:00
SDecoder decoder = {0};
2022-05-11 08:26:18 +00:00
SEncoder encoder = {0};
int32_t ret;
SArray *tbUids = NULL;
STbUidStore *pStore = NULL;
2022-05-04 03:57:16 +00:00
2022-05-06 05:47:03 +00:00
pRsp->msgType = TDMT_VND_DROP_TABLE_RSP;
2022-05-04 03:57:16 +00:00
pRsp->pCont = NULL;
pRsp->contLen = 0;
pRsp->code = TSDB_CODE_SUCCESS;
2022-04-28 04:09:31 +00:00
// decode req
2022-05-07 10:03:06 +00:00
tDecoderInit(&decoder, pReq, len);
ret = tDecodeSVDropTbBatchReq(&decoder, &req);
2022-05-04 03:57:16 +00:00
if (ret < 0) {
terrno = TSDB_CODE_INVALID_MSG;
pRsp->code = terrno;
goto _exit;
}
2022-04-28 04:09:31 +00:00
// process req
tbUids = taosArrayInit(req.nReqs, sizeof(int64_t));
2022-05-11 08:26:18 +00:00
rsp.pArray = taosArrayInit(req.nReqs, sizeof(SVDropTbRsp));
if (tbUids == NULL || rsp.pArray == NULL) goto _exit;
for (int32_t iReq = 0; iReq < req.nReqs; iReq++) {
2022-05-04 03:57:16 +00:00
SVDropTbReq *pDropTbReq = req.pReqs + iReq;
SVDropTbRsp dropTbRsp = {0};
tb_uid_t tbUid = 0;
2022-04-28 04:09:31 +00:00
2022-05-04 03:57:16 +00:00
/* code */
ret = metaDropTable(pVnode->pMeta, version, pDropTbReq, tbUids, &tbUid);
2022-05-04 03:57:16 +00:00
if (ret < 0) {
2022-11-02 07:28:32 +00:00
if (pDropTbReq->igNotExists && terrno == TSDB_CODE_TDB_TABLE_NOT_EXIST) {
2022-05-06 05:47:03 +00:00
dropTbRsp.code = TSDB_CODE_SUCCESS;
} else {
dropTbRsp.code = terrno;
}
2022-05-04 03:57:16 +00:00
} else {
2022-05-06 05:47:03 +00:00
dropTbRsp.code = TSDB_CODE_SUCCESS;
if (tbUid > 0) tdFetchTbUidList(pVnode->pSma, &pStore, pDropTbReq->suid, tbUid);
2022-05-04 03:57:16 +00:00
}
taosArrayPush(rsp.pArray, &dropTbRsp);
}
tqUpdateTbUidList(pVnode->pTq, tbUids, false);
tdUpdateTbUidList(pVnode->pSma, pStore, false);
2022-05-04 03:57:16 +00:00
_exit:
taosArrayDestroy(tbUids);
tdUidStoreFree(pStore);
2022-05-07 10:03:06 +00:00
tDecoderClear(&decoder);
2022-05-11 08:26:18 +00:00
tEncodeSize(tEncodeSVDropTbBatchRsp, &rsp, pRsp->contLen, ret);
pRsp->pCont = rpcMallocCont(pRsp->contLen);
tEncoderInit(&encoder, pRsp->pCont, pRsp->contLen);
tEncodeSVDropTbBatchRsp(&encoder, &rsp);
tEncoderClear(&encoder);
2022-07-16 09:45:19 +00:00
taosArrayDestroy(rsp.pArray);
2022-04-16 06:32:34 +00:00
return 0;
}
static int32_t vnodeDebugPrintSingleSubmitMsg(SMeta *pMeta, SSubmitBlk *pBlock, SSubmitMsgIter *msgIter,
const char *tags) {
2022-05-11 03:44:09 +00:00
SSubmitBlkIter blkIter = {0};
STSchema *pSchema = NULL;
tb_uid_t suid = 0;
STSRow *row = NULL;
2022-05-25 07:10:56 +00:00
int32_t rv = -1;
2022-05-11 03:44:09 +00:00
tInitSubmitBlkIter(msgIter, pBlock, &blkIter);
if (blkIter.row == NULL) return 0;
pSchema = metaGetTbTSchema(pMeta, msgIter->suid, TD_ROW_SVER(blkIter.row), 1); // TODO: use the real schema
if (pSchema) {
suid = msgIter->suid;
rv = TD_ROW_SVER(blkIter.row);
2022-05-11 03:44:09 +00:00
}
if (!pSchema) {
printf("%s:%d no valid schema\n", tags, __LINE__);
return -1;
}
char __tags[128] = {0};
snprintf(__tags, 128, "%s: uid %" PRIi64 " ", tags, msgIter->uid);
while ((row = tGetSubmitBlkNext(&blkIter))) {
tdSRowPrint(row, pSchema, __tags);
}
taosMemoryFreeClear(pSchema);
return TSDB_CODE_SUCCESS;
}
typedef struct SSubmitReqConvertCxt {
SSubmitMsgIter msgIter;
SSubmitBlk *pBlock;
SSubmitBlkIter blkIter;
STSRow *pRow;
STSRowIter rowIter;
SSubmitTbData *pTbData;
STSchema *pTbSchema;
SArray *pColValues;
} SSubmitReqConvertCxt;
static int32_t vnodeResetTableCxt(SMeta *pMeta, SSubmitReqConvertCxt *pCxt) {
taosMemoryFreeClear(pCxt->pTbSchema);
pCxt->pTbSchema = metaGetTbTSchema(pMeta, pCxt->msgIter.suid > 0 ? pCxt->msgIter.suid : pCxt->msgIter.uid,
pCxt->msgIter.sversion, 1);
if (NULL == pCxt->pTbSchema) {
return TSDB_CODE_INVALID_MSG;
}
tdSTSRowIterInit(&pCxt->rowIter, pCxt->pTbSchema);
tDestroySSubmitTbData(pCxt->pTbData, TSDB_MSG_FLG_ENCODE);
if (NULL == pCxt->pTbData) {
pCxt->pTbData = taosMemoryCalloc(1, sizeof(SSubmitTbData));
if (NULL == pCxt->pTbData) {
return TSDB_CODE_OUT_OF_MEMORY;
}
}
pCxt->pTbData->flags = 0;
pCxt->pTbData->suid = pCxt->msgIter.suid;
pCxt->pTbData->uid = pCxt->msgIter.uid;
pCxt->pTbData->sver = pCxt->msgIter.sversion;
pCxt->pTbData->pCreateTbReq = NULL;
pCxt->pTbData->aRowP = taosArrayInit(128, POINTER_BYTES);
if (NULL == pCxt->pTbData->aRowP) {
return TSDB_CODE_OUT_OF_MEMORY;
}
taosArrayDestroy(pCxt->pColValues);
pCxt->pColValues = taosArrayInit(pCxt->pTbSchema->numOfCols, sizeof(SColVal));
if (NULL == pCxt->pColValues) {
return TSDB_CODE_OUT_OF_MEMORY;
}
for (int32_t i = 0; i < pCxt->pTbSchema->numOfCols; ++i) {
SColVal val = COL_VAL_NONE(pCxt->pTbSchema->columns[i].colId, pCxt->pTbSchema->columns[i].type);
taosArrayPush(pCxt->pColValues, &val);
}
return TSDB_CODE_SUCCESS;
}
static void vnodeDestroySubmitReqConvertCxt(SSubmitReqConvertCxt *pCxt) {
taosMemoryFreeClear(pCxt->pTbSchema);
tDestroySSubmitTbData(pCxt->pTbData, TSDB_MSG_FLG_ENCODE);
taosMemoryFreeClear(pCxt->pTbData);
taosArrayDestroy(pCxt->pColValues);
}
static int32_t vnodeCellValConvertToColVal(STColumn *pCol, SCellVal *pCellVal, SColVal *pColVal) {
if (tdValTypeIsNone(pCellVal->valType)) {
pColVal->flag = CV_FLAG_NONE;
return TSDB_CODE_SUCCESS;
}
if (tdValTypeIsNull(pCellVal->valType)) {
pColVal->flag = CV_FLAG_NULL;
return TSDB_CODE_SUCCESS;
}
if (IS_VAR_DATA_TYPE(pCol->type)) {
pColVal->value.nData = varDataLen(pCellVal->val);
pColVal->value.pData = varDataVal(pCellVal->val);
} else if (TSDB_DATA_TYPE_FLOAT == pCol->type) {
float f = GET_FLOAT_VAL(pCellVal->val);
memcpy(&pColVal->value.val, &f, sizeof(f));
} else if (TSDB_DATA_TYPE_DOUBLE == pCol->type) {
pColVal->value.val = *(int64_t *)pCellVal->val;
} else {
GET_TYPED_DATA(pColVal->value.val, int64_t, pCol->type, pCellVal->val);
}
pColVal->flag = CV_FLAG_VALUE;
return TSDB_CODE_SUCCESS;
}
static int32_t vnodeTSRowConvertToColValArray(SSubmitReqConvertCxt *pCxt) {
int32_t code = TSDB_CODE_SUCCESS;
tdSTSRowIterReset(&pCxt->rowIter, pCxt->pRow);
for (int32_t i = 0; TSDB_CODE_SUCCESS == code && i < pCxt->pTbSchema->numOfCols; ++i) {
STColumn *pCol = pCxt->pTbSchema->columns + i;
SCellVal cellVal = {0};
if (!tdSTSRowIterFetch(&pCxt->rowIter, pCol->colId, pCol->type, &cellVal)) {
break;
}
code = vnodeCellValConvertToColVal(pCol, &cellVal, (SColVal *)taosArrayGet(pCxt->pColValues, i));
}
return code;
}
static int32_t vnodeDecodeCreateTbReq(SSubmitReqConvertCxt *pCxt) {
if (pCxt->msgIter.schemaLen <= 0) {
return TSDB_CODE_SUCCESS;
}
pCxt->pTbData->pCreateTbReq = taosMemoryCalloc(1, sizeof(SVCreateTbReq));
if (NULL == pCxt->pTbData->pCreateTbReq) {
return TSDB_CODE_OUT_OF_MEMORY;
}
SDecoder decoder = {0};
tDecoderInit(&decoder, pCxt->pBlock->data, pCxt->msgIter.schemaLen);
int32_t code = tDecodeSVCreateTbReq(&decoder, pCxt->pTbData->pCreateTbReq);
tDecoderClear(&decoder);
return code;
}
static int32_t vnodeSubmitReqConvertToSubmitReq2(SVnode *pVnode, SSubmitReq *pReq, SSubmitReq2 *pReq2) {
pReq2->aSubmitTbData = taosArrayInit(128, sizeof(SSubmitTbData));
if (NULL == pReq2->aSubmitTbData) {
return TSDB_CODE_OUT_OF_MEMORY;
}
SSubmitReqConvertCxt cxt = {0};
int32_t code = tInitSubmitMsgIter(pReq, &cxt.msgIter);
while (TSDB_CODE_SUCCESS == code) {
code = tGetSubmitMsgNext(&cxt.msgIter, &cxt.pBlock);
if (TSDB_CODE_SUCCESS == code) {
if (NULL == cxt.pBlock) {
break;
}
code = vnodeResetTableCxt(pVnode->pMeta, &cxt);
}
if (TSDB_CODE_SUCCESS == code) {
code = tInitSubmitBlkIter(&cxt.msgIter, cxt.pBlock, &cxt.blkIter);
}
if (TSDB_CODE_SUCCESS == code) {
code = vnodeDecodeCreateTbReq(&cxt);
}
while (TSDB_CODE_SUCCESS == code && (cxt.pRow = tGetSubmitBlkNext(&cxt.blkIter)) != NULL) {
code = vnodeTSRowConvertToColValArray(&cxt);
if (TSDB_CODE_SUCCESS == code) {
SRow **pNewRow = taosArrayReserve(cxt.pTbData->aRowP, 1);
code = tRowBuild(cxt.pColValues, cxt.pTbSchema, pNewRow);
}
}
if (TSDB_CODE_SUCCESS == code) {
code = (NULL == taosArrayPush(pReq2->aSubmitTbData, cxt.pTbData) ? TSDB_CODE_OUT_OF_MEMORY : TSDB_CODE_SUCCESS);
}
if (TSDB_CODE_SUCCESS == code) {
taosMemoryFreeClear(cxt.pTbData);
}
}
vnodeDestroySubmitReqConvertCxt(&cxt);
return code;
}
static int32_t vnodeRebuildSubmitReqMsg(SSubmitReq2 *pSubmitReq, void **ppMsg) {
int32_t code = TSDB_CODE_SUCCESS;
char *pMsg = NULL;
uint32_t msglen = 0;
tEncodeSize(tEncodeSSubmitReq2, pSubmitReq, msglen, code);
if (TSDB_CODE_SUCCESS == code) {
pMsg = taosMemoryMalloc(msglen);
if (NULL == pMsg) {
code = TSDB_CODE_OUT_OF_MEMORY;
}
}
if (TSDB_CODE_SUCCESS == code) {
SEncoder encoder;
tEncoderInit(&encoder, pMsg, msglen);
code = tEncodeSSubmitReq2(&encoder, pSubmitReq);
tEncoderClear(&encoder);
}
if (TSDB_CODE_SUCCESS == code) {
*ppMsg = pMsg;
}
return code;
}
static int32_t vnodeProcessSubmitReq(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp) {
2022-11-28 09:45:07 +00:00
int32_t code = 0;
2022-12-05 07:45:25 +00:00
terrno = 0;
2022-05-09 13:52:39 +00:00
2022-11-29 07:23:11 +00:00
SSubmitReq2 *pSubmitReq = &(SSubmitReq2){0};
2022-11-29 09:29:49 +00:00
SSubmitRsp2 *pSubmitRsp = &(SSubmitRsp2){0};
2022-11-28 09:45:07 +00:00
SArray *newTbUids = NULL;
2022-11-29 09:29:49 +00:00
int32_t ret;
SEncoder ec = {0};
pRsp->code = TSDB_CODE_SUCCESS;
2022-05-12 07:09:27 +00:00
void *pAllocMsg = NULL;
SSubmitReq2Msg *pMsg = (SSubmitReq2Msg *)pReq;
if (0 == pMsg->version) {
code = vnodeSubmitReqConvertToSubmitReq2(pVnode, (SSubmitReq *)pMsg, pSubmitReq);
if (TSDB_CODE_SUCCESS == code) {
code = vnodeRebuildSubmitReqMsg(pSubmitReq, &pReq);
}
if (TSDB_CODE_SUCCESS == code) {
pAllocMsg = pReq;
}
if (TSDB_CODE_SUCCESS != code) {
goto _exit;
}
} else {
// decode
pReq = POINTER_SHIFT(pReq, sizeof(SSubmitReq2Msg));
len -= sizeof(SSubmitReq2Msg);
SDecoder dc = {0};
tDecoderInit(&dc, pReq, len);
if (tDecodeSSubmitReq2(&dc, pSubmitReq) < 0) {
code = TSDB_CODE_INVALID_MSG;
goto _exit;
}
tDecoderClear(&dc);
2022-05-11 03:44:09 +00:00
}
2022-05-09 13:52:39 +00:00
2023-03-02 10:10:02 +00:00
// scan
TSKEY now = taosGetTimestamp(pVnode->config.tsdbCfg.precision);
TSKEY minKey = now - tsTickPerMin[pVnode->config.tsdbCfg.precision] * pVnode->config.tsdbCfg.keep2;
TSKEY maxKey = tsMaxKeyByPrecision[pVnode->config.tsdbCfg.precision];
for (int32_t i = 0; i < TARRAY_SIZE(pSubmitReq->aSubmitTbData); ++i) {
SSubmitTbData *pSubmitTbData = taosArrayGet(pSubmitReq->aSubmitTbData, i);
2023-03-08 06:45:04 +00:00
if (pSubmitTbData->pCreateTbReq && pSubmitTbData->pCreateTbReq->uid == 0) {
code = TSDB_CODE_INVALID_MSG;
goto _exit;
}
2023-03-02 10:10:02 +00:00
if (pSubmitTbData->flags & SUBMIT_REQ_COLUMN_DATA_FORMAT) {
if (TARRAY_SIZE(pSubmitTbData->aCol) <= 0) {
code = TSDB_CODE_INVALID_MSG;
goto _exit;
}
SColData *pColData = (SColData *)taosArrayGet(pSubmitTbData->aCol, 0);
TSKEY *aKey = (TSKEY *)(pColData->pData);
for (int32_t iRow = 0; iRow < pColData->nVal; iRow++) {
if (aKey[iRow] < minKey || aKey[iRow] > maxKey || (iRow > 0 && aKey[iRow] <= aKey[iRow - 1])) {
code = TSDB_CODE_INVALID_MSG;
vError("vgId:%d %s failed since %s, version:%" PRId64, TD_VID(pVnode), __func__, tstrerror(terrno), version);
goto _exit;
}
}
} else {
int32_t nRow = TARRAY_SIZE(pSubmitTbData->aRowP);
SRow **aRow = (SRow **)TARRAY_DATA(pSubmitTbData->aRowP);
for (int32_t iRow = 0; iRow < nRow; ++iRow) {
if (aRow[iRow]->ts < minKey || aRow[iRow]->ts > maxKey || (iRow > 0 && aRow[iRow]->ts <= aRow[iRow - 1]->ts)) {
code = TSDB_CODE_INVALID_MSG;
vError("vgId:%d %s failed since %s, version:%" PRId64, TD_VID(pVnode), __func__, tstrerror(terrno), version);
goto _exit;
}
}
}
}
2022-11-29 09:29:49 +00:00
for (int32_t i = 0; i < TARRAY_SIZE(pSubmitReq->aSubmitTbData); ++i) {
2022-11-29 08:02:33 +00:00
SSubmitTbData *pSubmitTbData = taosArrayGet(pSubmitReq->aSubmitTbData, i);
if (pSubmitTbData->pCreateTbReq) {
pSubmitTbData->uid = pSubmitTbData->pCreateTbReq->uid;
} else {
SMetaInfo info = {0};
code = metaGetInfo(pVnode->pMeta, pSubmitTbData->uid, &info, NULL);
if (code) {
code = TSDB_CODE_TDB_TABLE_NOT_EXIST;
2022-12-05 07:45:25 +00:00
vWarn("vgId:%d, table uid:%" PRId64 " not exists", TD_VID(pVnode), pSubmitTbData->uid);
2022-11-29 08:02:33 +00:00
goto _exit;
}
if (info.suid != pSubmitTbData->suid) {
code = TSDB_CODE_INVALID_MSG;
goto _exit;
}
if (info.suid) {
metaGetInfo(pVnode->pMeta, info.suid, &info, NULL);
}
if (pSubmitTbData->sver != info.skmVer) {
code = TSDB_CODE_TDB_INVALID_TABLE_SCHEMA_VER;
goto _exit;
}
}
2022-12-03 07:14:12 +00:00
if (pSubmitTbData->flags & SUBMIT_REQ_COLUMN_DATA_FORMAT) {
int32_t nColData = TARRAY_SIZE(pSubmitTbData->aCol);
SColData *aColData = (SColData *)TARRAY_DATA(pSubmitTbData->aCol);
if (nColData <= 0) {
code = TSDB_CODE_INVALID_MSG;
goto _exit;
}
if (aColData[0].cid != PRIMARYKEY_TIMESTAMP_COL_ID || aColData[0].type != TSDB_DATA_TYPE_TIMESTAMP ||
aColData[0].nVal <= 0) {
code = TSDB_CODE_INVALID_MSG;
goto _exit;
}
for (int32_t j = 1; j < nColData; j++) {
if (aColData[j].nVal != aColData[0].nVal) {
2022-12-03 07:14:12 +00:00
code = TSDB_CODE_INVALID_MSG;
goto _exit;
}
}
}
2022-11-29 08:02:33 +00:00
}
2022-12-26 02:14:59 +00:00
vDebug("vgId:%d, submit block size %d", TD_VID(pVnode), (int32_t)taosArrayGetSize(pSubmitReq->aSubmitTbData));
2022-11-29 08:02:33 +00:00
// loop to handle
2022-11-29 09:29:49 +00:00
for (int32_t i = 0; i < TARRAY_SIZE(pSubmitReq->aSubmitTbData); ++i) {
2022-11-29 08:02:33 +00:00
SSubmitTbData *pSubmitTbData = taosArrayGet(pSubmitReq->aSubmitTbData, i);
// create table
if (pSubmitTbData->pCreateTbReq) {
2022-11-29 09:29:49 +00:00
// check (TODO: move check to create table)
code = grantCheck(TSDB_GRANT_TIMESERIES);
if (code) goto _exit;
code = grantCheck(TSDB_GRANT_TABLE);
if (code) goto _exit;
// alloc if need
if (pSubmitRsp->aCreateTbRsp == NULL &&
(pSubmitRsp->aCreateTbRsp = taosArrayInit(TARRAY_SIZE(pSubmitReq->aSubmitTbData), sizeof(SVCreateTbRsp))) ==
NULL) {
2022-12-06 06:53:02 +00:00
code = TSDB_CODE_OUT_OF_MEMORY;
2022-11-29 09:29:49 +00:00
goto _exit;
}
SVCreateTbRsp *pCreateTbRsp = taosArrayReserve(pSubmitRsp->aCreateTbRsp, 1);
// create table
if (metaCreateTable(pVnode->pMeta, version, pSubmitTbData->pCreateTbReq, &pCreateTbRsp->pMeta) == 0) {
// create table success
2022-11-29 09:29:49 +00:00
if (newTbUids == NULL &&
(newTbUids = taosArrayInit(TARRAY_SIZE(pSubmitReq->aSubmitTbData), sizeof(int64_t))) == NULL) {
2022-12-06 06:53:02 +00:00
code = TSDB_CODE_OUT_OF_MEMORY;
2022-11-29 09:29:49 +00:00
goto _exit;
}
taosArrayPush(newTbUids, &pSubmitTbData->uid);
if (pCreateTbRsp->pMeta) {
2022-12-01 12:22:57 +00:00
vnodeUpdateMetaRsp(pVnode, pCreateTbRsp->pMeta);
2022-11-29 09:29:49 +00:00
}
} else { // create table failed
if (terrno != TSDB_CODE_TDB_TABLE_ALREADY_EXIST) {
code = terrno;
goto _exit;
}
pSubmitTbData->uid = pSubmitTbData->pCreateTbReq->uid; // update uid if table exist for using below
2022-11-29 08:41:46 +00:00
}
2022-11-29 08:02:33 +00:00
}
// insert data
2022-11-29 09:29:49 +00:00
int32_t affectedRows;
code = tsdbInsertTableData(pVnode->pTsdb, version, pSubmitTbData, &affectedRows);
if (code) goto _exit;
pSubmitRsp->affectedRows += affectedRows;
2022-11-29 08:02:33 +00:00
}
2022-11-28 05:41:06 +00:00
// update the affected table uid list
2022-11-29 09:29:49 +00:00
if (taosArrayGetSize(newTbUids) > 0) {
vDebug("vgId:%d, add %d table into query table list in handling submit", TD_VID(pVnode),
(int32_t)taosArrayGetSize(newTbUids));
tqUpdateTbUidList(pVnode->pTq, newTbUids, true);
2022-11-28 09:45:07 +00:00
}
2022-11-29 09:29:49 +00:00
_exit:
// message
pRsp->code = code;
tEncodeSize(tEncodeSSubmitRsp2, pSubmitRsp, pRsp->contLen, ret);
pRsp->pCont = rpcMallocCont(pRsp->contLen);
tEncoderInit(&ec, pRsp->pCont, pRsp->contLen);
tEncodeSSubmitRsp2(&ec, pSubmitRsp);
tEncoderClear(&ec);
2022-11-29 09:45:50 +00:00
// update statistics
atomic_add_fetch_64(&pVnode->statis.nInsert, pSubmitRsp->affectedRows);
atomic_add_fetch_64(&pVnode->statis.nInsertSuccess, pSubmitRsp->affectedRows);
atomic_add_fetch_64(&pVnode->statis.nBatchInsert, 1);
if (code == 0) {
atomic_add_fetch_64(&pVnode->statis.nBatchInsertSuccess, 1);
2022-12-08 06:39:59 +00:00
tdProcessRSmaSubmit(pVnode->pSma, version, pSubmitReq, pReq, len, STREAM_INPUT__DATA_SUBMIT);
2022-11-29 09:45:50 +00:00
}
2022-11-29 09:29:49 +00:00
// clear
taosArrayDestroy(newTbUids);
tDestroySSubmitReq2(pSubmitReq, 0 == pMsg->version ? TSDB_MSG_FLG_CMPT : TSDB_MSG_FLG_DECODE);
2022-11-29 09:45:50 +00:00
tDestroySSubmitRsp2(pSubmitRsp, TSDB_MSG_FLG_ENCODE);
2022-11-29 09:29:49 +00:00
2022-12-05 07:45:25 +00:00
if (code) terrno = code;
taosMemoryFree(pAllocMsg);
2022-11-28 09:45:07 +00:00
return code;
2022-04-20 13:36:55 +00:00
}
static int32_t vnodeProcessCreateTSmaReq(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp) {
SVCreateTSmaReq req = {0};
2022-08-02 08:13:36 +00:00
SDecoder coder = {0};
2022-06-01 07:06:12 +00:00
if (pRsp) {
pRsp->msgType = TDMT_VND_CREATE_SMA_RSP;
pRsp->code = TSDB_CODE_SUCCESS;
pRsp->pCont = NULL;
pRsp->contLen = 0;
}
// decode and process req
tDecoderInit(&coder, pReq, len);
if (tDecodeSVCreateTSmaReq(&coder, &req) < 0) {
2022-06-01 07:06:12 +00:00
terrno = TSDB_CODE_MSG_DECODE_ERROR;
if (pRsp) pRsp->code = terrno;
goto _err;
}
2022-05-01 16:30:47 +00:00
2022-05-16 15:55:17 +00:00
if (tdProcessTSmaCreate(pVnode->pSma, version, (const char *)&req) < 0) {
2022-06-01 07:06:12 +00:00
if (pRsp) pRsp->code = terrno;
goto _err;
}
2022-05-01 16:30:47 +00:00
tDecoderClear(&coder);
2022-06-02 05:57:39 +00:00
vDebug("vgId:%d, success to create tsma %s:%" PRIi64 " version %" PRIi64 " for table %" PRIi64, TD_VID(pVnode),
2022-06-01 07:06:12 +00:00
req.indexName, req.indexUid, version, req.tableUid);
2022-04-14 10:21:06 +00:00
return 0;
_err:
tDecoderClear(&coder);
2022-06-02 05:57:39 +00:00
vError("vgId:%d, failed to create tsma %s:%" PRIi64 " version %" PRIi64 "for table %" PRIi64 " since %s",
2022-07-16 09:12:45 +00:00
TD_VID(pVnode), req.indexName, req.indexUid, version, req.tableUid, terrstr());
return -1;
2022-04-20 13:36:55 +00:00
}
2022-06-01 07:06:12 +00:00
/**
* @brief specific for smaDstVnode
*
* @param pVnode
* @param pCont
* @param contLen
* @return int32_t
*/
int32_t vnodeProcessCreateTSma(SVnode *pVnode, void *pCont, uint32_t contLen) {
return vnodeProcessCreateTSmaReq(pVnode, 1, pCont, contLen, NULL);
}
static int32_t vnodeProcessAlterConfirmReq(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp) {
vInfo("vgId:%d, alter replica confim msg is processed", TD_VID(pVnode));
pRsp->msgType = TDMT_VND_ALTER_CONFIRM_RSP;
pRsp->code = TSDB_CODE_SUCCESS;
pRsp->pCont = NULL;
pRsp->contLen = 0;
return 0;
2022-06-06 05:58:01 +00:00
}
2022-06-09 12:54:59 +00:00
static int32_t vnodeProcessAlterConfigReq(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp) {
2022-10-20 08:47:03 +00:00
bool walChanged = false;
bool tsdbChanged = false;
2022-10-20 08:47:03 +00:00
SAlterVnodeConfigReq req = {0};
if (tDeserializeSAlterVnodeConfigReq(pReq, len, &req) != 0) {
terrno = TSDB_CODE_INVALID_MSG;
return TSDB_CODE_INVALID_MSG;
}
vInfo("vgId:%d, start to alter vnode config, page:%d pageSize:%d buffer:%d szPage:%d szBuf:%" PRIu64
2022-10-20 08:47:03 +00:00
" cacheLast:%d cacheLastSize:%d days:%d keep0:%d keep1:%d keep2:%d fsync:%d level:%d",
TD_VID(pVnode), req.pages, req.pageSize, req.buffer, req.pageSize * 1024, (uint64_t)req.buffer * 1024 * 1024,
req.cacheLast, req.cacheLastSize, req.daysPerFile, req.daysToKeep0, req.daysToKeep1, req.daysToKeep2,
2022-10-20 08:47:03 +00:00
req.walFsyncPeriod, req.walLevel);
if (pVnode->config.cacheLastSize != req.cacheLastSize) {
pVnode->config.cacheLastSize = req.cacheLastSize;
tsdbCacheSetCapacity(pVnode, (size_t)pVnode->config.cacheLastSize * 1024 * 1024);
}
if (pVnode->config.szBuf != req.buffer * 1024LL * 1024LL) {
2022-10-21 02:39:19 +00:00
vInfo("vgId:%d, vnode buffer is changed from %" PRId64 " to %" PRId64, TD_VID(pVnode), pVnode->config.szBuf,
(uint64_t)(req.buffer * 1024LL * 1024LL));
pVnode->config.szBuf = req.buffer * 1024LL * 1024LL;
2022-10-09 05:52:44 +00:00
}
if (pVnode->config.szCache != req.pages) {
if (metaAlterCache(pVnode->pMeta, req.pages) < 0) {
2022-10-21 02:39:19 +00:00
vError("vgId:%d, failed to change vnode pages from %d to %d failed since %s", TD_VID(pVnode),
pVnode->config.szCache, req.pages, tstrerror(errno));
2022-10-09 07:01:20 +00:00
return errno;
} else {
2022-10-21 02:39:19 +00:00
vInfo("vgId:%d, vnode pages is changed from %d to %d", TD_VID(pVnode), pVnode->config.szCache, req.pages);
pVnode->config.szCache = req.pages;
2022-10-09 07:01:20 +00:00
}
2022-10-09 05:52:44 +00:00
}
if (pVnode->config.cacheLast != req.cacheLast) {
pVnode->config.cacheLast = req.cacheLast;
}
if (pVnode->config.walCfg.fsyncPeriod != req.walFsyncPeriod) {
pVnode->config.walCfg.fsyncPeriod = req.walFsyncPeriod;
walChanged = true;
}
if (pVnode->config.walCfg.level != req.walLevel) {
pVnode->config.walCfg.level = req.walLevel;
walChanged = true;
}
if (pVnode->config.tsdbCfg.keep0 != req.daysToKeep0) {
pVnode->config.tsdbCfg.keep0 = req.daysToKeep0;
if (!VND_IS_RSMA(pVnode)) {
2022-07-30 11:26:10 +00:00
tsdbChanged = true;
}
}
if (pVnode->config.tsdbCfg.keep1 != req.daysToKeep1) {
pVnode->config.tsdbCfg.keep1 = req.daysToKeep1;
if (!VND_IS_RSMA(pVnode)) {
2022-07-30 11:26:10 +00:00
tsdbChanged = true;
}
}
if (pVnode->config.tsdbCfg.keep2 != req.daysToKeep2) {
pVnode->config.tsdbCfg.keep2 = req.daysToKeep2;
if (!VND_IS_RSMA(pVnode)) {
2022-07-30 11:26:10 +00:00
tsdbChanged = true;
}
}
2023-03-09 07:25:47 +00:00
if (req.sttTrigger != -1 && req.sttTrigger != pVnode->config.sttTrigger) {
pVnode->config.sttTrigger = req.sttTrigger;
}
if (req.minRows != -1 && req.minRows != pVnode->config.tsdbCfg.minRows) {
pVnode->config.tsdbCfg.minRows = req.minRows;
}
if (walChanged) {
2022-07-30 11:26:10 +00:00
walAlter(pVnode->pWal, &pVnode->config.walCfg);
}
if (tsdbChanged) {
tsdbSetKeepCfg(pVnode->pTsdb, &pVnode->config.tsdbCfg);
}
return 0;
}
static int32_t vnodeProcessBatchDeleteReq(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp) {
SBatchDeleteReq deleteReq;
SDecoder decoder;
tDecoderInit(&decoder, pReq, len);
tDecodeSBatchDeleteReq(&decoder, &deleteReq);
SMetaReader mr = {0};
metaReaderInit(&mr, pVnode->pMeta, META_READER_NOLOCK);
int32_t sz = taosArrayGetSize(deleteReq.deleteReqs);
for (int32_t i = 0; i < sz; i++) {
SSingleDeleteReq *pOneReq = taosArrayGet(deleteReq.deleteReqs, i);
char *name = pOneReq->tbname;
if (metaGetTableEntryByName(&mr, name) < 0) {
2022-12-20 07:01:03 +00:00
vDebug("vgId:%d, stream delete msg, skip since no table: %s", pVnode->config.vgId, name);
continue;
}
int64_t uid = mr.me.uid;
2022-11-29 15:39:58 +00:00
int32_t code = tsdbDeleteTableData(pVnode->pTsdb, version, deleteReq.suid, uid, pOneReq->startTs, pOneReq->endTs);
if (code < 0) {
terrno = code;
vError("vgId:%d, delete error since %s, suid:%" PRId64 ", uid:%" PRId64 ", start ts:%" PRId64 ", end ts:%" PRId64,
2022-11-29 15:39:58 +00:00
TD_VID(pVnode), terrstr(), deleteReq.suid, uid, pOneReq->startTs, pOneReq->endTs);
}
tDecoderClear(&mr.coder);
}
metaReaderClear(&mr);
taosArrayDestroy(deleteReq.deleteReqs);
return 0;
}
2022-06-28 10:01:56 +00:00
static int32_t vnodeProcessDeleteReq(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp) {
int32_t code = 0;
SDecoder *pCoder = &(SDecoder){0};
SDeleteRes *pRes = &(SDeleteRes){0};
2022-07-26 09:43:22 +00:00
pRsp->msgType = TDMT_VND_DELETE_RSP;
pRsp->pCont = NULL;
pRsp->contLen = 0;
pRsp->code = TSDB_CODE_SUCCESS;
2022-06-28 10:01:56 +00:00
pRes->uidList = taosArrayInit(0, sizeof(tb_uid_t));
if (pRes->uidList == NULL) {
code = TSDB_CODE_OUT_OF_MEMORY;
goto _err;
}
tDecoderInit(pCoder, pReq, len);
tDecodeDeleteRes(pCoder, pRes);
ASSERT(taosArrayGetSize(pRes->uidList) == 0 || (pRes->skey != 0 && pRes->ekey != 0));
2022-06-28 10:01:56 +00:00
for (int32_t iUid = 0; iUid < taosArrayGetSize(pRes->uidList); iUid++) {
code = tsdbDeleteTableData(pVnode->pTsdb, version, pRes->suid, *(uint64_t *)taosArrayGet(pRes->uidList, iUid),
pRes->skey, pRes->ekey);
if (code) goto _err;
}
tDecoderClear(pCoder);
taosArrayDestroy(pRes->uidList);
2022-07-26 09:43:22 +00:00
SVDeleteRsp rsp = {.affectedRows = pRes->affectedRows};
2022-08-02 14:23:33 +00:00
int32_t ret = 0;
2022-07-26 09:43:22 +00:00
tEncodeSize(tEncodeSVDeleteRsp, &rsp, pRsp->contLen, ret);
pRsp->pCont = rpcMallocCont(pRsp->contLen);
2022-08-02 14:23:33 +00:00
SEncoder ec = {0};
2022-07-26 09:43:22 +00:00
tEncoderInit(&ec, pRsp->pCont, pRsp->contLen);
tEncodeSVDeleteRsp(&ec, &rsp);
tEncoderClear(&ec);
2022-06-28 10:01:56 +00:00
return code;
_err:
return code;
2022-07-07 01:58:47 +00:00
}
2023-01-05 07:39:35 +00:00
static int32_t vnodeProcessCreateIndexReq(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp) {
2023-01-06 13:33:42 +00:00
SVCreateStbReq req = {0};
SDecoder dc = {0};
pRsp->msgType = TDMT_VND_CREATE_INDEX_RSP;
pRsp->code = TSDB_CODE_SUCCESS;
pRsp->pCont = NULL;
pRsp->contLen = 0;
tDecoderInit(&dc, pReq, len);
// decode req
if (tDecodeSVCreateStbReq(&dc, &req) < 0) {
terrno = TSDB_CODE_INVALID_MSG;
tDecoderClear(&dc);
return -1;
}
if (metaAddIndexToSTable(pVnode->pMeta, version, &req) < 0) {
pRsp->code = terrno;
goto _err;
}
tDecoderClear(&dc);
return 0;
_err:
tDecoderClear(&dc);
return -1;
2023-01-05 07:39:35 +00:00
}
static int32_t vnodeProcessDropIndexReq(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp) {
2023-02-04 13:02:06 +00:00
SDropIndexReq req = {0};
2023-03-08 08:02:46 +00:00
pRsp->msgType = TDMT_VND_DROP_INDEX_RSP;
2023-02-04 13:02:06 +00:00
pRsp->code = TSDB_CODE_SUCCESS;
pRsp->pCont = NULL;
pRsp->contLen = 0;
if (tDeserializeSDropIdxReq(pReq, len, &req)) {
terrno = TSDB_CODE_INVALID_MSG;
return -1;
}
2023-03-08 10:16:29 +00:00
2023-02-04 13:02:06 +00:00
if (metaDropIndexFromSTable(pVnode->pMeta, version, &req) < 0) {
pRsp->code = terrno;
return -1;
}
2023-01-05 07:39:35 +00:00
return TSDB_CODE_SUCCESS;
}
2023-02-28 11:52:03 +00:00
extern int32_t vnodeProcessCompactVnodeReqImpl(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp);
static int32_t vnodeProcessCompactVnodeReq(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp) {
2023-02-28 11:52:03 +00:00
return vnodeProcessCompactVnodeReqImpl(pVnode, version, pReq, len, pRsp);
}
2023-02-28 11:52:03 +00:00
#ifndef TD_ENTERPRISE
2023-03-02 07:06:11 +00:00
int32_t vnodeProcessCompactVnodeReqImpl(SVnode *pVnode, int64_t version, void *pReq, int32_t len, SRpcMsg *pRsp) {
return 0;
2023-02-12 02:48:18 +00:00
}
2023-02-28 11:52:03 +00:00
#endif