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 {
|
|
|
|
|
STsdb *pTsdb;
|
2023-05-10 06:54:13 +00:00
|
|
|
|
2023-03-22 06:41:16 +00:00
|
|
|
// config
|
|
|
|
|
int32_t minutes;
|
|
|
|
|
int8_t precision;
|
|
|
|
|
int32_t minRow;
|
|
|
|
|
int32_t maxRow;
|
|
|
|
|
int8_t cmprAlg;
|
|
|
|
|
int8_t sttTrigger;
|
2023-05-10 06:54:13 +00:00
|
|
|
|
|
|
|
|
SArray *aTbDataP; // SArray<STbData *>
|
|
|
|
|
SArray *aFileOp; // SArray<STFileOp>
|
|
|
|
|
|
2023-03-22 06:41:16 +00:00
|
|
|
// context
|
2023-05-08 02:27:55 +00:00
|
|
|
TSKEY nextKey;
|
|
|
|
|
int32_t fid;
|
|
|
|
|
int32_t expLevel;
|
|
|
|
|
TSKEY minKey;
|
|
|
|
|
TSKEY maxKey;
|
|
|
|
|
STFileSet *pFileSet;
|
2023-05-10 06:54:13 +00:00
|
|
|
|
2023-03-23 05:15:14 +00:00
|
|
|
// writer
|
2023-04-23 09:37:12 +00:00
|
|
|
SSttFileWriter *pWriter;
|
2023-03-22 06:41:16 +00:00
|
|
|
} SCommitter;
|
2023-03-20 02:59:16 +00:00
|
|
|
|
2023-03-30 08:06:07 +00:00
|
|
|
static int32_t open_committer_writer(SCommitter *pCommitter) {
|
2023-04-11 06:22:36 +00:00
|
|
|
int32_t code = 0;
|
2023-03-23 08:10:08 +00:00
|
|
|
int32_t lino;
|
|
|
|
|
|
2023-04-11 06:22:36 +00:00
|
|
|
STsdb *pTsdb = pCommitter->pTsdb;
|
|
|
|
|
|
2023-04-23 09:37:12 +00:00
|
|
|
SSttFileWriterConfig conf = {
|
2023-03-27 11:12:25 +00:00
|
|
|
.pTsdb = pCommitter->pTsdb,
|
|
|
|
|
.maxRow = pCommitter->maxRow,
|
|
|
|
|
.szPage = pCommitter->pTsdb->pVnode->config.tsdbPageSize,
|
|
|
|
|
.cmprAlg = pCommitter->cmprAlg,
|
2023-04-11 03:00:35 +00:00
|
|
|
.pSkmTb = NULL,
|
|
|
|
|
.pSkmRow = NULL,
|
2023-03-27 11:12:25 +00:00
|
|
|
.aBuf = NULL,
|
|
|
|
|
};
|
2023-03-23 08:10:08 +00:00
|
|
|
|
2023-04-11 06:22:36 +00:00
|
|
|
if (pCommitter->pFileSet) {
|
|
|
|
|
ASSERTS(0, "TODO: Not implemented yet");
|
2023-03-28 07:38:55 +00:00
|
|
|
} else {
|
2023-04-11 06:22:36 +00:00
|
|
|
conf.file.type = TSDB_FTYPE_STT;
|
|
|
|
|
|
2023-04-23 07:31:23 +00:00
|
|
|
if (tfsAllocDisk(pTsdb->pVnode->pTfs, pCommitter->expLevel, &conf.file.did) < 0) {
|
2023-04-11 06:22:36 +00:00
|
|
|
code = TSDB_CODE_FS_NO_VALID_DISK;
|
|
|
|
|
TSDB_CHECK_CODE(code, lino, _exit);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
conf.file.size = 0;
|
|
|
|
|
conf.file.cid = 1;
|
|
|
|
|
conf.file.fid = pCommitter->fid;
|
|
|
|
|
|
|
|
|
|
tsdbTFileInit(pTsdb, &conf.file);
|
2023-03-28 07:38:55 +00:00
|
|
|
}
|
2023-03-27 11:12:25 +00:00
|
|
|
|
|
|
|
|
code = tsdbSttFWriterOpen(&conf, &pCommitter->pWriter);
|
2023-03-23 08:10:08 +00:00
|
|
|
TSDB_CHECK_CODE(code, lino, _exit);
|
|
|
|
|
|
|
|
|
|
_exit:
|
|
|
|
|
if (code) {
|
2023-04-11 06:22:36 +00:00
|
|
|
tsdbError( //
|
|
|
|
|
"vgId:%d %s failed at line %d since %s, fid:%d", //
|
|
|
|
|
TD_VID(pCommitter->pTsdb->pVnode), //
|
|
|
|
|
__func__, //
|
|
|
|
|
lino, //
|
|
|
|
|
tstrerror(code), //
|
|
|
|
|
pCommitter->fid);
|
2023-03-23 08:10:08 +00:00
|
|
|
}
|
2023-03-23 05:15:14 +00:00
|
|
|
return code;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-23 08:10:08 +00:00
|
|
|
static int32_t tsdbCommitWriteTSData(SCommitter *pCommitter, TABLEID *tbid, TSDBROW *pRow) {
|
2023-03-23 05:15:14 +00:00
|
|
|
int32_t code = 0;
|
|
|
|
|
int32_t lino;
|
|
|
|
|
|
|
|
|
|
if (pCommitter->pWriter == NULL) {
|
2023-03-30 08:06:07 +00:00
|
|
|
code = open_committer_writer(pCommitter);
|
2023-03-23 05:15:14 +00:00
|
|
|
TSDB_CHECK_CODE(code, lino, _exit);
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-23 08:10:08 +00:00
|
|
|
code = tsdbSttFWriteTSData(pCommitter->pWriter, tbid, pRow);
|
2023-03-23 05:15:14 +00:00
|
|
|
TSDB_CHECK_CODE(code, lino, _exit);
|
|
|
|
|
|
|
|
|
|
_exit:
|
|
|
|
|
if (code) {
|
2023-04-11 06:22:36 +00:00
|
|
|
tsdbError( //
|
|
|
|
|
"vgId:%d failed at line %d since %s", //
|
|
|
|
|
TD_VID(pCommitter->pTsdb->pVnode), //
|
|
|
|
|
lino, //
|
|
|
|
|
tstrerror(code));
|
2023-03-23 05:15:14 +00:00
|
|
|
} else {
|
2023-04-11 06:22:36 +00:00
|
|
|
tsdbTrace("vgId:%d %s done, fid:%d suid:%" PRId64 " uid:%" PRId64 " ts:%" PRId64 " version:%" PRId64, //
|
|
|
|
|
TD_VID(pCommitter->pTsdb->pVnode), //
|
|
|
|
|
__func__, //
|
|
|
|
|
pCommitter->fid, //
|
|
|
|
|
tbid->suid, //
|
|
|
|
|
tbid->uid, //
|
|
|
|
|
TSDBROW_KEY(pRow).ts, //
|
2023-03-23 05:15:14 +00:00
|
|
|
TSDBROW_KEY(pRow).version);
|
|
|
|
|
}
|
2023-03-22 06:41:16 +00:00
|
|
|
return 0;
|
2023-03-20 02:59:16 +00:00
|
|
|
}
|
|
|
|
|
|
2023-03-23 05:15:14 +00:00
|
|
|
static int32_t tsdbCommitWriteDelData(SCommitter *pCommitter, int64_t suid, int64_t uid, int64_t version, int64_t sKey,
|
|
|
|
|
int64_t eKey) {
|
|
|
|
|
int32_t code = 0;
|
|
|
|
|
// TODO
|
|
|
|
|
return code;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-27 08:30:22 +00:00
|
|
|
static int32_t commit_timeseries_data(SCommitter *pCommitter) {
|
2023-03-22 11:24:40 +00:00
|
|
|
int32_t code = 0;
|
|
|
|
|
int32_t lino;
|
|
|
|
|
|
2023-03-23 05:15:14 +00:00
|
|
|
int64_t nRow = 0;
|
2023-03-22 11:24:40 +00:00
|
|
|
SMemTable *pMem = pCommitter->pTsdb->imem;
|
|
|
|
|
|
2023-03-23 05:15:14 +00:00
|
|
|
if (pMem->nRow == 0) { // no time-series data to commit
|
|
|
|
|
goto _exit;
|
|
|
|
|
}
|
2023-03-22 11:24:40 +00:00
|
|
|
|
2023-03-23 05:15:14 +00:00
|
|
|
TSDBKEY from = {.ts = pCommitter->minKey, .version = VERSION_MIN};
|
2023-03-22 11:24:40 +00:00
|
|
|
for (int32_t iTbData = 0; iTbData < taosArrayGetSize(pCommitter->aTbDataP); iTbData++) {
|
|
|
|
|
STbDataIter iter;
|
2023-03-23 05:15:14 +00:00
|
|
|
STbData *pTbData = (STbData *)taosArrayGetP(pCommitter->aTbDataP, iTbData);
|
|
|
|
|
|
2023-03-22 11:24:40 +00:00
|
|
|
tsdbTbDataIterOpen(pTbData, &from, 0, &iter);
|
|
|
|
|
|
|
|
|
|
for (TSDBROW *pRow; (pRow = tsdbTbDataIterGet(&iter)) != NULL; tsdbTbDataIterNext(&iter)) {
|
|
|
|
|
TSDBKEY rowKey = TSDBROW_KEY(pRow);
|
|
|
|
|
|
|
|
|
|
if (rowKey.ts > pCommitter->maxKey) {
|
2023-03-23 05:15:14 +00:00
|
|
|
pCommitter->nextKey = TMIN(pCommitter->nextKey, rowKey.ts);
|
2023-03-22 11:24:40 +00:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-23 08:10:08 +00:00
|
|
|
code = tsdbCommitWriteTSData(pCommitter, (TABLEID *)pTbData, pRow);
|
2023-03-22 11:24:40 +00:00
|
|
|
TSDB_CHECK_CODE(code, lino, _exit);
|
2023-04-11 03:00:35 +00:00
|
|
|
|
|
|
|
|
nRow++;
|
2023-03-22 11:24:40 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_exit:
|
|
|
|
|
if (code) {
|
2023-04-11 03:00:35 +00:00
|
|
|
tsdbError( //
|
|
|
|
|
"vgId:%d %s failed at line %d since %s", //
|
|
|
|
|
TD_VID(pCommitter->pTsdb->pVnode), //
|
|
|
|
|
__func__, //
|
|
|
|
|
lino, //
|
|
|
|
|
tstrerror(code));
|
2023-03-22 11:24:40 +00:00
|
|
|
} else {
|
2023-04-11 03:00:35 +00:00
|
|
|
tsdbDebug( //
|
|
|
|
|
"vgId:%d %s done, fid:%d nRow:%" PRId64, //
|
|
|
|
|
TD_VID(pCommitter->pTsdb->pVnode), //
|
|
|
|
|
__func__, //
|
|
|
|
|
pCommitter->fid, //
|
|
|
|
|
nRow);
|
2023-03-22 11:24:40 +00:00
|
|
|
}
|
|
|
|
|
return code;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-27 08:30:22 +00:00
|
|
|
static int32_t commit_delete_data(SCommitter *pCommitter) {
|
2023-03-22 11:24:40 +00:00
|
|
|
int32_t code = 0;
|
|
|
|
|
int32_t lino;
|
|
|
|
|
|
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-03-22 11:24:40 +00:00
|
|
|
SMemTable *pMem = pCommitter->pTsdb->imem;
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
for (int32_t iTbData = 0; iTbData < taosArrayGetSize(pCommitter->aTbDataP); iTbData++) {
|
|
|
|
|
STbData *pTbData = (STbData *)taosArrayGetP(pCommitter->aTbDataP, iTbData);
|
|
|
|
|
|
|
|
|
|
for (SDelData *pDelData = pTbData->pHead; pDelData; pDelData = pDelData->pNext) {
|
2023-03-23 05:15:14 +00:00
|
|
|
if (pDelData->eKey < pCommitter->minKey) continue;
|
|
|
|
|
if (pDelData->sKey > pCommitter->maxKey) {
|
|
|
|
|
pCommitter->nextKey = TMIN(pCommitter->nextKey, pDelData->sKey);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2023-03-22 11:24:40 +00:00
|
|
|
|
2023-03-23 05:15:14 +00:00
|
|
|
code = tsdbCommitWriteDelData(pCommitter, pTbData->suid, pTbData->uid, pDelData->version,
|
|
|
|
|
pDelData->sKey /* TODO */, pDelData->eKey /* TODO */);
|
2023-03-22 11:24:40 +00:00
|
|
|
TSDB_CHECK_CODE(code, lino, _exit);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_exit:
|
|
|
|
|
if (code) {
|
|
|
|
|
tsdbError("vgId:%d failed at line %d since %s", TD_VID(pCommitter->pTsdb->pVnode), lino, tstrerror(code));
|
|
|
|
|
} else {
|
|
|
|
|
tsdbDebug("vgId:%d %s done, fid:%d nDel:%" PRId64, TD_VID(pCommitter->pTsdb->pVnode), __func__, pCommitter->fid,
|
|
|
|
|
pMem->nDel);
|
|
|
|
|
}
|
|
|
|
|
return code;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-27 08:30:22 +00:00
|
|
|
static int32_t start_commit_file_set(SCommitter *pCommitter) {
|
2023-03-22 11:24:40 +00:00
|
|
|
pCommitter->fid = tsdbKeyFid(pCommitter->nextKey, pCommitter->minutes, pCommitter->precision);
|
|
|
|
|
tsdbFidKeyRange(pCommitter->fid, pCommitter->minutes, pCommitter->precision, &pCommitter->minKey,
|
|
|
|
|
&pCommitter->maxKey);
|
|
|
|
|
pCommitter->expLevel = tsdbFidLevel(pCommitter->fid, &pCommitter->pTsdb->keepCfg, taosGetTimestampSec());
|
2023-03-23 05:26:57 +00:00
|
|
|
pCommitter->nextKey = TSKEY_MAX;
|
2023-03-22 11:24:40 +00:00
|
|
|
|
2023-04-11 06:22:36 +00:00
|
|
|
pCommitter->pFileSet = NULL; // TODO: need to search the file system
|
|
|
|
|
|
2023-04-11 03:00:35 +00:00
|
|
|
tsdbDebug( //
|
|
|
|
|
"vgId:%d %s done, fid:%d minKey:%" PRId64 " maxKey:%" PRId64 " expLevel:%d", //
|
|
|
|
|
TD_VID(pCommitter->pTsdb->pVnode), //
|
|
|
|
|
__func__, //
|
|
|
|
|
pCommitter->fid, //
|
|
|
|
|
pCommitter->minKey, //
|
|
|
|
|
pCommitter->maxKey, //
|
|
|
|
|
pCommitter->expLevel);
|
2023-03-23 08:10:08 +00:00
|
|
|
return 0;
|
2023-03-20 02:59:16 +00:00
|
|
|
}
|
|
|
|
|
|
2023-03-27 08:30:22 +00:00
|
|
|
static int32_t end_commit_file_set(SCommitter *pCommitter) {
|
2023-03-22 11:24:40 +00:00
|
|
|
int32_t code = 0;
|
2023-04-11 06:22:36 +00:00
|
|
|
int32_t lino;
|
2023-03-22 11:24:40 +00:00
|
|
|
|
2023-04-11 06:22:36 +00:00
|
|
|
if (pCommitter->pWriter == NULL) return 0;
|
|
|
|
|
|
2023-05-10 06:54:13 +00:00
|
|
|
struct STFileOp *pFileOp = taosArrayReserve(pCommitter->aFileOp, 1);
|
2023-04-11 06:22:36 +00:00
|
|
|
if (pFileOp == NULL) {
|
|
|
|
|
code = TSDB_CODE_OUT_OF_MEMORY;
|
|
|
|
|
TSDB_CHECK_CODE(code, lino, _exit);
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-11 07:01:42 +00:00
|
|
|
TSDB_CHECK_CODE( //
|
|
|
|
|
code = tsdbSttFWriterClose( //
|
|
|
|
|
&pCommitter->pWriter, //
|
|
|
|
|
0, //
|
|
|
|
|
pFileOp), //
|
|
|
|
|
lino, //
|
|
|
|
|
_exit);
|
2023-03-22 11:24:40 +00:00
|
|
|
|
|
|
|
|
_exit:
|
|
|
|
|
if (code) {
|
2023-04-11 07:01:42 +00:00
|
|
|
tsdbError( //
|
|
|
|
|
"vgId:%d failed at line %d since %s", //
|
|
|
|
|
TD_VID(pCommitter->pTsdb->pVnode), //
|
|
|
|
|
lino, //
|
|
|
|
|
tstrerror(code));
|
2023-04-11 06:22:36 +00:00
|
|
|
} else {
|
2023-04-11 07:01:42 +00:00
|
|
|
tsdbDebug( //
|
|
|
|
|
"vgId:%d %s done, fid:%d", //
|
|
|
|
|
TD_VID(pCommitter->pTsdb->pVnode), //
|
|
|
|
|
__func__, //
|
|
|
|
|
pCommitter->fid);
|
2023-03-22 11:24:40 +00:00
|
|
|
}
|
|
|
|
|
return code;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-27 08:30:22 +00:00
|
|
|
static int32_t commit_next_file_set(SCommitter *pCommitter) {
|
2023-03-20 02:59:16 +00:00
|
|
|
int32_t code = 0;
|
|
|
|
|
int32_t lino = 0;
|
|
|
|
|
|
2023-03-22 11:24:40 +00:00
|
|
|
// fset commit start
|
2023-03-27 08:30:22 +00:00
|
|
|
code = start_commit_file_set(pCommitter);
|
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-03-27 08:30:22 +00:00
|
|
|
code = commit_timeseries_data(pCommitter);
|
2023-03-20 02:59:16 +00:00
|
|
|
TSDB_CHECK_CODE(code, lino, _exit);
|
|
|
|
|
|
2023-04-11 03:00:35 +00:00
|
|
|
/* TODO
|
2023-03-27 08:30:22 +00:00
|
|
|
code = commit_delete_data(pCommitter);
|
2023-03-22 11:24:40 +00:00
|
|
|
TSDB_CHECK_CODE(code, lino, _exit);
|
2023-04-11 03:00:35 +00:00
|
|
|
*/
|
2023-03-22 11:24:40 +00:00
|
|
|
|
|
|
|
|
// fset commit end
|
2023-03-27 08:30:22 +00:00
|
|
|
code = end_commit_file_set(pCommitter);
|
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-04-11 07:01:42 +00:00
|
|
|
tsdbError( //
|
|
|
|
|
"vgId:%d %s failed at line %d since %s", //
|
|
|
|
|
TD_VID(pCommitter->pTsdb->pVnode), //
|
|
|
|
|
__func__, //
|
|
|
|
|
lino, //
|
|
|
|
|
tstrerror(code));
|
2023-03-20 02:59:16 +00:00
|
|
|
}
|
|
|
|
|
return code;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-27 08:30:22 +00:00
|
|
|
static int32_t open_committer(STsdb *pTsdb, SCommitInfo *pInfo, SCommitter *pCommitter) {
|
2023-03-20 02:59:16 +00:00
|
|
|
int32_t code = 0;
|
2023-03-23 08:10:08 +00:00
|
|
|
int32_t lino;
|
2023-03-20 02:59:16 +00:00
|
|
|
|
2023-03-23 08:10:08 +00:00
|
|
|
// set config
|
2023-03-22 06:41:16 +00:00
|
|
|
memset(pCommitter, 0, sizeof(SCommitter));
|
|
|
|
|
pCommitter->pTsdb = pTsdb;
|
2023-03-23 08:10:08 +00:00
|
|
|
pCommitter->minutes = pTsdb->keepCfg.days;
|
|
|
|
|
pCommitter->precision = pTsdb->keepCfg.precision;
|
|
|
|
|
pCommitter->minRow = pInfo->info.config.tsdbCfg.minRows;
|
|
|
|
|
pCommitter->maxRow = pInfo->info.config.tsdbCfg.maxRows;
|
|
|
|
|
pCommitter->cmprAlg = pInfo->info.config.tsdbCfg.compression;
|
2023-05-10 06:54:13 +00:00
|
|
|
pCommitter->sttTrigger = 2; // TODO
|
2023-03-23 08:10:08 +00:00
|
|
|
|
|
|
|
|
pCommitter->aTbDataP = tsdbMemTableGetTbDataArray(pTsdb->imem);
|
2023-05-10 06:54:13 +00:00
|
|
|
pCommitter->aFileOp = taosArrayInit(16, sizeof(STFileOp));
|
|
|
|
|
if (pCommitter->aTbDataP == NULL || pCommitter->aFileOp == NULL) {
|
|
|
|
|
taosArrayDestroy(pCommitter->aTbDataP);
|
|
|
|
|
taosArrayDestroy(pCommitter->aFileOp);
|
|
|
|
|
TSDB_CHECK_CODE(code = TSDB_CODE_OUT_OF_MEMORY, lino, _exit);
|
2023-04-06 06:27:18 +00:00
|
|
|
}
|
2023-03-20 02:59:16 +00:00
|
|
|
|
2023-03-23 08:10:08 +00:00
|
|
|
// start loop
|
|
|
|
|
pCommitter->nextKey = pTsdb->imem->minKey; // TODO
|
2023-03-20 02:59:16 +00:00
|
|
|
|
|
|
|
|
_exit:
|
|
|
|
|
if (code) {
|
2023-05-10 06:54:13 +00:00
|
|
|
tsdbError("vgId:%d %s failed at line %d since %s", TD_VID(pTsdb->pVnode), __func__, lino, tstrerror(code));
|
2023-03-20 02:59:16 +00:00
|
|
|
} else {
|
2023-05-10 06:54:13 +00:00
|
|
|
tsdbDebug("vgId:%d %s done", TD_VID(pTsdb->pVnode), __func__);
|
2023-03-20 02:59:16 +00:00
|
|
|
}
|
|
|
|
|
return code;
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-27 08:30:22 +00:00
|
|
|
static int32_t close_committer(SCommitter *pCommiter, int32_t eno) {
|
2023-03-20 02:59:16 +00:00
|
|
|
int32_t code = 0;
|
2023-04-06 06:27:18 +00:00
|
|
|
int32_t lino;
|
|
|
|
|
|
2023-04-11 07:34:40 +00:00
|
|
|
if (eno == 0) {
|
2023-05-09 06:50:37 +00:00
|
|
|
TSDB_CHECK_CODE( //
|
|
|
|
|
code = tsdbFSEditBegin( //
|
|
|
|
|
pCommiter->pTsdb->pFS, //
|
|
|
|
|
pCommiter->aFileOp, //
|
|
|
|
|
TSDB_FEDIT_COMMIT),
|
2023-04-11 07:34:40 +00:00
|
|
|
lino, //
|
|
|
|
|
_exit);
|
|
|
|
|
} else {
|
|
|
|
|
ASSERTS(0, "TODO: Not implemented yet");
|
|
|
|
|
}
|
2023-04-06 06:27:18 +00:00
|
|
|
|
2023-04-12 07:18:12 +00:00
|
|
|
// TODO: clear the committer
|
|
|
|
|
|
2023-04-06 06:27:18 +00:00
|
|
|
_exit:
|
2023-04-11 07:34:40 +00:00
|
|
|
if (code) {
|
|
|
|
|
tsdbError( //
|
|
|
|
|
"vgId:%d %s failed at line %d since %s", //
|
|
|
|
|
TD_VID(pCommiter->pTsdb->pVnode), //
|
|
|
|
|
__func__, //
|
|
|
|
|
lino, //
|
|
|
|
|
tstrerror(code));
|
|
|
|
|
} else {
|
|
|
|
|
tsdbDebug( //
|
|
|
|
|
"vgId:%d %s done", //
|
|
|
|
|
TD_VID(pCommiter->pTsdb->pVnode), //
|
|
|
|
|
__func__);
|
|
|
|
|
}
|
2023-03-20 02:59:16 +00:00
|
|
|
return code;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int32_t tsdbPreCommit(STsdb *pTsdb) {
|
|
|
|
|
taosThreadRwlockWrlock(&pTsdb->rwLock);
|
|
|
|
|
ASSERT(pTsdb->imem == NULL);
|
|
|
|
|
pTsdb->imem = pTsdb->mem;
|
|
|
|
|
pTsdb->mem = NULL;
|
|
|
|
|
taosThreadRwlockUnlock(&pTsdb->rwLock);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int32_t tsdbCommitBegin(STsdb *pTsdb, SCommitInfo *pInfo) {
|
|
|
|
|
if (!pTsdb) return 0;
|
|
|
|
|
|
|
|
|
|
int32_t code = 0;
|
|
|
|
|
int32_t lino = 0;
|
2023-03-22 06:41:16 +00:00
|
|
|
SMemTable *pMem = pTsdb->imem;
|
2023-03-20 02:59:16 +00:00
|
|
|
|
2023-03-22 06:41:16 +00:00
|
|
|
if (pMem->nRow == 0 && pMem->nDel == 0) {
|
2023-03-20 02:59:16 +00:00
|
|
|
taosThreadRwlockWrlock(&pTsdb->rwLock);
|
|
|
|
|
pTsdb->imem = NULL;
|
|
|
|
|
taosThreadRwlockUnlock(&pTsdb->rwLock);
|
2023-03-22 06:41:16 +00:00
|
|
|
tsdbUnrefMemTable(pMem, NULL, true);
|
|
|
|
|
} else {
|
|
|
|
|
SCommitter committer;
|
2023-03-20 02:59:16 +00:00
|
|
|
|
2023-03-27 08:30:22 +00:00
|
|
|
code = open_committer(pTsdb, pInfo, &committer);
|
2023-03-22 06:41:16 +00:00
|
|
|
TSDB_CHECK_CODE(code, lino, _exit);
|
2023-03-20 02:59:16 +00:00
|
|
|
|
2023-03-23 05:26:57 +00:00
|
|
|
while (committer.nextKey != TSKEY_MAX) {
|
2023-03-27 08:30:22 +00:00
|
|
|
code = commit_next_file_set(&committer);
|
2023-03-23 05:26:57 +00:00
|
|
|
if (code) break;
|
2023-03-22 06:41:16 +00:00
|
|
|
}
|
2023-03-20 02:59:16 +00:00
|
|
|
|
2023-03-27 08:30:22 +00:00
|
|
|
code = close_committer(&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-10 06:54:13 +00:00
|
|
|
tsdbError("vgId:%d %s failed at line %d since %s", TD_VID(pTsdb->pVnode), __func__, lino, tstrerror(code));
|
2023-03-22 06:41:16 +00:00
|
|
|
} else {
|
2023-05-10 06:54:13 +00:00
|
|
|
tsdbInfo("vgId:%d %s done, nRow:%" PRId64 " nDel:%" PRId64, TD_VID(pTsdb->pVnode), __func__, pMem->nRow,
|
2023-03-22 06:41:16 +00:00
|
|
|
pMem->nDel);
|
2023-03-20 02:59:16 +00:00
|
|
|
}
|
|
|
|
|
return code;
|
|
|
|
|
}
|
|
|
|
|
|
2023-04-10 09:52:51 +00:00
|
|
|
int32_t tsdbCommitCommit(STsdb *pTsdb) {
|
|
|
|
|
int32_t code = 0;
|
|
|
|
|
int32_t lino = 0;
|
|
|
|
|
SMemTable *pMemTable = pTsdb->imem;
|
|
|
|
|
|
|
|
|
|
// lock
|
|
|
|
|
taosThreadRwlockWrlock(&pTsdb->rwLock);
|
|
|
|
|
|
2023-05-09 08:46:23 +00:00
|
|
|
code = tsdbFSEditCommit(pTsdb->pFS);
|
2023-04-10 09:52:51 +00:00
|
|
|
if (code) {
|
|
|
|
|
taosThreadRwlockUnlock(&pTsdb->rwLock);
|
|
|
|
|
TSDB_CHECK_CODE(code, lino, _exit);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pTsdb->imem = NULL;
|
|
|
|
|
|
|
|
|
|
// unlock
|
|
|
|
|
taosThreadRwlockUnlock(&pTsdb->rwLock);
|
|
|
|
|
if (pMemTable) {
|
|
|
|
|
tsdbUnrefMemTable(pMemTable, NULL, true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_exit:
|
|
|
|
|
if (code) {
|
|
|
|
|
tsdbError("vgId:%d, %s failed at line %d since %s", //
|
|
|
|
|
TD_VID(pTsdb->pVnode), //
|
|
|
|
|
__func__, //
|
|
|
|
|
lino, //
|
|
|
|
|
tstrerror(code));
|
|
|
|
|
} else {
|
|
|
|
|
tsdbInfo("vgId:%d %s done", //
|
|
|
|
|
TD_VID(pTsdb->pVnode), __func__);
|
|
|
|
|
}
|
|
|
|
|
return code;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int32_t tsdbCommitAbort(STsdb *pTsdb) {
|
|
|
|
|
int32_t code = 0;
|
|
|
|
|
int32_t lino = 0;
|
|
|
|
|
|
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) {
|
|
|
|
|
tsdbError("vgId:%d, %s failed at line %d since %s", //
|
|
|
|
|
TD_VID(pTsdb->pVnode), //
|
|
|
|
|
__func__, //
|
|
|
|
|
lino, //
|
|
|
|
|
tstrerror(code));
|
|
|
|
|
} else {
|
|
|
|
|
tsdbInfo("vgId:%d %s done", //
|
|
|
|
|
TD_VID(pTsdb->pVnode), //
|
|
|
|
|
__func__);
|
|
|
|
|
}
|
|
|
|
|
return code;
|
|
|
|
|
}
|