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

taosdata / TDengine / #5044

06 May 2026 02:35AM UTC coverage: 73.169% (+0.06%) from 73.107%
#5044

push

travis-ci

web-flow
feat: [6659794715] cpu limit (#35153)

244 of 275 new or added lines in 23 files covered. (88.73%)

526 existing lines in 141 files now uncovered.

277745 of 379596 relevant lines covered (73.17%)

133740972.66 hits per line

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

82.11
/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,
388,198,989✔
41
                     SExecTaskInfo** pTaskInfo) {
42
  if (pTaskInfo == NULL) {
388,198,989✔
43
    return TSDB_CODE_SUCCESS;
×
44
  }
45

46
  SExecTaskInfo* p = taosMemoryCalloc(1, sizeof(SExecTaskInfo));
388,198,989✔
47
  if (p == NULL) {
388,178,078✔
48
    return terrno;
×
49
  }
50

51
  setTaskStatus(p, TASK_NOT_COMPLETED);
388,178,078✔
52
  p->cost.created = taosGetTimestampUs();
388,220,350✔
53

54
  p->execModel = model;
388,218,126✔
55
  p->stopInfo.pStopInfo = taosArrayInit(4, sizeof(SExchangeOpStopInfo));
388,207,531✔
56
  p->pResultBlockList = taosArrayInit(128, POINTER_BYTES);
388,166,770✔
57
  if (p->stopInfo.pStopInfo == NULL || p->pResultBlockList == NULL) {
388,163,460✔
UNCOV
58
    doDestroyTask(p);
×
59
    return terrno;
×
60
  }
61

62
  p->storageAPI = *pAPI;
388,206,269✔
63
  taosInitRWLatch(&p->lock);
388,202,216✔
64

65
  p->id.vgId = vgId;
388,188,943✔
66
  p->id.queryId = queryId;
388,197,372✔
67
  p->id.taskId = taskId;
388,199,698✔
68
  p->id.str = taosMemoryMalloc(64);
388,188,144✔
69
  if (p->id.str == NULL) {
388,124,524✔
70
    doDestroyTask(p);
×
71
    return terrno;
×
72
  }
73

74
  buildTaskId(taskId, queryId, p->id.str, 64);
388,184,950✔
75
  p->schemaInfos = taosArrayInit(1, sizeof(SSchemaInfo));
388,153,764✔
76
  if (p->id.str == NULL || p->schemaInfos == NULL) {
388,118,230✔
77
    doDestroyTask(p);
850✔
78
    return terrno;
×
79
  }
80

81
  *pTaskInfo = p;
388,168,134✔
82
  return TSDB_CODE_SUCCESS;
388,178,636✔
83
}
84

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

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

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

94
void setTaskStatus(SExecTaskInfo* pTaskInfo, int8_t status) {
1,332,157,215✔
95
  if (status == TASK_NOT_COMPLETED) {
1,332,157,215✔
96
    pTaskInfo->status = status;
388,387,539✔
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);
943,769,676✔
100
    pTaskInfo->status |= status;
943,799,762✔
101
  }
102
}
1,332,181,060✔
103

104

105
int32_t initTaskSubJobCtx(SExecTaskInfo* pTaskInfo, SArray** subEndPoints, SReadHandle* readHandle) {
43,038,605✔
106
  int32_t code = 0, lino = 0;
43,038,605✔
107
  int32_t subJobNum = taosArrayGetSize(*subEndPoints);
43,038,605✔
108
  
109
  pTaskInfo->pSubJobCtx = taosMemoryCalloc(1, sizeof(*pTaskInfo->pSubJobCtx));
43,040,335✔
110
  TSDB_CHECK_NULL(pTaskInfo->pSubJobCtx, code, lino, _exit, terrno);
43,031,484✔
111
  
112
  STaskSubJobCtx* ctx = pTaskInfo->pSubJobCtx;
43,040,179✔
113

114
  ctx->queryId = pTaskInfo->id.queryId;
43,039,019✔
115
  ctx->taskId = pTaskInfo->id.taskId;
43,030,924✔
116
  ctx->idStr = pTaskInfo->id.str;
43,034,954✔
117
  ctx->pTaskInfo = pTaskInfo;
43,028,009✔
118
  ctx->subEndPoints = *subEndPoints;
43,034,964✔
119
  ctx->rpcHandle = (readHandle && readHandle->pMsgCb) ? readHandle->pMsgCb->clientRpc : NULL;
43,022,794✔
120
  ctx->isStream = pTaskInfo && IS_STREAM_MODE(pTaskInfo);
43,042,923✔
121

122
  *subEndPoints = NULL;
43,034,379✔
123
  
124
  ctx->subResNodes = taosArrayInit_s(POINTER_BYTES, subJobNum);
43,036,270✔
125
  if (NULL == ctx->subResNodes) {
43,037,703✔
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));
43,028,428✔
131

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

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

