fix(stream): fix the counter.
This commit is contained in:
parent
f951635602
commit
e013ba6795
|
@ -1868,19 +1868,28 @@ int32_t tqProcessTaskUpdateReq(STQ* pTq, SRpcMsg* pMsg) {
|
||||||
streamTaskStop(pTask);
|
streamTaskStop(pTask);
|
||||||
tqDebug("s-task:%s task nodeEp update completed", pTask->id.idStr);
|
tqDebug("s-task:%s task nodeEp update completed", pTask->id.idStr);
|
||||||
|
|
||||||
bool allStopped = true;
|
pMeta->closedTask += 1;
|
||||||
int32_t numOfCount = streamMetaGetNumOfTasks(pMeta);
|
|
||||||
for(int32_t i = 0; i < numOfCount; ++i) {
|
|
||||||
SStreamId* pId = taosArrayGet(pMeta->pTaskList, i);
|
|
||||||
|
|
||||||
int64_t keys1[2] = {pId->streamId, pId->taskId};
|
int32_t numOfTasks = streamMetaGetNumOfTasks(pMeta);
|
||||||
SStreamTask* p = taosHashGet(pMeta->pTasks, keys1, sizeof(keys1));
|
bool allStopped = (pMeta->closedTask == numOfTasks);
|
||||||
if (p->status.taskStatus != TASK_STATUS__STOP) {
|
if (allStopped) {
|
||||||
allStopped = false;
|
pMeta->closedTask = 0;
|
||||||
tqDebug("vgId:%d, s-task:0x%"PRIx64"-0x%x not updated yet", vgId, keys1[0], pId->taskId);
|
} else {
|
||||||
break;
|
tqDebug("vgId:%d closed tasks:%d, not closed:%d", vgId, pMeta->closedTask, (numOfTasks - pMeta->closedTask));
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
// bool allStopped = true;
|
||||||
|
// int32_t numOfCount = streamMetaGetNumOfTasks(pMeta);
|
||||||
|
// for(int32_t i = 0; i < numOfCount; ++i) {
|
||||||
|
// SStreamId* pId = taosArrayGet(pMeta->pTaskList, i);
|
||||||
|
//
|
||||||
|
// int64_t keys1[2] = {pId->streamId, pId->taskId};
|
||||||
|
// SStreamTask** p = taosHashGet(pMeta->pTasks, keys1, sizeof(keys1));
|
||||||
|
// if ((*p)->status.taskStatus != TASK_STATUS__STOP) {
|
||||||
|
// allStopped = false;
|
||||||
|
// tqDebug("vgId:%d, s-task:0x%"PRIx64"-0x%x not updated yet", vgId, keys1[0], pId->taskId);
|
||||||
|
// break;
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
|
||||||
taosWUnLockLatch(&pMeta->lock);
|
taosWUnLockLatch(&pMeta->lock);
|
||||||
|
|
||||||
|
@ -1888,6 +1897,7 @@ _end:
|
||||||
tDecoderClear(&decoder);
|
tDecoderClear(&decoder);
|
||||||
|
|
||||||
if (allStopped) {
|
if (allStopped) {
|
||||||
|
|
||||||
if (!pTq->pVnode->restored) {
|
if (!pTq->pVnode->restored) {
|
||||||
tqDebug("vgId:%d vnode restore not completed, not restart the tasks", vgId);
|
tqDebug("vgId:%d vnode restore not completed, not restart the tasks", vgId);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue