151 lines
4.0 KiB
C
151 lines
4.0 KiB
C
/*
|
|
* 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/>.
|
|
*/
|
|
|
|
#include "sma.h"
|
|
|
|
static int32_t tdProcessRSmaPreCommitImpl(SSma *pSma);
|
|
static int32_t tdProcessRSmaCommitImpl(SSma *pSma);
|
|
static int32_t tdProcessRSmaPostCommitImpl(SSma *pSma);
|
|
|
|
/**
|
|
* @brief Only applicable to Rollup SMA
|
|
*
|
|
* @param pSma
|
|
* @return int32_t
|
|
*/
|
|
int32_t smaPreCommit(SSma *pSma) { return tdProcessRSmaPreCommitImpl(pSma); }
|
|
|
|
/**
|
|
* @brief Only applicable to Rollup SMA
|
|
*
|
|
* @param pSma
|
|
* @return int32_t
|
|
*/
|
|
int32_t smaCommit(SSma *pSma) { return tdProcessRSmaCommitImpl(pSma); }
|
|
|
|
/**
|
|
* @brief Only applicable to Rollup SMA
|
|
*
|
|
* @param pSma
|
|
* @return int32_t
|
|
*/
|
|
int32_t smaPostCommit(SSma *pSma) { return tdProcessRSmaPostCommitImpl(pSma); }
|
|
|
|
/**
|
|
* @brief pre-commit for rollup sma.
|
|
* 1) set trigger stat of rsma timer TASK_TRIGGER_STAT_PAUSED.
|
|
* 2) perform persist task for qTaskInfo
|
|
* 3) wait all triggered fetch tasks finished
|
|
* 4) set trigger stat of rsma timer TASK_TRIGGER_STAT_ACTIVE.
|
|
* 5) finish
|
|
*
|
|
* @param pSma
|
|
* @return int32_t
|
|
*/
|
|
static int32_t tdProcessRSmaPreCommitImpl(SSma *pSma) {
|
|
SSmaEnv *pSmaEnv = SMA_RSMA_ENV(pSma);
|
|
if (!pSmaEnv) {
|
|
return TSDB_CODE_SUCCESS;
|
|
}
|
|
|
|
SSmaStat *pStat = SMA_ENV_STAT(pSmaEnv);
|
|
SRSmaStat *pRSmaStat = SMA_RSMA_STAT(pStat);
|
|
|
|
// step 1
|
|
atomic_store_8(RSMA_TRIGGER_STAT(pRSmaStat), TASK_TRIGGER_STAT_PAUSED);
|
|
|
|
// step 2
|
|
|
|
return TSDB_CODE_SUCCESS;
|
|
}
|
|
|
|
/**
|
|
* @brief commit for rollup sma
|
|
*
|
|
* @param pSma
|
|
* @return int32_t
|
|
*/
|
|
static int32_t tdProcessRSmaCommitImpl(SSma *pSma) {
|
|
SSmaEnv *pSmaEnv = SMA_RSMA_ENV(pSma);
|
|
if (!pSmaEnv) {
|
|
return TSDB_CODE_SUCCESS;
|
|
}
|
|
return TSDB_CODE_SUCCESS;
|
|
}
|
|
|
|
/**
|
|
* @brief post-commit for rollup sma
|
|
* 1) clean up the outdated qtaskinfo files
|
|
*
|
|
* @param pSma
|
|
* @return int32_t
|
|
*/
|
|
static int32_t tdProcessRSmaPostCommitImpl(SSma *pSma) {
|
|
SVnode *pVnode = pSma->pVnode;
|
|
|
|
if (!VND_IS_RSMA(pVnode)) {
|
|
return TSDB_CODE_SUCCESS;
|
|
}
|
|
|
|
int64_t committed = pVnode->state.committed;
|
|
TdDirPtr pDir = NULL;
|
|
TdDirEntryPtr pDirEntry = NULL;
|
|
char dir[TSDB_FILENAME_LEN];
|
|
char bname[TSDB_FILENAME_LEN];
|
|
const char *pattern = "^v[0-9]+qtaskinfo\\.ver([0-9]+)?$";
|
|
regex_t regex;
|
|
|
|
tdGetVndDirName(TD_VID(pVnode), VNODE_RSMA_DIR, dir);
|
|
|
|
// Resource allocation and init
|
|
regcomp(®ex, pattern, REG_EXTENDED);
|
|
|
|
if ((pDir = taosOpenDir(dir)) == NULL) {
|
|
terrno = TAOS_SYSTEM_ERROR(errno);
|
|
smaWarn("rsma post-commit open dir %s failed since %s", dir, terrstr());
|
|
return TSDB_CODE_FAILED;
|
|
}
|
|
|
|
regmatch_t regMatch[2];
|
|
while ((pDirEntry = taosReadDir(pDir)) != NULL) {
|
|
char *entryName = taosGetDirEntryName(pDirEntry);
|
|
if (!entryName) {
|
|
continue;
|
|
}
|
|
char *fileName = taosDirEntryBaseName(entryName);
|
|
int code = regexec(®ex, bname, 2, regMatch, 0);
|
|
|
|
if (code == 0) {
|
|
// match
|
|
printf("match 0 = %s\n", (char *)POINTER_SHIFT(fileName, regMatch[0].rm_so));
|
|
printf("match 1 = %s\n", (char *)POINTER_SHIFT(fileName, regMatch[1].rm_so));
|
|
} else if (code == REG_NOMATCH) {
|
|
// not match
|
|
smaInfo("rsma post-commit not match %s", fileName);
|
|
continue;
|
|
} else {
|
|
// has other error
|
|
terrno = TAOS_SYSTEM_ERROR(code);
|
|
smaWarn("rsma post-commit regexec failed since %s", terrstr());
|
|
|
|
taosCloseDir(&pDir);
|
|
regfree(®ex);
|
|
return TSDB_CODE_FAILED;
|
|
}
|
|
}
|
|
taosCloseDir(&pDir);
|
|
return TSDB_CODE_SUCCESS;
|
|
}
|