142
_exit:
41,928,038✔
143

144
  if (code) {
43,034,803✔
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;
43,031,328✔
152
}
153

154

155

156
int32_t createExecTaskInfo(SSubplan* pPlan, SExecTaskInfo** pTaskInfo, SReadHandle* pHandle, uint64_t taskId,
388,066,980✔
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);
388,066,980✔
159
  if (*pTaskInfo == NULL || code != 0) {
388,007,547✔
160
    nodesDestroyNode((SNode*)pPlan);
105✔
161
    return code;
×
162
  }
163

164
  (*pTaskInfo)->pSubplan = pPlan;
388,035,266✔
165

166
  if (NULL != sql) {
388,052,802✔
167
    (*pTaskInfo)->sql = taosStrdup(sql);
361,985,617✔
168
    if (NULL == (*pTaskInfo)->sql) {
362,004,242✔
169
      code = terrno;
×
170
      doDestroyTask(*pTaskInfo);
×
171
      (*pTaskInfo) = NULL;
×
172
      return code;
×
173
    }
174
  }
175

176
  (*pTaskInfo)->pWorkerCb = pHandle->pWorkerCb;
388,047,919✔
177
  (*pTaskInfo)->pStreamRuntimeInfo = pHandle->streamRtInfo;
388,044,336✔
178
  (*pTaskInfo)->enableExplain = enableExplain;
388,018,105✔
179

180
  if (subEndPoints && taosArrayGetSize(*subEndPoints) > 0) {
388,041,692✔
181
    code = initTaskSubJobCtx(*pTaskInfo, subEndPoints, pHandle);
43,036,860✔
182
    if (code != TSDB_CODE_SUCCESS) {
43,032,488✔
183
      doDestroyTask(*pTaskInfo);
×
184
      (*pTaskInfo) = NULL;
×
185
      return code;
×
186
    }
187
  }
188
  
189
  setTaskScalarExtraInfo(*pTaskInfo);
388,023,587✔
190
  
191
  code = createOperator(pPlan->pNode, *pTaskInfo, pHandle, pPlan->pTagCond, pPlan->pTagIndexCond, pPlan->user,
387,840,936✔
192
                        pPlan->dbFName, &((*pTaskInfo)->pRoot), model);
387,836,135✔
193

194
  if (NULL == (*pTaskInfo)->pRoot || code != 0) {
387,812,891✔
195
    doDestroyTask(*pTaskInfo);
566,076✔
196
    (*pTaskInfo) = NULL;
495,534✔
197
  }
198
  return code;
387,856,845✔
199
}
200

201
void cleanupQueriedTableScanInfo(void* p) {
286,591,865✔
202
  SSchemaInfo* pSchemaInfo = p;
286,591,865✔
203

204
  taosMemoryFreeClear(pSchemaInfo->dbname);
286,591,865✔
205
  taosMemoryFreeClear(pSchemaInfo->tablename);
286,570,122✔
206
  tDeleteSchemaWrapper(pSchemaInfo->sw);
286,516,517✔
207
  tDeleteSchemaWrapper(pSchemaInfo->qsw);
286,474,542✔
208
}
286,495,518✔
209

