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

taosdata / TDengine / #5028

20 Apr 2026 09:07AM UTC coverage: 72.986% (-0.01%) from 72.996%
#5028

push

travis-ci

web-flow
perf: optimize compact progress query from O(m*n) to O(n+m) (#35115)

104 of 141 new or added lines in 4 files covered. (73.76%)

5170 existing lines in 133 files now uncovered.

273777 of 375111 relevant lines covered (72.99%)

130458474.51 hits per line

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

82.93
/source/libs/executor/src/querytask.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 "filter.h"
17
#include "function.h"
18
#include "functionMgt.h"
19
#include "os.h"
20
#include "querynodes.h"
21
#include "tfill.h"
22
#include "tname.h"
23

24
#include "tdatablock.h"
25
#include "tmsg.h"
26
#include "streamMsg.h"
27

28
#include "executorInt.h"
29
#include "index.h"
30
#include "operator.h"
31
#include "query.h"
32
#include "querytask.h"
33
#include "storageapi.h"
34
#include "thash.h"
35
#include "ttypes.h"
36
#include "tref.h"
37

38
#define CLEAR_QUERY_STATUS(q, st) ((q)->status &= (~(st)))
39

40
int32_t doCreateTask(uint64_t queryId, uint64_t taskId, int32_t vgId, EOPTR_EXEC_MODEL model, SStorageAPI* pAPI,
368,189,469✔
41
                     SExecTaskInfo** pTaskInfo) {
42
  if (pTaskInfo == NULL) {
368,189,469✔
43
    return TSDB_CODE_SUCCESS;
×
44
  }
45

46
  SExecTaskInfo* p = taosMemoryCalloc(1, sizeof(SExecTaskInfo));
368,189,469✔
47
  if (p == NULL) {
368,166,591✔
48
    return terrno;
×
49
  }
50

51
  setTaskStatus(p, TASK_NOT_COMPLETED);
368,166,591✔
52
  p->cost.created = taosGetTimestampUs();
368,208,442✔
53

54
  p->execModel = model;
368,204,881✔
55
  p->stopInfo.pStopInfo = taosArrayInit(4, sizeof(SExchangeOpStopInfo));
368,203,121✔
56
  p->pResultBlockList = taosArrayInit(128, POINTER_BYTES);
368,170,319✔
57
  if (p->stopInfo.pStopInfo == NULL || p->pResultBlockList == NULL) {
368,164,726✔
UNCOV
58
    doDestroyTask(p);
×
59
    return terrno;
×
60
  }
61

62
  p->storageAPI = *pAPI;
368,196,023✔
63
  taosInitRWLatch(&p->lock);
368,179,292✔
64

65
  p->id.vgId = vgId;
368,173,943✔
66
  p->id.queryId = queryId;
368,182,999✔
67
  p->id.taskId = taskId;
368,186,693✔
68
  p->id.str = taosMemoryMalloc(64);
368,190,472✔
69
  if (p->id.str == NULL) {
368,130,279✔
70
    doDestroyTask(p);
×
71
    return terrno;
×
72
  }
73

74
  buildTaskId(taskId, queryId, p->id.str, 64);
368,176,833✔
75
  p->schemaInfos = taosArrayInit(1, sizeof(SSchemaInfo));
368,157,386✔
76
  if (p->id.str == NULL || p->schemaInfos == NULL) {
368,123,075✔
77
    doDestroyTask(p);
×
78
    return terrno;
×
79
  }
80

81
  *pTaskInfo = p;
368,159,383✔
82
  return TSDB_CODE_SUCCESS;
368,169,010✔
83
}
84

85
int32_t getTaskCode(void* pTaskInfo) { return ((SExecTaskInfo*)pTaskInfo)->code; }
16,950✔
86

87
bool isTaskKilled(void* pTaskInfo) { return (0 != ((SExecTaskInfo*)pTaskInfo)->code); }
2,147,483,647✔
88

89
void setTaskKilled(SExecTaskInfo* pTaskInfo, int32_t rspCode) {
101,903✔
90
  pTaskInfo->code = rspCode;
101,903✔
91
  (void)stopTableScanOperator(pTaskInfo->pRoot, pTaskInfo->id.str, &pTaskInfo->storageAPI);
101,903✔
92
}
101,903✔
93

94
void setTaskStatus(SExecTaskInfo* pTaskInfo, int8_t status) {
1,285,731,048✔
95
  if (status == TASK_NOT_COMPLETED) {
1,285,731,048✔
96
    pTaskInfo->status = status;
368,362,512✔
97
  } else {
98
    // QUERY_NOT_COMPLETED is not compatible with any other status, so clear its position first
99
    CLEAR_QUERY_STATUS(pTaskInfo, TASK_NOT_COMPLETED);
917,368,536✔
100
    pTaskInfo->status |= status;
917,377,675✔
101
  }
102
}
1,285,751,227✔
103

104

105
int32_t initTaskSubJobCtx(SExecTaskInfo* pTaskInfo, SArray** subEndPoints, SReadHandle* readHandle) {
42,650,452✔
106
  int32_t code = 0, lino = 0;
42,650,452✔
107
  int32_t subJobNum = taosArrayGetSize(*subEndPoints);
42,650,452✔
108
  
109
  pTaskInfo->pSubJobCtx = taosMemoryCalloc(1, sizeof(*pTaskInfo->pSubJobCtx));
42,651,573✔
110
  TSDB_CHECK_NULL(pTaskInfo->pSubJobCtx, code, lino, _exit, terrno);
42,648,210✔
111
  
112
  STaskSubJobCtx* ctx = pTaskInfo->pSubJobCtx;
42,652,138✔
113

114
  ctx->queryId = pTaskInfo->id.queryId;
42,653,259✔
115
  ctx->taskId = pTaskInfo->id.taskId;
42,651,026✔
116
  ctx->idStr = pTaskInfo->id.str;
42,653,824✔
117
  ctx->pTaskInfo = pTaskInfo;
42,651,008✔
118
  ctx->subEndPoints = *subEndPoints;
42,652,703✔
119
  ctx->rpcHandle = (readHandle && readHandle->pMsgCb) ? readHandle->pMsgCb->clientRpc : NULL;
42,649,905✔
120
  ctx->isStream = pTaskInfo && IS_STREAM_MODE(pTaskInfo);
42,653,824✔
121

122
  *subEndPoints = NULL;
42,652,712✔
123
  
124
  ctx->subResNodes = taosArrayInit_s(POINTER_BYTES, subJobNum);
42,648,793✔
125
  if (NULL == ctx->subResNodes) {
42,649,313✔
126
    qError("%s taosArrayInit_s %d subResNodes failed, error:%s", GET_TASKID(pTaskInfo), subJobNum, tstrerror(terrno));
×
127
    TSDB_CHECK_NULL(ctx->subResNodes, code, lino, _exit, terrno);
×
128
  }
129
  
130
  TAOS_CHECK_EXIT(tsem_init(&ctx->ready, 0, 0));
42,649,905✔
131

132
  int64_t refId = taosAddRef(fetchObjRefPool, ctx);
42,643,152✔
133
  if (refId < 0) {
42,648,784✔
134
    qError("%s failed at line %d since %s", __func__, __LINE__, tstrerror(terrno));
×
135
    TAOS_CHECK_EXIT(terrno);
×
136
  }
137
  
138
  ctx->subJobRefId = refId;
42,648,784✔
139

140
  qDebug("%s subJobCtx %" PRIu64 " with %d endPoints inited", pTaskInfo->id.str, (uint64_t)refId, (int32_t)taosArrayGetSize(ctx->subEndPoints));
42,647,663✔
141

142
_exit:
41,622,260✔
143

144
  if (code) {
42,649,887✔
145
    destroySubJobCtx(pTaskInfo->pSubJobCtx);
×
146
    pTaskInfo->pSubJobCtx = NULL;
×
147
    
148
    qError("%s failed at line %d since %s", __func__, lino, tstrerror(code));
×
149
  }
150

151
  return code;
42,649,887✔
152
}
153

154

155

156
int32_t createExecTaskInfo(SSubplan* pPlan, SExecTaskInfo** pTaskInfo, SReadHandle* pHandle, uint64_t taskId,
368,051,601✔
157
                           int32_t vgId, char* sql, EOPTR_EXEC_MODEL model, SArray** subEndPoints, bool enableExplain) {
158
  int32_t code = doCreateTask(pPlan->id.queryId, taskId, vgId, model, &pHandle->api, pTaskInfo);
368,051,601✔
159
  if (*pTaskInfo == NULL || code != 0) {
367,993,778✔
160
    nodesDestroyNode((SNode*)pPlan);
897✔
161
    return code;
×
162
  }
163

164
  (*pTaskInfo)->pSubplan = pPlan;
368,023,276✔
165

166
  if (NULL != sql) {
368,029,740✔
167
    (*pTaskInfo)->sql = taosStrdup(sql);
342,059,170✔
168
    if (NULL == (*pTaskInfo)->sql) {
342,050,016✔
169
      code = terrno;
×
170
      doDestroyTask(*pTaskInfo);
×
171
      (*pTaskInfo) = NULL;
×
172
      return code;
×
173
    }
174
  }
175

176
  (*pTaskInfo)->pWorkerCb = pHandle->pWorkerCb;
368,021,021✔
177
  (*pTaskInfo)->pStreamRuntimeInfo = pHandle->streamRtInfo;
368,030,180✔
178
  (*pTaskInfo)->enableExplain = enableExplain;
368,011,653✔
179

180
  if (subEndPoints && taosArrayGetSize(*subEndPoints) > 0) {
368,042,843✔
181
    code = initTaskSubJobCtx(*pTaskInfo, subEndPoints, pHandle);
42,651,600✔
182
    if (code != TSDB_CODE_SUCCESS) {
42,651,017✔
183
      doDestroyTask(*pTaskInfo);
×
184
      (*pTaskInfo) = NULL;
×
185
      return code;
×
186
    }
187
  }
188
  
189
  setTaskScalarExtraInfo(*pTaskInfo);
368,025,678✔
190
  
191
  code = createOperator(pPlan->pNode, *pTaskInfo, pHandle, pPlan->pTagCond, pPlan->pTagIndexCond, pPlan->user,
367,988,467✔
192
                        pPlan->dbFName, &((*pTaskInfo)->pRoot), model);
367,939,388✔
193

194
  if (NULL == (*pTaskInfo)->pRoot || code != 0) {
367,831,225✔
195
    doDestroyTask(*pTaskInfo);
607,710✔
196
    (*pTaskInfo) = NULL;
482,933✔
197
  }
198
  return code;
367,820,738✔
199
}
200

201
void cleanupQueriedTableScanInfo(void* p) {
271,705,200✔
202
  SSchemaInfo* pSchemaInfo = p;
271,705,200✔
203

204
  taosMemoryFreeClear(pSchemaInfo->dbname);
271,705,200✔
205
  taosMemoryFreeClear(pSchemaInfo->tablename);
271,667,023✔
206
  tDeleteSchemaWrapper(pSchemaInfo->sw);
271,617,596✔
207
  tDeleteSchemaWrapper(pSchemaInfo->qsw);
271,634,761✔
208
}
271,617,522✔
209

210
int32_t initQueriedTableSchemaInfo(SReadHandle* pHandle, SScanPhysiNode* pScanNode, const char* dbName,
271,736,336✔
211
                                   SExecTaskInfo* pTaskInfo) {
212
  SMetaReader mr = {0};
271,736,336✔
213
  if (pHandle == NULL) {
271,739,118✔
214
    return TSDB_CODE_INVALID_PARA;
×
215
  }
216

217
  SStorageAPI* pAPI = &pTaskInfo->storageAPI;
271,739,118✔
218

219
  pAPI->metaReaderFn.initReader(&mr, pHandle->vnode, META_READER_LOCK, &pAPI->metaFn);
271,734,554✔
220
  int32_t code = pAPI->metaReaderFn.getEntryGetUidCache(&mr, pScanNode->uid);
271,730,162✔
221
  if (code != TSDB_CODE_SUCCESS) {
271,616,652✔
222
    qError("failed to get the table meta, uid:0x%" PRIx64 ", suid:0x%" PRIx64 ", %s", pScanNode->uid, pScanNode->suid,
243✔
223
           GET_TASKID(pTaskInfo));
224

225
    pAPI->metaReaderFn.clearReader(&mr);
243✔
226
    return code;
243✔
227
  }
228

229
  SSchemaInfo schemaInfo = {0};
271,616,409✔
230

231
  schemaInfo.tablename = taosStrdup(mr.me.name);
271,615,626✔
232
  schemaInfo.dbname = taosStrdup(dbName);
271,569,514✔
233
  if (schemaInfo.tablename == NULL || schemaInfo.dbname == NULL) {
271,623,138✔
234
    pAPI->metaReaderFn.clearReader(&mr);
160,785✔
235
    cleanupQueriedTableScanInfo(&schemaInfo);
×
236
    return terrno;
×
237
  }
238

239
  if (mr.me.type == TSDB_VIRTUAL_NORMAL_TABLE || mr.me.type == TSDB_VIRTUAL_CHILD_TABLE) {
271,462,353✔
240
    schemaInfo.rversion = mr.me.colRef.version;
303,122✔
241
  }
242

243
  if (mr.me.type == TSDB_SUPER_TABLE) {
271,462,353✔
244
    schemaInfo.sw = tCloneSSchemaWrapper(&mr.me.stbEntry.schemaRow);
115,491,914✔
245
    schemaInfo.tversion = mr.me.stbEntry.schemaTag.version;
115,491,914✔
246
  } else if (mr.me.type == TSDB_CHILD_TABLE || mr.me.type == TSDB_VIRTUAL_CHILD_TABLE) {
156,044,481✔
247
    tDecoderClear(&mr.coder);
109,579,825✔
248

249
    tb_uid_t suid = mr.me.ctbEntry.suid;
109,636,498✔
250
    code = pAPI->metaReaderFn.getEntryGetUidCache(&mr, suid);
109,636,498✔
251
    if (code != TSDB_CODE_SUCCESS) {
109,636,495✔
252
      pAPI->metaReaderFn.clearReader(&mr);
×
253
      cleanupQueriedTableScanInfo(&schemaInfo);
×
254
      return code;
×
255
    }
256

257
    schemaInfo.sw = tCloneSSchemaWrapper(&mr.me.stbEntry.schemaRow);
109,636,854✔
258
    schemaInfo.tversion = mr.me.stbEntry.schemaTag.version;
109,636,854✔
259
  } else {
260
    schemaInfo.sw = tCloneSSchemaWrapper(&mr.me.ntbEntry.schemaRow);
46,484,324✔
261
  }
262

263
  pAPI->metaReaderFn.clearReader(&mr);
271,613,092✔
264

265
  if (schemaInfo.sw == NULL) {
271,474,269✔
266
    cleanupQueriedTableScanInfo(&schemaInfo);
×
267
    return terrno;
×
268
  }
269

270
  schemaInfo.qsw = extractQueriedColumnSchema(pScanNode);
271,474,269✔
271
  if (schemaInfo.qsw == NULL) {
271,613,010✔
272
    cleanupQueriedTableScanInfo(&schemaInfo);
×
273
    return terrno;
×
274
  }
275

276
  void* p = taosArrayPush(pTaskInfo->schemaInfos, &schemaInfo);
271,613,010✔
277
  if (p == NULL) {
271,629,242✔
278
    cleanupQueriedTableScanInfo(&schemaInfo);
×
279
    return terrno;
×
280
  }
281

282
  return code;
271,629,242✔
283
}
284

285
SSchemaWrapper* extractQueriedColumnSchema(SScanPhysiNode* pScanNode) {
271,557,943✔
286
  int32_t numOfCols = LIST_LENGTH(pScanNode->pScanCols);
271,557,943✔
287
  int32_t numOfTags = LIST_LENGTH(pScanNode->pScanPseudoCols);
271,625,464✔
288

289
  SSchemaWrapper* pqSw = taosMemoryCalloc(1, sizeof(SSchemaWrapper));
271,585,282✔
290
  if (pqSw == NULL) {
271,524,032✔
291
    return NULL;
×
292
  }
293

294
  pqSw->pSchema = taosMemoryCalloc(numOfCols + numOfTags, sizeof(SSchema));
271,524,032✔
295
  if (pqSw->pSchema == NULL) {
271,369,781✔
296
    taosMemoryFree(pqSw);
×
297
    return NULL;
×
298
  }
299

300
  for (int32_t i = 0; i < numOfCols; ++i) {
1,217,451,746✔
301
    STargetNode* pNode = (STargetNode*)nodesListGetNode(pScanNode->pScanCols, i);
945,771,612✔
302
    SColumnNode* pColNode = (SColumnNode*)pNode->pExpr;
945,793,555✔
303

304
    SSchema* pSchema = &pqSw->pSchema[pqSw->nCols++];
945,812,581✔
305
    pSchema->colId = pColNode->colId;
945,819,849✔
306
    pSchema->type = pColNode->node.resType.type;
945,903,253✔
307
    pSchema->bytes = pColNode->node.resType.bytes;
945,885,833✔
308
    tstrncpy(pSchema->name, pColNode->colName, tListLen(pSchema->name));
945,847,998✔
309
  }
310

311
  // this the tags and pseudo function columns, we only keep the tag columns
312
  for (int32_t i = 0; i < numOfTags; ++i) {
419,629,856✔
313
    STargetNode* pNode = (STargetNode*)nodesListGetNode(pScanNode->pScanPseudoCols, i);
147,963,333✔
314

315
    int32_t type = nodeType(pNode->pExpr);
148,012,167✔
316
    if (type == QUERY_NODE_COLUMN) {
148,032,453✔
317
      SColumnNode* pColNode = (SColumnNode*)pNode->pExpr;
108,121,515✔
318

319
      SSchema* pSchema = &pqSw->pSchema[pqSw->nCols++];
108,116,198✔
320
      pSchema->colId = pColNode->colId;
108,095,000✔
321
      pSchema->type = pColNode->node.resType.type;
108,130,849✔
322
      pSchema->bytes = pColNode->node.resType.bytes;
108,071,399✔
323
      tstrncpy(pSchema->name, pColNode->colName, tListLen(pSchema->name));
108,110,994✔
324
    }
325
  }
326

327
  return pqSw;
271,666,523✔
328
}
329

330
static void cleanupTmqInfo(STmqTaskInfo* pTmqInfo) {
368,130,029✔
331
  tDeleteSchemaWrapper(pTmqInfo->schema);
368,130,029✔
332
  tOffsetDestroy(&pTmqInfo->currentOffset);
368,163,798✔
333
}
368,097,829✔
334

335
static void freeBlock(void* pParam) {
655,790,587✔
336
  SSDataBlock* pBlock = *(SSDataBlock**)pParam;
655,790,587✔
337
  blockDataDestroy(pBlock);
655,799,225✔
338
}
655,786,439✔
339

340

341
void destroySubJobCtx(STaskSubJobCtx* pCtx) {
42,652,138✔
342
  if (pCtx->transporterId > 0) {
42,652,138✔
343
    int32_t ret = asyncFreeConnById(pCtx->rpcHandle, pCtx->transporterId);
7,345✔
344
    if (ret != 0) {
7,345✔
345
      qDebug("%s failed to free subQ rpc handle, code:%s", pCtx->idStr, tstrerror(ret));
×
346
    }
347
    pCtx->transporterId = -1;
7,345✔
348
  }
349

350
  if (pCtx->subEndPoints != NULL) {
42,653,824✔
351
    size_t size = taosArrayGetSize(pCtx->subEndPoints);
42,651,017✔
352
    if (size > 0) {
42,651,017✔
353
      int32_t code = tsem_destroy(&pCtx->ready);
42,651,582✔
354
      if (code != TSDB_CODE_SUCCESS) {
42,649,887✔
355
        qError("%s failed at line %d since %s", __func__, __LINE__, tstrerror(code));
×
356
      }
357
      taosArrayDestroy(pCtx->subResNodes);
42,649,887✔
358
    }
359
    if (pCtx->isStream) {
42,642,605✔
360
      taosArrayDestroyP(pCtx->subEndPoints, (FDelete)nodesDestroyNode);
237,583✔
361
    } else {
362
      taosArrayDestroyP(pCtx->subEndPoints, NULL);
42,405,578✔
363
    }
364
    pCtx->subEndPoints = NULL;
42,643,708✔
365
  }
366
  
367
  taosMemoryFreeClear(pCtx);  
42,644,829✔
368
}
42,642,542✔
369

370
void doDestroyTask(SExecTaskInfo* pTaskInfo) {
368,197,238✔
371
  qDebug("%s execTask is freed", GET_TASKID(pTaskInfo));
368,197,238✔
372
  destroyOperator(pTaskInfo->pRoot);
368,197,390✔
373
  pTaskInfo->pRoot = NULL;
368,110,972✔
374

375
  if (pTaskInfo->pSubJobCtx) {
368,132,999✔
376
    int32_t  code = taosRemoveRef(fetchObjRefPool, pTaskInfo->pSubJobCtx->subJobRefId);
42,650,443✔
377
    if (code != TSDB_CODE_SUCCESS) {
42,653,824✔
378
      qError("%s failed at line %d since %s", __func__, __LINE__, tstrerror(code));
×
379
    }
380
  }
381

382
  taosArrayDestroyEx(pTaskInfo->schemaInfos, cleanupQueriedTableScanInfo);
368,136,619✔
383
  cleanupTmqInfo(&pTaskInfo->tmqInfo);
368,113,500✔
384

385
  if (!pTaskInfo->localFetch.localExec) {
368,098,873✔
386
    nodesDestroyNode((SNode*)pTaskInfo->pSubplan);
368,143,511✔
387
    pTaskInfo->pSubplan = NULL;
368,127,349✔
388
  }
389

390
  taosArrayDestroyEx(pTaskInfo->pResultBlockList, freeBlock);
368,097,224✔
391
  taosArrayDestroy(pTaskInfo->stopInfo.pStopInfo);
368,115,793✔
392
  if (!pTaskInfo->paramSet) {
368,131,422✔
393
    freeOperatorParam(pTaskInfo->pOpParam, OP_GET_PARAM);
360,299,754✔
394
    pTaskInfo->pOpParam = NULL;
360,319,189✔
395
  }
396
  if (pTaskInfo->ownStreamRtInfo && pTaskInfo->pStreamRuntimeInfo != NULL) {
368,181,151✔
397
    SStreamRuntimeFuncInfo* pRt = &pTaskInfo->pStreamRuntimeInfo->funcInfo;
435,830✔
398

399
    // When isMultiGroupCalc, pStreamPesudoFuncVals is aliased to curGrpCalc->pParams
400
    // inside pGroupCalcInfos.  NULL it out so tDestroyStRtFuncInfo won't free it twice.
401
    if (pRt->isMultiGroupCalc && pRt->pGroupCalcInfos != NULL) {
435,830✔
402
      pRt->pStreamPesudoFuncVals = NULL;
71,340✔
403
      pRt->pStreamPartColVals = NULL;
71,340✔
404
    }
405
    tDestroyStRtFuncInfo(pRt);
435,830✔
406
    taosMemoryFreeClear(pTaskInfo->pStreamRuntimeInfo);
435,830✔
407
  }
408
  taosMemoryFreeClear(pTaskInfo->sql);
368,174,510✔
409
  taosMemoryFreeClear(pTaskInfo->id.str);
368,141,644✔
410
  taosMemoryFreeClear(pTaskInfo);
368,116,926✔
411
}
368,084,327✔
412

413
void buildTaskId(uint64_t taskId, uint64_t queryId, char* dst, int32_t len) {
559,731,340✔
414
  int32_t ret = snprintf(dst, len, "TID:0x%" PRIx64 " QID:0x%" PRIx64, taskId, queryId);
559,731,340✔
415
  if (ret < 0) {
559,731,340✔
416
    qError("TID:0x%"PRIx64" QID:0x%"PRIx64" create task id failed,  ignore and continue", taskId, queryId);
×
417
  }
418
}
559,731,340✔
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