• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

taosdata / TDengine / #4935

22 Jan 2026 06:38AM UTC coverage: 66.708% (+0.02%) from 66.691%
#4935

push

travis-ci

web-flow
merge: from main to 3.0 #34371

121 of 271 new or added lines in 17 files covered. (44.65%)

9066 existing lines in 149 files now uncovered.

203884 of 305637 relevant lines covered (66.71%)

125811266.68 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

40.0
/source/dnode/qnode/src/qnode.c
1
/*
2
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
3
 *
4
 * This program is free software: you can use, redistribute, and/or modify
5
 * it under the terms of the GNU Affero General Public License, version 3
6
 * or later ("AGPL"), as published by the Free Software Foundation.
7
 *
8
 * This program is distributed in the hope that it will be useful, but WITHOUT
9
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10
 * FITNESS FOR A PARTICULAR PURPOSE.
11
 *
12
 * You should have received a copy of the GNU Affero General Public License
13
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
14
 */
15

16
#include "tqueue.h"
17

18
#include "executor.h"
19
#include "qndInt.h"
20
#include "query.h"
21
#include "qworker.h"
22

23
int32_t qndOpen(const SQnodeOpt *pOption, SQnode **pQnode) {
4,298✔
24
  *pQnode = taosMemoryCalloc(1, sizeof(SQnode));
4,298✔
25
  if (NULL == *pQnode) {
4,298✔
26
    qError("calloc SQnode failed");
×
27
    return terrno;
×
28
  }
29
  (*pQnode)->qndId = QNODE_HANDLE;
4,298✔
30

31
  int32_t code = qWorkerInit(NODE_TYPE_QNODE, (*pQnode)->qndId, (void **)&(*pQnode)->pQuery, &pOption->msgCb);
4,298✔
32
  if (TSDB_CODE_SUCCESS != code) {
4,298✔
33
    taosMemoryFreeClear(pQnode);
×
34
    return code;
×
35
  }
36

37
  (*pQnode)->msgCb = pOption->msgCb;
4,298✔
38
  return TSDB_CODE_SUCCESS;
4,298✔
39
}
40

41
void qndClose(SQnode *pQnode) {
4,298✔
42
  qWorkerDestroy((void **)&pQnode->pQuery);
4,298✔
43
  taosMemoryFree(pQnode);
4,298✔
44
}
4,298✔
45

46
int32_t qndGetLoad(SQnode *pQnode, SQnodeLoad *pLoad) {
87,897✔
47
  SReadHandle  handle = {.pMsgCb = &pQnode->msgCb};
87,897✔
48
  SQWorkerStat stat = {0};
87,897✔
49

50
  int32_t code = qWorkerGetStat(&handle, pQnode->pQuery, &stat);
87,897✔
51
  if (code) {
87,897✔
52
    return code;
×
53
  }
54

55
  pLoad->numOfQueryInQueue = stat.numOfQueryInQueue;
87,897✔
56
  pLoad->numOfFetchInQueue = stat.numOfFetchInQueue;
87,897✔
57
  pLoad->timeInQueryQueue = stat.timeInQueryQueue;
87,897✔
58
  pLoad->timeInFetchQueue = stat.timeInFetchQueue;
87,897✔
59
  pLoad->cacheDataSize = stat.cacheDataSize;
87,897✔
60
  pLoad->numOfProcessedQuery = stat.queryProcessed;
87,897✔
61
  pLoad->numOfProcessedCQuery = stat.cqueryProcessed;
87,897✔
62
  pLoad->numOfProcessedFetch = stat.fetchProcessed;
87,897✔
63
  pLoad->numOfProcessedDrop = stat.dropProcessed;
87,897✔
64
  pLoad->numOfProcessedNotify = stat.notifyProcessed;
87,897✔
65
  pLoad->numOfProcessedHb = stat.hbProcessed;
87,897✔
66
  pLoad->numOfProcessedDelete = stat.deleteProcessed;
87,897✔
67

68
  return 0;
87,897✔
69
}
70