210
int32_t initQueriedTableSchemaInfo(SReadHandle* pHandle, SScanPhysiNode* pScanNode, const char* dbName,
286,638,102✔
211
                                   SExecTaskInfo* pTaskInfo) {
212
  SMetaReader mr = {0};
286,638,102✔
213
  if (pHandle == NULL) {
286,645,209✔
214
    return TSDB_CODE_INVALID_PARA;
×
215
  }
216

217
  SStorageAPI* pAPI = &pTaskInfo->storageAPI;
286,645,209✔
218

219
  pAPI->metaReaderFn.initReader(&mr, pHandle->vnode, META_READER_LOCK, &pAPI->metaFn);
286,634,269✔
220
  int32_t code = pAPI->metaReaderFn.getEntryGetUidCache(&mr, pScanNode->uid);
286,643,363✔
221
  if (code != TSDB_CODE_SUCCESS) {
286,466,398✔
222
    qError("failed to get the table meta, uid:0x%" PRIx64 ", suid:0x%" PRIx64 ", %s", pScanNode->uid, pScanNode->suid,
×
223
           GET_TASKID(pTaskInfo));
224

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

229
  SSchemaInfo schemaInfo = {0};
286,466,398✔
230

231
  schemaInfo.tablename = taosStrdup(mr.me.name);
286,476,726✔
232
  schemaInfo.dbname = taosStrdup(dbName);
286,470,967✔
233
  if (schemaInfo.tablename == NULL || schemaInfo.dbname == NULL) {
286,521,358✔
234
    pAPI->metaReaderFn.clearReader(&mr);
232,295✔
235
    cleanupQueriedTableScanInfo(&schemaInfo);
×
236
    return terrno;
×
237
  }
238

239
  if (mr.me.type == TSDB_VIRTUAL_NORMAL_TABLE || mr.me.type == TSDB_VIRTUAL_CHILD_TABLE) {
286,289,063✔
240
    schemaInfo.rversion = mr.me.colRef.version;
310,774✔
241
  }
242

243
  if (mr.me.type == TSDB_SUPER_TABLE) {
286,289,063✔
244
    schemaInfo.sw = tCloneSSchemaWrapper(&mr.me.stbEntry.schemaRow);
128,599,665✔
245
    schemaInfo.tversion = mr.me.stbEntry.schemaTag.version;
128,599,665✔
246
  } else if (mr.me.type == TSDB_CHILD_TABLE || mr.me.type == TSDB_VIRTUAL_CHILD_TABLE) {
157,725,466✔
247
    tDecoderClear(&mr.coder);
110,821,554✔
248

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

257
    schemaInfo.sw = tCloneSSchemaWrapper(&mr.me.stbEntry.schemaRow);
110,947,213✔
258
    schemaInfo.tversion = mr.me.stbEntry.schemaTag.version;
110,947,213✔
259
  } else {
260
    schemaInfo.sw = tCloneSSchemaWrapper(&mr.me.ntbEntry.schemaRow);
46,927,166✔
261
  }
262

263
  pAPI->metaReaderFn.clearReader(&mr);
286,474,044✔
264

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

270
  schemaInfo.qsw = extractQueriedColumnSchema(pScanNode);
286,357,244✔
271
  if (schemaInfo.qsw == NULL) {
286,488,593✔
272
    cleanupQueriedTableScanInfo(&schemaInfo);
×
273
    return terrno;
×
274
  }
275

276
  void* p = taosArrayPush(pTaskInfo->schemaInfos, &schemaInfo);
286,488,593✔
277
  if (p == NULL) {
286,527,434✔
278
    cleanupQueriedTableScanInfo(&schemaInfo);
×
279
    return terrno;
×
280
  }
281

282
  return code;
286,527,434✔
283
}
284

285
SSchemaWrapper* extractQueriedColumnSchema(SScanPhysiNode* pScanNode) {
286,420,162✔
286
  int32_t numOfCols = LIST_LENGTH(pScanNode->pScanCols);
286,420,162✔
287
  int32_t numOfTags = LIST_LENGTH(pScanNode->pScanPseudoCols);
286,521,098✔
288

289
  SSchemaWrapper* pqSw = taosMemoryCalloc(1, sizeof(SSchemaWrapper));
286,453,803✔
290
  if (pqSw == NULL) {
286,368,093✔
291
    return NULL;
×
292
  }
293

294
  pqSw->pSchema = taosMemoryCalloc(numOfCols + numOfTags, sizeof(SSchema));
286,368,093✔
295
  if (pqSw->pSchema == NULL) {
286,182,547✔
296
    taosMemoryFree(pqSw);
×
297
    return NULL;
×
298
  }
299

300
  for (int32_t i = 0; i < numOfCols; ++i) {
1,283,047,354✔
301
    STargetNode* pNode = (STargetNode*)nodesListGetNode(pScanNode->pScanCols, i);
996,484,910✔
302
    SColumnNode* pColNode = (SColumnNode*)pNode->pExpr;
996,374,145✔
303

304
    SSchema* pSchema = &pqSw->pSchema[pqSw->nCols++];
996,371,681✔
305
    pSchema->colId = pColNode->colId;
996,582,676✔
306
    pSchema->type = pColNode->node.resType.type;
996,681,723✔
307
    pSchema->bytes = pColNode->node.resType.bytes;
996,631,370✔
308
    tstrncpy(pSchema->name, pColNode->colName, tListLen(pSchema->name));
996,406,039✔
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) {
451,328,560✔
313
    STargetNode* pNode = (STargetNode*)nodesListGetNode(pScanNode->pScanPseudoCols, i);
164,792,477✔
314

315
    int32_t type = nodeType(pNode->pExpr);
164,789,866✔
316
    if (type == QUERY_NODE_COLUMN) {
164,823,151✔
317
      SColumnNode* pColNode = (SColumnNode*)pNode->pExpr;
123,230,178✔
318

319
      SSchema* pSchema = &pqSw->pSchema[pqSw->nCols++];
123,208,456✔
320
      pSchema->colId = pColNode->colId;
123,172,672✔
321
      pSchema->type = pColNode->node.resType.type;
123,225,418✔
322
      pSchema->bytes = pColNode->node.resType.bytes;
123,164,322✔
323
      tstrncpy(pSchema->name, pColNode->colName, tListLen(pSchema->name));
123,218,331✔
324
    }
325
  }
326

327
  return pqSw;
286,536,083✔
328
}
329

330
static void cleanupTmqInfo(STmqTaskInfo* pTmqInfo) {
388,104,786✔
331
  tDeleteSchemaWrapper(pTmqInfo->schema);
388,104,786✔
332
  tOffsetDestroy(&pTmqInfo->currentOffset);
388,153,404✔
333
}
388,031,091✔
334

335
static void freeBlock(void* pParam) {
673,108,445✔
336
  SSDataBlock* pBlock = *(SSDataBlock**)pParam;
673,108,445✔
337
  blockDataDestroy(pBlock);
673,126,516✔
338
}
673,112,492✔
339

340

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

350
  if (pCtx->subEndPoints != NULL) {
43,041,758✔
351
    size_t size = taosArrayGetSize(pCtx->subEndPoints);
43,035,963✔
352
    if (size > 0) {
43,035,968✔
353
      int32_t code = tsem_destroy(&pCtx->ready);
43,037,708✔
354
      if (code != TSDB_CODE_SUCCESS) {
43,036,553✔
355
        qError("%s failed at line %d since %s", __func__, __LINE__, tstrerror(code));
×
356
      }
357
      taosArrayDestroy(pCtx->subResNodes);
43,036,553✔
358
    }
359
    if (pCtx->isStream) {
43,032,659✔
360
      taosArrayDestroyP(pCtx->subEndPoints, (FDelete)nodesDestroyNode);
200,350✔
361
    } else {
362
      taosArrayDestroyP(pCtx->subEndPoints, NULL);
42,831,149✔
363
    }
364
    pCtx->subEndPoints = NULL;
43,034,823✔
365
  }
366
  
367
  taosMemoryFreeClear(pCtx);  
43,041,773✔
368
}
43,032,059✔
369

