TDengine/source/dnode/vnode/src/tsdb/dev/tsdbCommit.c

502 lines
14 KiB
C
Raw Normal View History

2023-03-20 02:59:16 +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-05-10 06:54:13 +00:00
#include "inc/tsdbCommit.h"
2023-03-20 02:59:16 +00:00
2023-03-23 05:15:14 +00:00
// extern dependencies
2023-03-22 06:41:16 +00:00
typedef struct {
2023-06-01 07:08:45 +00:00
STsdb *tsdb;
TFileSetArray *fsetArr;
2023-03-22 06:41:16 +00:00
int32_t minutes;
int8_t precision;
int32_t minRow;
int32_t maxRow;
int8_t cmprAlg;
2023-06-01 07:08:45 +00:00
int32_t sttTrigger;
int32_t szPage;
2023-05-30 10:06:28 +00:00
int64_t compactVersion;
struct {
2023-06-01 07:08:45 +00:00
int64_t cid;
2023-05-30 10:06:28 +00:00
int64_t now;
TSKEY nextKey;
int32_t fid;
int32_t expLevel;
TSKEY minKey;
TSKEY maxKey;
STFileSet *fset;
TABLEID tbid[1];
} ctx[1];
TFileOpArray fopArray[1];
TTsdbIterArray iterArray[1];
SIterMerger *iterMerger;
2023-05-10 06:54:13 +00:00
2023-03-23 05:15:14 +00:00
// writer
2023-05-30 10:06:28 +00:00
SSttFileWriter *sttWriter;
2023-06-01 07:08:45 +00:00
SDataFileWriter *dataWriter;
2023-05-30 10:06:28 +00:00
} SCommitter2;
2023-03-20 02:59:16 +00:00
2023-06-01 07:08:45 +00:00
static int32_t tsdbCommitOpenNewSttWriter(SCommitter2 *committer) {
2023-04-11 06:22:36 +00:00
int32_t code = 0;
2023-05-11 10:16:55 +00:00
int32_t lino = 0;
2023-05-18 07:06:21 +00:00
2023-06-01 07:08:45 +00:00
SDiskID did[1];
if (tfsAllocDisk(committer->tsdb->pVnode->pTfs, committer->ctx->expLevel, did) < 0) {
2023-05-18 07:06:21 +00:00
code = TSDB_CODE_FS_NO_VALID_DISK;
TSDB_CHECK_CODE(code, lino, _exit);
}
2023-06-01 07:08:45 +00:00
SSttFileWriterConfig config[1] = {{
.tsdb = committer->tsdb,
.maxRow = committer->maxRow,
.szPage = committer->tsdb->pVnode->config.tsdbPageSize,
.cmprAlg = committer->cmprAlg,
.compactVersion = committer->compactVersion,
.file =
{
.type = TSDB_FTYPE_STT,
.did = did[0],
.fid = committer->ctx->fid,
.cid = committer->ctx->cid,
},
}};
code = tsdbSttFileWriterOpen(config, &committer->sttWriter);
2023-05-18 07:06:21 +00:00
TSDB_CHECK_CODE(code, lino, _exit);
_exit:
if (code) {
2023-06-01 07:08:45 +00:00
TSDB_ERROR_LOG(TD_VID(committer->tsdb->pVnode), lino, code);
2023-05-18 07:06:21 +00:00
} else {
2023-06-01 07:08:45 +00:00
tsdbDebug("vgId:%d %s success", TD_VID(committer->tsdb->pVnode), __func__);
2023-05-18 07:06:21 +00:00
}
return code;
}
2023-06-01 07:08:45 +00:00
static int32_t tsdbCommitOpenExistSttWriter(SCommitter2 *committer, const STFile *f) {
2023-05-18 07:06:21 +00:00
int32_t code = 0;
int32_t lino = 0;
2023-06-01 07:08:45 +00:00
SSttFileWriterConfig config[1] = {{
.tsdb = committer->tsdb,
.maxRow = committer->maxRow,
.szPage = committer->szPage,
.cmprAlg = committer->cmprAlg,
.compactVersion = committer->compactVersion,
.file = f[0],
}};
code = tsdbSttFileWriterOpen(config, &committer->sttWriter);
2023-03-23 08:10:08 +00:00
TSDB_CHECK_CODE(code, lino, _exit);
_exit:
if (code) {
2023-06-01 07:08:45 +00:00
TSDB_ERROR_LOG(TD_VID(committer->tsdb->pVnode), lino, code);
2023-05-18 07:06:21 +00:00
} else {
2023-06-01 07:08:45 +00:00
tsdbDebug("vgId:%d %s success", TD_VID(committer->tsdb->pVnode), __func__);
2023-03-23 08:10:08 +00:00
}
2023-03-23 05:15:14 +00:00
return code;
}
2023-06-01 07:08:45 +00:00
2023-05-30 10:06:28 +00:00
static int32_t tsdbCommitOpenWriter(SCommitter2 *committer) {
2023-06-01 07:08:45 +00:00
int32_t code = 0;
int32_t lino = 0;
// stt writer
2023-05-30 10:06:28 +00:00
if (!committer->ctx->fset) {
2023-06-01 10:56:40 +00:00
return tsdbCommitOpenNewSttWriter(committer);
2023-05-18 07:06:21 +00:00
}
2023-06-01 07:08:45 +00:00
const SSttLvl *lvl0 = tsdbTFileSetGetSttLvl(committer->ctx->fset, 0);
if (lvl0 == NULL || TARRAY2_SIZE(lvl0->fobjArr) == 0) {
2023-06-01 10:56:40 +00:00
return tsdbCommitOpenNewSttWriter(committer);
2023-05-18 07:06:21 +00:00
}
2023-05-31 02:59:47 +00:00
STFileObj *fobj = TARRAY2_LAST(lvl0->fobjArr);
2023-05-30 10:06:28 +00:00
if (fobj->f->stt->nseg >= committer->sttTrigger) {
2023-06-01 10:56:40 +00:00
return tsdbCommitOpenNewSttWriter(committer);
2023-05-18 07:06:21 +00:00
} else {
2023-06-01 10:56:40 +00:00
return tsdbCommitOpenExistSttWriter(committer, fobj->f);
2023-05-18 07:06:21 +00:00
}
2023-03-23 05:15:14 +00:00
2023-06-01 07:08:45 +00:00
// data writer
if (0) {
// TODO
}
return code;
2023-03-20 02:59:16 +00:00
}
2023-06-01 07:08:45 +00:00
static int32_t tsdbCommitWriteDelData(SCommitter2 *committer, int64_t suid, int64_t uid, int64_t version, int64_t sKey,
2023-03-23 05:15:14 +00:00
int64_t eKey) {
int32_t code = 0;
// TODO
return code;
}
2023-05-30 10:06:28 +00:00
static int32_t tsdbCommitTSData(SCommitter2 *committer) {
int32_t code = 0;
int32_t lino = 0;
int64_t nRow = 0;
int32_t vid = TD_VID(committer->tsdb->pVnode);
SRowInfo *row;
if (committer->tsdb->imem->nRow == 0) goto _exit;
// open iter and iter merger
STsdbIter *iter;
STsdbIterConfig config[1] = {{
.type = TSDB_ITER_TYPE_MEMT,
.memt = committer->tsdb->imem,
.from = {{
.ts = committer->ctx->minKey,
.version = VERSION_MIN,
}},
}};
code = tsdbIterOpen(config, &iter);
TSDB_CHECK_CODE(code, lino, _exit);
2023-03-23 05:15:14 +00:00
2023-05-30 10:06:28 +00:00
code = TARRAY2_APPEND(committer->iterArray, iter);
TSDB_CHECK_CODE(code, lino, _exit);
2023-03-22 11:24:40 +00:00
2023-06-01 07:08:45 +00:00
code = tsdbIterMergerOpen(committer->iterArray, &committer->iterMerger);
2023-05-30 10:06:28 +00:00
TSDB_CHECK_CODE(code, lino, _exit);
2023-03-22 11:24:40 +00:00
2023-05-30 10:06:28 +00:00
// loop iter
while ((row = tsdbIterMergerGet(committer->iterMerger)) != NULL) {
if (row->uid != committer->ctx->tbid->uid) {
committer->ctx->tbid->suid = row->suid;
committer->ctx->tbid->uid = row->uid;
2023-06-01 07:08:45 +00:00
// Ignore table of obsolescence
2023-05-30 10:06:28 +00:00
SMetaInfo info[1];
if (metaGetInfo(committer->tsdb->pVnode->pMeta, row->uid, info, NULL) != 0) {
code = tsdbIterMergerSkipTableData(committer->iterMerger, committer->ctx->tbid);
TSDB_CHECK_CODE(code, lino, _exit);
continue;
2023-03-22 11:24:40 +00:00
}
2023-05-30 10:06:28 +00:00
}
2023-03-22 11:24:40 +00:00
2023-05-30 10:06:28 +00:00
TSKEY ts = TSDBROW_TS(&row->row);
if (ts > committer->ctx->maxKey) {
committer->ctx->nextKey = TMIN(committer->ctx->nextKey, ts);
code = tsdbIterMergerSkipTableData(committer->iterMerger, committer->ctx->tbid);
TSDB_CHECK_CODE(code, lino, _exit);
} else {
2023-06-01 07:08:45 +00:00
code = tsdbSttFileWriteTSData(committer->sttWriter, row);
2023-03-22 11:24:40 +00:00
TSDB_CHECK_CODE(code, lino, _exit);
2023-04-11 03:00:35 +00:00
2023-05-30 10:06:28 +00:00
code = tsdbIterMergerNext(committer->iterMerger);
TSDB_CHECK_CODE(code, lino, _exit);
2023-03-22 11:24:40 +00:00
}
}
_exit:
if (code) {
2023-05-30 10:06:28 +00:00
TSDB_ERROR_LOG(vid, lino, code);
2023-03-22 11:24:40 +00:00
} else {
2023-05-30 10:06:28 +00:00
tsdbDebug("vgId:%d %s done, fid:%d nRow:%" PRId64, vid, __func__, committer->ctx->fid, nRow);
2023-03-22 11:24:40 +00:00
}
return code;
}
2023-06-01 07:08:45 +00:00
static int32_t tsdbCommitDelData(SCommitter2 *committer) {
2023-03-22 11:24:40 +00:00
int32_t code = 0;
int32_t lino;
2023-05-11 10:16:55 +00:00
return 0;
2023-05-30 10:06:28 +00:00
#if 0
2023-04-11 03:00:35 +00:00
ASSERTS(0, "TODO: Not implemented yet");
2023-03-23 05:26:57 +00:00
2023-03-23 05:15:14 +00:00
int64_t nDel = 0;
2023-06-01 07:08:45 +00:00
SMemTable *pMem = committer->tsdb->imem;
2023-03-22 11:24:40 +00:00
2023-03-23 05:15:14 +00:00
if (pMem->nDel == 0) { // no del data
goto _exit;
}
2023-03-22 11:24:40 +00:00
2023-06-01 07:08:45 +00:00
for (int32_t iTbData = 0; iTbData < taosArrayGetSize(committer->aTbDataP); iTbData++) {
STbData *pTbData = (STbData *)taosArrayGetP(committer->aTbDataP, iTbData);
2023-03-22 11:24:40 +00:00
for (SDelData *pDelData = pTbData->pHead; pDelData; pDelData = pDelData->pNext) {
2023-06-01 07:08:45 +00:00
if (pDelData->eKey < committer->ctx->minKey) continue;
if (pDelData->sKey > committer->ctx->maxKey) {
committer->ctx->nextKey = TMIN(committer->ctx->nextKey, pDelData->sKey);
2023-03-23 05:15:14 +00:00
continue;
}
2023-03-22 11:24:40 +00:00
2023-06-01 07:08:45 +00:00
code = tsdbCommitWriteDelData(committer, pTbData->suid, pTbData->uid, pDelData->version,
2023-03-23 05:15:14 +00:00
pDelData->sKey /* TODO */, pDelData->eKey /* TODO */);
2023-03-22 11:24:40 +00:00
TSDB_CHECK_CODE(code, lino, _exit);
}
}
_exit:
if (code) {
2023-06-01 07:08:45 +00:00
tsdbError("vgId:%d failed at line %d since %s", TD_VID(committer->tsdb->pVnode), lino, tstrerror(code));
2023-03-22 11:24:40 +00:00
} else {
2023-06-01 07:08:45 +00:00
tsdbDebug("vgId:%d %s done, fid:%d nDel:%" PRId64, TD_VID(committer->tsdb->pVnode), __func__, committer->ctx->fid,
2023-03-22 11:24:40 +00:00
pMem->nDel);
}
return code;
2023-05-30 10:06:28 +00:00
#endif
2023-03-22 11:24:40 +00:00
}
2023-05-30 10:06:28 +00:00
static int32_t tsdbCommitFileSetBegin(SCommitter2 *committer) {
int32_t code = 0;
int32_t lino = 0;
STsdb *tsdb = committer->tsdb;
int32_t vid = TD_VID(tsdb->pVnode);
committer->ctx->fid = tsdbKeyFid(committer->ctx->nextKey, committer->minutes, committer->precision);
2023-06-01 07:08:45 +00:00
committer->ctx->expLevel = tsdbFidLevel(committer->ctx->fid, &tsdb->keepCfg, committer->ctx->now);
2023-05-30 10:06:28 +00:00
tsdbFidKeyRange(committer->ctx->fid, committer->minutes, committer->precision, &committer->ctx->minKey,
&committer->ctx->maxKey);
2023-06-01 07:08:45 +00:00
STFileSet fset = {.fid = committer->ctx->fid};
committer->ctx->fset = &fset;
committer->ctx->fset = TARRAY2_SEARCH_EX(committer->fsetArr, &committer->ctx->fset, tsdbTFileSetCmprFn, TD_EQ);
committer->ctx->tbid->suid = 0;
committer->ctx->tbid->uid = 0;
2023-05-11 10:16:55 +00:00
2023-06-01 07:08:45 +00:00
ASSERT(TARRAY2_SIZE(committer->iterArray) == 0);
ASSERT(committer->iterMerger == NULL);
ASSERT(committer->sttWriter == NULL);
ASSERT(committer->dataWriter == NULL);
2023-03-22 11:24:40 +00:00
2023-05-30 10:06:28 +00:00
code = tsdbCommitOpenWriter(committer);
TSDB_CHECK_CODE(code, lino, _exit);
2023-04-11 06:22:36 +00:00
2023-06-01 07:08:45 +00:00
// reset nextKey
committer->ctx->nextKey = TSKEY_MAX;
2023-05-30 10:06:28 +00:00
_exit:
if (code) {
TSDB_ERROR_LOG(vid, lino, code);
} else {
tsdbDebug("vgId:%d %s done, fid:%d minKey:%" PRId64 " maxKey:%" PRId64 " expLevel:%d", vid, __func__,
committer->ctx->fid, committer->ctx->minKey, committer->ctx->maxKey, committer->ctx->expLevel);
}
2023-03-23 08:10:08 +00:00
return 0;
2023-03-20 02:59:16 +00:00
}
2023-06-01 07:08:45 +00:00
static int32_t tsdbCommitFileSetEnd(SCommitter2 *committer) {
2023-03-22 11:24:40 +00:00
int32_t code = 0;
2023-05-11 10:16:55 +00:00
int32_t lino = 0;
2023-03-22 11:24:40 +00:00
2023-06-02 10:42:15 +00:00
code = tsdbSttFileWriterClose(&committer->sttWriter, 0, committer->fopArray);
2023-05-22 10:39:10 +00:00
TSDB_CHECK_CODE(code, lino, _exit);
2023-04-11 06:22:36 +00:00
2023-06-01 07:08:45 +00:00
tsdbIterMergerClose(&committer->iterMerger);
TARRAY2_CLEAR(committer->iterArray, tsdbIterClose);
2023-03-22 11:24:40 +00:00
_exit:
if (code) {
2023-06-01 07:08:45 +00:00
TSDB_ERROR_LOG(TD_VID(committer->tsdb->pVnode), lino, code);
2023-04-11 06:22:36 +00:00
} else {
2023-06-01 07:08:45 +00:00
tsdbDebug("vgId:%d %s done, fid:%d", TD_VID(committer->tsdb->pVnode), __func__, committer->ctx->fid);
2023-03-22 11:24:40 +00:00
}
return code;
}
2023-05-30 10:06:28 +00:00
static int32_t tsdbCommitFileSet(SCommitter2 *committer) {
2023-03-20 02:59:16 +00:00
int32_t code = 0;
int32_t lino = 0;
2023-05-30 10:06:28 +00:00
int32_t vid = TD_VID(committer->tsdb->pVnode);
2023-03-20 02:59:16 +00:00
2023-03-22 11:24:40 +00:00
// fset commit start
2023-05-30 10:06:28 +00:00
code = tsdbCommitFileSetBegin(committer);
2023-03-22 11:24:40 +00:00
TSDB_CHECK_CODE(code, lino, _exit);
2023-03-20 02:59:16 +00:00
2023-03-22 06:41:16 +00:00
// commit fset
2023-05-30 10:06:28 +00:00
code = tsdbCommitTSData(committer);
2023-03-20 02:59:16 +00:00
TSDB_CHECK_CODE(code, lino, _exit);
2023-05-30 10:06:28 +00:00
code = tsdbCommitDelData(committer);
2023-03-22 11:24:40 +00:00
TSDB_CHECK_CODE(code, lino, _exit);
// fset commit end
2023-05-30 10:06:28 +00:00
code = tsdbCommitFileSetEnd(committer);
2023-03-22 11:24:40 +00:00
TSDB_CHECK_CODE(code, lino, _exit);
2023-03-20 02:59:16 +00:00
_exit:
if (code) {
2023-05-30 10:06:28 +00:00
TSDB_ERROR_LOG(vid, lino, code);
2023-05-11 10:16:55 +00:00
} else {
2023-05-30 10:06:28 +00:00
tsdbDebug("vgId:%d %s done, fid:%d", vid, __func__, committer->ctx->fid);
2023-03-20 02:59:16 +00:00
}
return code;
}
2023-05-30 10:06:28 +00:00
static int32_t tsdbOpenCommitter(STsdb *tsdb, SCommitInfo *info, SCommitter2 *committer) {
2023-03-20 02:59:16 +00:00
int32_t code = 0;
2023-05-30 10:06:28 +00:00
int32_t lino = 0;
int32_t vid = TD_VID(tsdb->pVnode);
2023-03-20 02:59:16 +00:00
2023-05-30 10:06:28 +00:00
memset(committer, 0, sizeof(committer[0]));
committer->tsdb = tsdb;
2023-06-01 07:08:45 +00:00
code = tsdbFSCreateCopySnapshot(tsdb->pFS, &committer->fsetArr);
TSDB_CHECK_CODE(code, lino, _exit);
2023-05-30 10:06:28 +00:00
committer->minutes = tsdb->keepCfg.days;
committer->precision = tsdb->keepCfg.precision;
committer->minRow = info->info.config.tsdbCfg.minRows;
committer->maxRow = info->info.config.tsdbCfg.maxRows;
committer->cmprAlg = info->info.config.tsdbCfg.compression;
committer->sttTrigger = info->info.config.sttTrigger;
2023-06-01 07:08:45 +00:00
committer->szPage = info->info.config.tsdbPageSize;
committer->compactVersion = INT64_MAX;
2023-05-30 10:06:28 +00:00
2023-06-01 07:08:45 +00:00
committer->ctx->cid = tsdbFSAllocEid(tsdb->pFS);
2023-05-30 10:06:28 +00:00
committer->ctx->now = taosGetTimestampSec();
committer->ctx->nextKey = tsdb->imem->minKey; // TODO
2023-03-20 02:59:16 +00:00
2023-06-01 07:08:45 +00:00
TARRAY2_INIT(committer->fopArray);
2023-03-20 02:59:16 +00:00
_exit:
if (code) {
2023-05-30 10:06:28 +00:00
TSDB_ERROR_LOG(vid, lino, code);
2023-03-20 02:59:16 +00:00
} else {
2023-05-30 10:06:28 +00:00
tsdbDebug("vgId:%d %s done", TD_VID(tsdb->pVnode), __func__);
2023-03-20 02:59:16 +00:00
}
return code;
}
2023-06-01 07:08:45 +00:00
static int32_t tsdbCloseCommitter(SCommitter2 *committer, int32_t eno) {
2023-03-20 02:59:16 +00:00
int32_t code = 0;
2023-05-11 10:16:55 +00:00
int32_t lino = 0;
2023-06-01 07:08:45 +00:00
int32_t vid = TD_VID(committer->tsdb->pVnode);
2023-04-06 06:27:18 +00:00
2023-04-11 07:34:40 +00:00
if (eno == 0) {
2023-06-01 07:08:45 +00:00
code = tsdbFSEditBegin(committer->tsdb->pFS, committer->fopArray, TSDB_FEDIT_COMMIT);
2023-05-11 10:16:55 +00:00
TSDB_CHECK_CODE(code, lino, _exit);
2023-04-11 07:34:40 +00:00
} else {
2023-05-11 10:16:55 +00:00
// TODO
ASSERT(0);
2023-04-11 07:34:40 +00:00
}
2023-04-06 06:27:18 +00:00
2023-06-01 07:08:45 +00:00
ASSERT(committer->dataWriter == NULL);
ASSERT(committer->sttWriter == NULL);
ASSERT(committer->iterMerger == NULL);
TARRAY2_FREE(committer->iterArray);
TARRAY2_FREE(committer->fopArray);
tsdbFSDestroyCopySnapshot(&committer->fsetArr);
2023-04-12 07:18:12 +00:00
2023-04-06 06:27:18 +00:00
_exit:
2023-04-11 07:34:40 +00:00
if (code) {
2023-05-11 10:16:55 +00:00
tsdbError("vgId:%d %s failed at line %d since %s, eid:%" PRId64, vid, __func__, lino, tstrerror(code),
2023-06-01 07:08:45 +00:00
committer->ctx->cid);
2023-04-11 07:34:40 +00:00
} else {
2023-06-01 07:08:45 +00:00
tsdbDebug("vgId:%d %s done, eid:%" PRId64, vid, __func__, committer->ctx->cid);
2023-04-11 07:34:40 +00:00
}
2023-03-20 02:59:16 +00:00
return code;
}
2023-05-30 10:06:28 +00:00
int32_t tsdbPreCommit(STsdb *tsdb) {
taosThreadRwlockWrlock(&tsdb->rwLock);
ASSERT(tsdb->imem == NULL);
tsdb->imem = tsdb->mem;
tsdb->mem = NULL;
taosThreadRwlockUnlock(&tsdb->rwLock);
2023-03-20 02:59:16 +00:00
return 0;
}
2023-05-30 10:06:28 +00:00
int32_t tsdbCommitBegin(STsdb *tsdb, SCommitInfo *info) {
if (!tsdb) return 0;
2023-03-20 02:59:16 +00:00
int32_t code = 0;
int32_t lino = 0;
2023-05-30 10:06:28 +00:00
int32_t vid = TD_VID(tsdb->pVnode);
2023-06-01 07:08:45 +00:00
SMemTable *imem = tsdb->imem;
int64_t nRow = imem->nRow;
int64_t nDel = imem->nDel;
2023-05-30 10:06:28 +00:00
if (!nRow && !nDel) {
taosThreadRwlockWrlock(&tsdb->rwLock);
tsdb->imem = NULL;
taosThreadRwlockUnlock(&tsdb->rwLock);
2023-06-01 07:08:45 +00:00
tsdbUnrefMemTable(imem, NULL, true);
2023-03-22 06:41:16 +00:00
} else {
2023-05-30 10:06:28 +00:00
SCommitter2 committer[1];
2023-03-20 02:59:16 +00:00
2023-05-30 10:06:28 +00:00
code = tsdbOpenCommitter(tsdb, info, committer);
2023-03-22 06:41:16 +00:00
TSDB_CHECK_CODE(code, lino, _exit);
2023-03-20 02:59:16 +00:00
2023-05-30 10:06:28 +00:00
while (committer->ctx->nextKey != TSKEY_MAX) {
code = tsdbCommitFileSet(committer);
2023-06-01 07:08:45 +00:00
TSDB_CHECK_CODE(code, lino, _exit);
2023-03-22 06:41:16 +00:00
}
2023-03-20 02:59:16 +00:00
2023-05-30 10:06:28 +00:00
code = tsdbCloseCommitter(committer, code);
2023-03-22 06:41:16 +00:00
TSDB_CHECK_CODE(code, lino, _exit);
}
2023-03-20 02:59:16 +00:00
_exit:
if (code) {
2023-05-30 10:06:28 +00:00
TSDB_ERROR_LOG(vid, lino, code);
2023-03-22 06:41:16 +00:00
} else {
2023-05-30 10:06:28 +00:00
tsdbInfo("vgId:%d %s done, nRow:%" PRId64 " nDel:%" PRId64, vid, __func__, nRow, nDel);
2023-03-20 02:59:16 +00:00
}
return code;
}
2023-06-01 07:08:45 +00:00
int32_t tsdbCommitCommit(STsdb *tsdb) {
2023-05-11 10:16:55 +00:00
int32_t code = 0;
int32_t lino = 0;
2023-04-10 09:52:51 +00:00
2023-06-01 07:08:45 +00:00
if (tsdb->imem == NULL) goto _exit;
2023-04-10 09:52:51 +00:00
2023-06-01 07:08:45 +00:00
SMemTable *pMemTable = tsdb->imem;
taosThreadRwlockWrlock(&tsdb->rwLock);
code = tsdbFSEditCommit(tsdb->pFS);
2023-04-10 09:52:51 +00:00
if (code) {
2023-06-01 07:08:45 +00:00
taosThreadRwlockUnlock(&tsdb->rwLock);
2023-04-10 09:52:51 +00:00
TSDB_CHECK_CODE(code, lino, _exit);
}
2023-06-01 07:08:45 +00:00
tsdb->imem = NULL;
taosThreadRwlockUnlock(&tsdb->rwLock);
2023-05-11 10:16:55 +00:00
tsdbUnrefMemTable(pMemTable, NULL, true);
2023-04-10 09:52:51 +00:00
_exit:
if (code) {
2023-06-01 07:08:45 +00:00
TSDB_ERROR_LOG(TD_VID(tsdb->pVnode), lino, code);
2023-04-10 09:52:51 +00:00
} else {
2023-06-01 07:08:45 +00:00
tsdbInfo("vgId:%d %s done", TD_VID(tsdb->pVnode), __func__);
2023-04-10 09:52:51 +00:00
}
return code;
}
int32_t tsdbCommitAbort(STsdb *pTsdb) {
int32_t code = 0;
int32_t lino = 0;
2023-05-11 10:16:55 +00:00
int32_t vid = TD_VID(pTsdb->pVnode);
if (pTsdb->imem == NULL) goto _exit;
2023-04-10 09:52:51 +00:00
2023-05-09 08:46:23 +00:00
code = tsdbFSEditAbort(pTsdb->pFS);
2023-04-10 09:52:51 +00:00
TSDB_CHECK_CODE(code, lino, _exit);
_exit:
if (code) {
2023-05-11 10:16:55 +00:00
tsdbError("vgId:%d, %s failed at line %d since %s", vid, __func__, lino, tstrerror(code));
2023-04-10 09:52:51 +00:00
} else {
2023-05-11 10:16:55 +00:00
tsdbInfo("vgId:%d %s done", vid, __func__);
2023-04-10 09:52:51 +00:00
}
return code;
}