Merge branch 'feature/linux' of https://github.com/taosdata/TDengine into feature/linux
This commit is contained in:
commit
692feec607
|
@ -216,11 +216,13 @@ void *tsdbAllocBytes(STsdbRepo *pRepo, int bytes) {
|
|||
}
|
||||
|
||||
int tsdbAsyncCommit(STsdbRepo *pRepo) {
|
||||
if (pRepo->mem == NULL) return 0;
|
||||
|
||||
tsem_wait(&(pRepo->readyToCommit));
|
||||
|
||||
ASSERT(pRepo->imem == NULL);
|
||||
if (pRepo->mem == NULL) {
|
||||
tsem_post(&(pRepo->readyToCommit));
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (pRepo->code != TSDB_CODE_SUCCESS) {
|
||||
tsdbWarn("vgId:%d try to commit when TSDB not in good state: %s", REPO_ID(pRepo), tstrerror(terrno));
|
||||
|
|
|
@ -85,6 +85,7 @@ int32_t tsdbSyncRecv(void *tsdb, SOCKET socketFd) {
|
|||
pRepo->state = TSDB_STATE_OK;
|
||||
|
||||
tsdbInitSyncH(&synch, pRepo, socketFd);
|
||||
tsem_wait(&(pRepo->readyToCommit));
|
||||
tsdbStartFSTxn(pRepo, 0, 0);
|
||||
|
||||
if (tsdbSyncRecvMeta(&synch) < 0) {
|
||||
|
@ -98,6 +99,7 @@ int32_t tsdbSyncRecv(void *tsdb, SOCKET socketFd) {
|
|||
}
|
||||
|
||||
tsdbEndFSTxn(pRepo);
|
||||
tsem_post(&(pRepo->readyToCommit));
|
||||
tsdbDestroySyncH(&synch);
|
||||
|
||||
// Reload file change
|
||||
|
@ -107,6 +109,7 @@ int32_t tsdbSyncRecv(void *tsdb, SOCKET socketFd) {
|
|||
|
||||
_err:
|
||||
tsdbEndFSTxnWithError(REPO_FS(pRepo));
|
||||
tsem_post(&(pRepo->readyToCommit));
|
||||
tsdbDestroySyncH(&synch);
|
||||
return -1;
|
||||
}
|
||||
|
|
|
@ -204,7 +204,7 @@ void *taosAcquireRef(int rsetId, int64_t rid)
|
|||
void *p = NULL;
|
||||
|
||||
if (rsetId < 0 || rsetId >= TSDB_REF_OBJECTS) {
|
||||
uTrace("rsetId:%d rid:%" PRId64 " failed to acquire, rsetId not valid", rsetId, rid);
|
||||
//uTrace("rsetId:%d rid:%" PRId64 " failed to acquire, rsetId not valid", rsetId, rid);
|
||||
terrno = TSDB_CODE_REF_INVALID_ID;
|
||||
return NULL;
|
||||
}
|
||||
|
|
|
@ -194,12 +194,14 @@ int32_t vnodeOpen(int32_t vgId) {
|
|||
|
||||
int32_t code = vnodeReadCfg(pVnode);
|
||||
if (code != TSDB_CODE_SUCCESS) {
|
||||
vError("vgId:%d, failed to read config file, set cfgVersion to 0", pVnode->vgId);
|
||||
vnodeCleanUp(pVnode);
|
||||
return code;
|
||||
return 0;
|
||||
}
|
||||
|
||||
code = vnodeReadVersion(pVnode);
|
||||
if (code != TSDB_CODE_SUCCESS) {
|
||||
pVnode->version = 0;
|
||||
vError("vgId:%d, failed to read file version, generate it from data file", pVnode->vgId);
|
||||
// Allow vnode start even when read file version fails, set file version as wal version or zero
|
||||
// vnodeCleanUp(pVnode);
|
||||
|
|
Loading…
Reference in New Issue