370
void doDestroyTask(SExecTaskInfo* pTaskInfo) {
388,208,849✔
371
  qDebug("%s execTask is freed", GET_TASKID(pTaskInfo));
388,208,849✔
372
  destroyOperator(pTaskInfo->pRoot);
388,208,985✔
373
  pTaskInfo->pRoot = NULL;
388,097,667✔
374

375
  if (pTaskInfo->pSubJobCtx) {
388,122,849✔
376
    int32_t  code = taosRemoveRef(fetchObjRefPool, pTaskInfo->pSubJobCtx->subJobRefId);
43,041,344✔
377
    if (code != TSDB_CODE_SUCCESS) {
43,040,013✔
378
      qError("%s failed at line %d since %s", __func__, __LINE__, tstrerror(code));
×
379
    }
380
  }
381

382
  taosArrayDestroyEx(pTaskInfo->schemaInfos, cleanupQueriedTableScanInfo);
388,145,057✔
383
  cleanupTmqInfo(&pTaskInfo->tmqInfo);
388,066,202✔
384

385
  if (!pTaskInfo->localFetch.localExec) {
388,019,939✔
386
    nodesDestroyNode((SNode*)pTaskInfo->pSubplan);
388,113,704✔
387
    pTaskInfo->pSubplan = NULL;
388,117,663✔
388
  }
389

390
  taosArrayDestroyEx(pTaskInfo->pResultBlockList, freeBlock);
388,040,086✔
391
  taosArrayDestroy(pTaskInfo->stopInfo.pStopInfo);
388,126,676✔
392
  if (!pTaskInfo->paramSet) {
388,166,632✔
393
    freeOperatorParam(pTaskInfo->pOpParam, OP_GET_PARAM);
379,909,186✔
394
    pTaskInfo->pOpParam = NULL;
379,833,701✔
395
  }
396
  if (pTaskInfo->ownStreamRtInfo && pTaskInfo->pStreamRuntimeInfo != NULL) {
388,116,760✔
397
    SStreamRuntimeFuncInfo* pRt = &pTaskInfo->pStreamRuntimeInfo->funcInfo;
537,726✔
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) {
537,302✔
402
      pRt->pStreamPesudoFuncVals = NULL;
73,776✔
403
      pRt->pStreamPartColVals = NULL;
73,776✔
404
    }
405
    tDestroyStRtFuncInfo(pRt);
537,726✔
406
    taosMemoryFreeClear(pTaskInfo->pStreamRuntimeInfo);
537,302✔
407
  }
408
  taosMemoryFreeClear(pTaskInfo->sql);
388,123,860✔
409
  taosMemoryFreeClear(pTaskInfo->id.str);
388,145,138✔
410
  taosMemoryFreeClear(pTaskInfo);
388,147,564✔
411
}
388,088,178✔
412

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