UNCOV
71
int32_t qndPreprocessQueryMsg(SQnode *pQnode, SRpcMsg *pMsg) {
×
UNCOV
72
  int32_t qType = 0;
×
UNCOV
73
  if (TDMT_SCH_QUERY != pMsg->msgType && TDMT_SCH_MERGE_QUERY != pMsg->msgType) {
×
74
    return 0;
×
75
  }
76

UNCOV
77
  return qWorkerPreprocessQueryMsg(pQnode->pQuery, pMsg, false, &qType);
×
78
}
79

UNCOV
80
int32_t qndProcessQueryMsg(SQnode *pQnode, SQueueInfo *pInfo, SRpcMsg *pMsg) {
×
UNCOV
81
  int32_t     code = -1;
×
UNCOV
82
  int64_t     ts = pInfo->timestamp;
×
UNCOV
83
  SReadHandle handle = {0};
×
UNCOV
84
  handle.pMsgCb = &pQnode->msgCb;
×
UNCOV
85
  handle.pWorkerCb = pInfo->workerCb;
×
86
  
UNCOV
87
  const STraceId *trace = &pMsg->info.traceId;
×
UNCOV
88
  qDebug("qnodeId:%d, msg:%s, %p in qnode queue is processing, %" PRIx64 ":%" PRIx64, 
×
89
    pQnode->qndId, TMSG_INFO(pMsg->msgType), pMsg, TRACE_GET_ROOTID(trace), TRACE_GET_MSGID(trace));
90

UNCOV
91
  switch (pMsg->msgType) {
×
UNCOV
92
    case TDMT_SCH_QUERY:
×
93
    case TDMT_SCH_MERGE_QUERY:
94
      code = qWorkerProcessQueryMsg(&handle, pQnode->pQuery, pMsg, ts);
×
95
      break;
×
UNCOV
96
    case TDMT_SCH_QUERY_CONTINUE:
×
UNCOV
97
      code = qWorkerProcessCQueryMsg(&handle, pQnode->pQuery, pMsg, ts);
×
UNCOV
98
      break;
×
UNCOV
99
    case TDMT_SCH_FETCH:
×
100
    case TDMT_SCH_MERGE_FETCH:
UNCOV
101
      code = qWorkerProcessFetchMsg(pQnode, pQnode->pQuery, pMsg, ts);
×
102
      break;
×
UNCOV
103
    case TDMT_SCH_CANCEL_TASK:
×
104
      // code = qWorkerProcessCancelMsg(pQnode, pQnode->pQuery, pMsg, ts);
UNCOV
105
      break;
×
UNCOV
106
    case TDMT_SCH_DROP_TASK:
×
UNCOV
107
      code = qWorkerProcessDropMsg(pQnode, pQnode->pQuery, pMsg, ts);
×
UNCOV
108
      break;
×
UNCOV
109
    case TDMT_VND_TMQ_CONSUME:
×
110
      // code =  tqProcessConsumeReq(pQnode->pTq, pMsg);
111
      // break;
112
    case TDMT_SCH_QUERY_HEARTBEAT:
113
      code = qWorkerProcessHbMsg(pQnode, pQnode->pQuery, pMsg, ts);
×
114
      break;
×
115
    case TDMT_SCH_TASK_NOTIFY:
×
116
      code = qWorkerProcessNotifyMsg(pQnode, pQnode->pQuery, pMsg, ts);
×
117
      break;
×
UNCOV
118
    default:
×
UNCOV
119
      qError("unknown msg type:%d in qnode queue", pMsg->msgType);
×
UNCOV
120
      terrno = TSDB_CODE_APP_ERROR;
×
121
  }
122

123
  if (code == 0) {
×
UNCOV
124
    return TSDB_CODE_ACTION_IN_PROGRESS;
×
125
  } else {
UNCOV
126
    return code;
×
127
  }
128
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc