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

taosdata / TDengine / #5009

29 Mar 2026 04:32AM UTC coverage: 72.26% (+0.02%) from 72.241%
#5009

push

travis-ci

web-flow
refactor: do some internal refactor for TDgpt. (#34955)

253662 of 351039 relevant lines covered (72.26%)

131649114.75 hits per line

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

78.23
/source/dnode/snode/src/snode.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 "executor.h"
17
#include "sndInt.h"
18
#include "stream.h"
19
#include "streamRunner.h"
20
#include "tdatablock.h"
21
#include "tuuid.h"
22

23
// clang-format off
24
#define sndError(...) do {  if (sndDebugFlag & DEBUG_ERROR) { taosPrintLog("SND ERROR ", DEBUG_ERROR, sndDebugFlag, __VA_ARGS__);}} while (0)
25
#define sndInfo(...)  do {  if (sndDebugFlag & DEBUG_INFO)  { taosPrintLog("SND INFO  ", DEBUG_INFO,  sndDebugFlag, __VA_ARGS__);}} while (0)
26
#define sndDebug(...) do {  if (sndDebugFlag & DEBUG_DEBUG) { taosPrintLog("SND DEBUG ", DEBUG_DEBUG, sndDebugFlag, __VA_ARGS__);}} while (0)
27

28
SSnode *sndOpen(const char *path, const SSnodeOpt *pOption) {
71,195✔
29
  int32_t code = 0;
71,195✔
30
  SSnode *pSnode = taosMemoryCalloc(1, sizeof(SSnode));
71,195✔
31
  if (pSnode == NULL) {
71,195✔
32
    return NULL;
×
33
  }
34

35
  pSnode->msgCb = pOption->msgCb;
71,195✔
36

37
  return pSnode;
71,195✔
38
}
39

40
int32_t sndInit(SSnode *pSnode) {
71,195✔
41
  streamSetSnodeEnabled(&pSnode->msgCb);
71,195✔
42
  return 0;
71,195✔
43
}
44

45
void sndClose(SSnode *pSnode) {
71,195✔
46
  streamSetSnodeDisabled(false);
71,195✔
47
  taosMemoryFree(pSnode);
71,195✔
48
}
71,195✔
49

50
static int32_t handleTriggerCalcReq(SSnode* pSnode, void* pWorkerCb, SRpcMsg* pRpcMsg) {
2,689,573✔
51
  SSTriggerCalcRequest req = {0};
2,689,573✔
52
  SStreamRunnerTask* pTask = NULL;
2,689,573✔
53
  void* taskAddr = NULL;
2,688,836✔
54
  int32_t code = 0, lino = 0;
2,688,836✔
55
  TAOS_CHECK_EXIT(tDeserializeSTriggerCalcRequest(POINTER_SHIFT(pRpcMsg->pCont, sizeof(SMsgHead)), pRpcMsg->contLen - sizeof(SMsgHead), &req));
2,688,836✔
56
  TAOS_CHECK_EXIT(streamAcquireTask(req.streamId, req.runnerTaskId, (SStreamTask**)&pTask, &taskAddr));
2,689,573✔
57

58
  req.brandNew = true;
2,688,836✔
59
  req.execId = -1;
2,688,836✔
60
  pTask->msgCb = pSnode->msgCb;
2,688,836✔
61
  //pTask->pMsgCb = &pSnode->msgCb;
62
  pTask->pWorkerCb = pWorkerCb;
2,689,343✔
63
  req.curWinIdx = 0;
2,688,836✔
64
  TAOS_CHECK_EXIT(stRunnerTaskExecute(pTask, &req));
2,688,836✔
65

66
_exit:
2,689,573✔
67

68
  tDestroySTriggerCalcRequest(&req);
2,689,573✔
69
  SRpcMsg rsp = {.code = code, .msgType = TDMT_STREAM_TRIGGER_CALC_RSP, .contLen = 0, .pCont = NULL, .info = pRpcMsg->info};
2,689,573✔
70
  if (rpcSendResponse(&rsp) != 0) {
2,689,343✔
71
    sndError("failed to send response, msg:%p", &rsp);
×
72
  }
73
  
74
  streamReleaseTask(taskAddr);
2,689,343✔
75

76
  if(code == TSDB_CODE_MND_STREAM_TABLE_NOT_CREATE) {
2,689,113✔
77
    code = 0; // not real error, just notify trigger the table is not created
×
78
  }
79

80
  if (code) {
2,689,113✔
81
    sndError("%s failed at line %d, error:%s", __FUNCTION__, lino, tstrerror(code));
1,903,408✔
82
  }
83
  
84
  return code;
2,689,343✔
85
}
86

87
static int32_t handleSyncDeleteCheckPointReq(SSnode* pSnode, SRpcMsg* pRpcMsg) {
2,304✔
88
  int64_t streamId = *(int64_t*)POINTER_SHIFT(pRpcMsg->pCont, sizeof(SMsgHead));
2,304✔
89
  streamDeleteCheckPoint(streamId);
2,304✔
90
  return 0;
2,304✔
91
}
92

93
static int32_t handleSyncWriteCheckPointReq(SSnode* pSnode, SRpcMsg* pRpcMsg) {
6,362✔
94
  int32_t ver = *(int32_t*)POINTER_SHIFT(pRpcMsg->pCont, sizeof(SMsgHead) + INT_BYTES);
6,362✔
95
  int64_t streamId = *(int64_t*)POINTER_SHIFT(pRpcMsg->pCont, sizeof(SMsgHead) + 2 * INT_BYTES);
6,362✔
96
  SRpcMsg rsp = {.code = 0, .msgType = TDMT_STREAM_SYNC_CHECKPOINT_RSP, .info = pRpcMsg->info};
6,362✔
97

98
  stDebug("[checkpoint] handleSyncWriteCheckPointReq streamId:%" PRIx64 ",ver:%d", streamId, ver);
6,362✔
99
  void*   data = NULL;
6,362✔
100
  int64_t dataLen = 0;
6,362✔
101
  int32_t code = streamReadCheckPoint(streamId, &data, &dataLen);
6,362✔
102
  if (code != 0 || (errorIsFileNotExist(terrno) && ver == -1)) {
6,362✔
103
    goto end;
3,171✔
104
  }
105
  if (errorIsFileNotExist(terrno) || ver > *(int32_t*)POINTER_SHIFT(data, INT_BYTES)) {
3,191✔
106
    int32_t ret = streamWriteCheckPoint(streamId, POINTER_SHIFT(pRpcMsg->pCont, sizeof(SMsgHead)), pRpcMsg->contLen - sizeof(SMsgHead));
1,877✔
107
    stDebug("[checkpoint] streamId:%" PRIx64 ", checkpoint local updated, ver:%d, dataLen:%" PRId64 ", ret:%d", streamId, ver, dataLen, ret);
1,877✔
108
  }
109
  if (errorIsFileNotExist(terrno) || ver >= *(int32_t*)POINTER_SHIFT(data, INT_BYTES)) {
3,191✔
110
    stDebug("[checkpoint] streamId:%" PRIx64 ", checkpoint no need send back, ver:%d, dataLen:%" PRId64, streamId, ver, dataLen);
3,191✔
111
    dataLen = 0;
3,191✔
112
    taosMemoryFreeClear(data);
3,191✔
113
  }
114
  
115
end:
6,362✔
116
  if (data == NULL) {
6,362✔
117
    rsp.contLen = 2 * INT_BYTES + LONG_BYTES;
6,362✔
118
    rsp.pCont = rpcMallocCont(rsp.contLen);
6,362✔
119
    if (rsp.pCont == NULL) {
6,362✔
120
      rsp.code = TSDB_CODE_OUT_OF_MEMORY;
×
121
    } else {
122
      *(int32_t*)(POINTER_SHIFT(rsp.pCont, INT_BYTES)) = -1;  // no checkpoint
6,362✔
123
      *(int64_t*)(POINTER_SHIFT(rsp.pCont, 2 * INT_BYTES)) = streamId;
6,362✔
124
    }
125
  } else {
126
    rsp.pCont = rpcMallocCont(dataLen);
×
127
    if (rsp.pCont == NULL) {
×
128
      rsp.code = TSDB_CODE_OUT_OF_MEMORY;
×
129
    } else {
130
      memcpy(rsp.pCont, data, dataLen);
×
131
      rsp.contLen = dataLen;
×
132
      taosMemoryFreeClear(data); 
×
133
    } 
134
  }
135
  
136
  if (rpcSendResponse(&rsp) != 0) {
6,362✔
137
    sndError("failed to send write checkpoint response, msg:%p", &rsp);
×
138
  }
139

140
  return 0;
6,362✔
141
}
142

143
static int32_t handleSyncWriteCheckPointRsp(SSnode* pSnode, SRpcMsg* pRpcMsg) {
6,356✔
144
  if (pRpcMsg->code != 0) {
6,356✔
145
    stError("[checkpoint] handleSyncWriteCheckPointRsp, code:%d, msgType:%d", pRpcMsg->code, pRpcMsg->msgType);
×
146
    return pRpcMsg->code;
×
147
  } 
148
  void* data = pRpcMsg->pCont;
6,356✔
149
  int32_t dataLen = pRpcMsg->contLen;
6,356✔
150
  
151
  int32_t ver = *(int32_t*)(POINTER_SHIFT(data, INT_BYTES));
6,356✔
152
  int64_t streamId = *(int64_t*)(POINTER_SHIFT(data, 2 * INT_BYTES));
6,356✔
153
  stDebug("[checkpoint] handleSyncWriteCheckPointRsp, ver:%d, streamId:%"PRIx64",dataLen:%d", 
6,356✔
154
    ver, streamId, dataLen);
155

156
  if (ver != -1){
6,356✔
157
    (void)streamWriteCheckPoint(streamId, data, dataLen);
×
158
  }
159
  return streamCheckpointSetReady(streamId);
6,356✔
160
}
161

162
static int32_t buildStreamFetchRsp(SSDataBlock* pBlock, void** data, size_t* size, int8_t precision, bool finished) {
6,455,152✔
163
  int32_t code = 0;
6,455,152✔
164
  int32_t lino = 0;
6,455,152✔
165
  void*   buf =  NULL;
6,455,152✔
166

167
  int32_t blockSize = pBlock == NULL ? 0 : blockGetInternalEncodeSize(pBlock);
6,455,152✔
168
  size_t dataEncodeBufSize = sizeof(SRetrieveTableRsp) + INT_BYTES * 2 + blockSize;
6,455,389✔
169
  buf = rpcMallocCont(dataEncodeBufSize);
6,455,389✔
170
  if (!buf) {
6,455,389✔
171
    code = terrno;
×
172
    goto end;
×
173
  }
174

175
  SRetrieveTableRsp* pRetrieve = (SRetrieveTableRsp*)buf;
6,455,389✔
176
  pRetrieve->version = 0;
6,455,389✔
177
  pRetrieve->precision = precision;
6,455,389✔
178
  pRetrieve->compressed = 0;
6,455,389✔
179
  *((int32_t*)(pRetrieve->data)) = blockSize;
6,455,389✔
180
  *((int32_t*)(pRetrieve->data + INT_BYTES)) = blockSize;
6,455,389✔
181
  if (pBlock == NULL || pBlock->info.rows == 0) {
6,455,389✔
182
    pRetrieve->numOfRows = 0;
3,250,580✔
183
    pRetrieve->numOfBlocks = 0;
3,250,580✔
184
    pRetrieve->completed = 1;
3,250,580✔
185
  } else {
186
    pRetrieve->numOfRows = htobe64((int64_t)pBlock->info.rows);
3,204,809✔
187
    pRetrieve->numOfBlocks = htonl(1);
3,204,572✔
188

189
    uint32_t numOfCols = (uint32_t)taosArrayGetSize(pBlock->pDataBlock);
3,204,572✔
190
    pRetrieve->numOfCols = htonl(numOfCols);
3,204,809✔
191

192
    int32_t actualLen = blockEncodeInternal(pBlock, pRetrieve->data + INT_BYTES * 2, blockSize, numOfCols);
3,204,809✔
193
    if (actualLen < 0) {
3,204,572✔
194
      code = terrno;
×
195
      goto end;
×
196
    }
197
  }
198
  if (finished) {
6,455,152✔
199
    pRetrieve->completed = 1;
3,290,813✔
200
  }
201

202
  *data = buf;
6,455,152✔
203
  *size = dataEncodeBufSize;
6,455,083✔
204
  buf = NULL;
6,455,320✔
205

206
end:
6,455,320✔
207
  rpcFreeCont(buf);
6,455,320✔
208
  return code;
6,455,389✔
209
}
210

211
static int32_t handleStreamFetchData(SSnode* pSnode, void *pWorkerCb, SRpcMsg* pRpcMsg) {
1,175,651✔
212
  int32_t code = 0, lino = 0;
1,175,651✔
213
  void* taskAddr = NULL;
1,175,651✔
214
  SResFetchReq req = {0};
1,175,651✔
215
  SSTriggerCalcRequest calcReq = {0};
1,175,651✔
216
  SStreamRunnerTask* pTask = NULL;
1,175,651✔
217
  void* buf = NULL;
1,175,651✔
218
  size_t size = 0;
1,175,651✔
219

220
  stDebug("handleStreamFetchData, msgType:%s, contLen:%d 0x%" PRIx64 ":0x%" PRIx64, 
1,175,651✔
221
      TMSG_INFO(pRpcMsg->msgType), pRpcMsg->contLen, TRACE_GET_ROOTID(&pRpcMsg->info.traceId), TRACE_GET_MSGID(&pRpcMsg->info.traceId));
222
  
223
  TAOS_CHECK_EXIT(tDeserializeSResFetchReq(pRpcMsg->pCont,pRpcMsg->contLen, &req));
1,175,651✔
224

225
  calcReq.streamId = req.queryId;
1,175,582✔
226
  calcReq.runnerTaskId = req.taskId;
1,175,582✔
227
  calcReq.brandNew = req.reset;
1,175,582✔
228
  calcReq.execId = req.execId;
1,175,582✔
229
  if (req.pStRtFuncInfo) {
1,175,582✔
230
    calcReq.sessionId = req.pStRtFuncInfo->sessionId;
1,175,330✔
231
    calcReq.triggerType = req.pStRtFuncInfo->triggerType;
1,175,651✔
232
    calcReq.isWindowTrigger = req.pStRtFuncInfo->isWindowTrigger;
1,175,399✔
233
    calcReq.precision = req.pStRtFuncInfo->precision;
1,175,651✔
234
    TSWAP(calcReq.groupColVals, req.pStRtFuncInfo->pStreamPartColVals);
1,175,582✔
235
    TSWAP(calcReq.params, req.pStRtFuncInfo->pStreamPesudoFuncVals);
1,175,582✔
236
    calcReq.gid = req.pStRtFuncInfo->groupId;
1,175,399✔
237
    calcReq.curWinIdx = req.pStRtFuncInfo->curIdx;
1,175,651✔
238
  }
239
  calcReq.pOutBlock = NULL;
1,175,834✔
240

241
  TAOS_CHECK_EXIT(streamAcquireTask(calcReq.streamId, calcReq.runnerTaskId, (SStreamTask**)&pTask, &taskAddr));
1,175,834✔
242

243
  pTask->msgCb = pSnode->msgCb;
1,175,399✔
244
  //pTask->pMsgCb = &pSnode->msgCb;
245
  pTask->pWorkerCb = pWorkerCb;
1,175,651✔
246
  
247
  TAOS_CHECK_EXIT(stRunnerTaskExecute(pTask, &calcReq));
1,175,330✔
248

249
  TAOS_CHECK_EXIT(buildStreamFetchRsp(calcReq.pOutBlock, &buf, &size, 0, false));
1,175,651✔
250

251
_exit:
1,175,651✔
252

253
  tDestroySTriggerCalcRequest(&calcReq);
1,175,651✔
254
  tDestroySResFetchReq(&req);
1,175,582✔
255
  SRpcMsg rsp = {.code = code, .msgType = TDMT_STREAM_FETCH_FROM_RUNNER_RSP, .contLen = size, .pCont = buf, .info = pRpcMsg->info};
1,175,651✔
256
  tmsgSendRsp(&rsp);
1,175,582✔
257
  
258
  streamReleaseTask(taskAddr);
1,175,582✔
259

260
  if (code) {
1,175,651✔
261
    sndError("%s failed at line %d, error:%s", __FUNCTION__, lino, tstrerror(code));
×
262
  }
263
  
264
  return code;
1,175,651✔
265
}
266

267
static int32_t handleStreamFetchFromCache(SSnode* pSnode, SRpcMsg* pRpcMsg) {
5,279,738✔
268
  int32_t code = 0, lino = 0;
5,279,738✔
269
  SResFetchReq req = {0};
5,279,738✔
270
  SStreamCacheReadInfo readInfo = {0};
5,279,738✔
271
  void* buf = NULL;
5,279,738✔
272
  int64_t streamId = 0;
5,279,738✔
273
  size_t size = 0;
5,279,738✔
274
  TAOS_CHECK_EXIT(tDeserializeSResFetchReq(pRpcMsg->pCont, pRpcMsg->contLen, &req));
5,279,501✔
275

276
  streamId = req.queryId;
5,279,502✔
277
  readInfo.taskInfo.streamId = req.queryId;
5,279,502✔
278
  readInfo.taskInfo.taskId = req.taskId;
5,279,502✔
279
  readInfo.taskInfo.sessionId = req.pStRtFuncInfo->sessionId;
5,279,502✔
280
  readInfo.gid = req.pStRtFuncInfo->groupId;
5,279,738✔
281
  //SSTriggerCalcParam* pParam = taosArrayGet(req.pStRtFuncInfo->pStreamPesudoFuncVals, req.pStRtFuncInfo->curIdx);
282
  readInfo.start = req.pStRtFuncInfo->curWindow.skey;
5,279,738✔
283
  readInfo.end = req.pStRtFuncInfo->curWindow.ekey;
5,279,502✔
284
  bool finished;
5,276,944✔
285
  TAOS_CHECK_EXIT(stRunnerFetchDataFromCache(&readInfo,&finished));
5,278,264✔
286

287
  TAOS_CHECK_EXIT(buildStreamFetchRsp(readInfo.pBlock, &buf, &size, 0, finished));
5,279,501✔
288

289
_exit:
5,279,738✔
290

291
  printDataBlock(readInfo.pBlock, __func__, "fetchFromCache", streamId);
5,279,501✔
292

293
  stsDebug("task %" PRIx64 " TDMT_STREAM_FETCH_FROM_CACHE_RSP with code:%d rows:%" PRId64 ", size:%d, time range:[%" PRId64 ", %" PRId64 "]", 
5,279,501✔
294
      req.taskId, code, readInfo.pBlock ? readInfo.pBlock->info.rows : 0, (int32_t)size, readInfo.start, readInfo.end);  
295
      
296
  SRpcMsg rsp = {.code = code, .msgType = TDMT_STREAM_FETCH_FROM_CACHE_RSP, .contLen = size, .pCont = buf, .info = pRpcMsg->info};
5,279,501✔
297
  tmsgSendRsp(&rsp);
5,279,501✔
298

299
  if (code) {
5,279,738✔
300
    sndError("%s failed at line %d, error:%s", __FUNCTION__, lino, tstrerror(code));
×
301
  }
302

303
  blockDataDestroy(readInfo.pBlock);
5,279,738✔
304
  tDestroySResFetchReq(&req);
5,278,764✔
305
  
306
  return code;
5,279,738✔
307
}
308

309
static void sndSendErrorRrsp(SRpcMsg *pMsg, int32_t errCode) {
×
310
  SRpcMsg             rspMsg = {0};
×
311

312
  rspMsg.info = pMsg->info;
×
313
  rspMsg.pCont = NULL;
×
314
  rspMsg.contLen = 0;
×
315
  rspMsg.code = errCode;
×
316
  rspMsg.msgType = pMsg->msgType;
×
317

318
  tmsgSendRsp(&rspMsg);
×
319
}
×
320

321
static int32_t handleStreamDropTableReq(SSnode* pSnode, SRpcMsg* pRpcMsg) {
×
322
  SSTriggerDropRequest req = {0};
×
323
  SStreamRunnerTask* pTask = NULL;
×
324
  void* taskAddr = NULL;
×
325
  int32_t code = 0, lino = 0;
×
326
  TAOS_CHECK_EXIT(tDeserializeSTriggerDropTableRequest(POINTER_SHIFT(pRpcMsg->pCont, sizeof(SMsgHead)), pRpcMsg->contLen - sizeof(SMsgHead), &req));
×
327
  TAOS_CHECK_EXIT(streamAcquireTask(req.streamId, req.runnerTaskId, (SStreamTask**)&pTask, &taskAddr));
×
328
  
329
  pTask->msgCb = pSnode->msgCb;
×
330
  TAOS_CHECK_EXIT(stRunnerTaskDropTable(pTask, &req));
×
331

332
_exit:
×
333
  tDestroySSTriggerDropRequest(&req);
×
334
  if (code) {
×
335
    sndError("%s failed at line %d, error:%s", __FUNCTION__, lino, tstrerror(code));
×
336
    sndSendErrorRrsp(pRpcMsg, code);
×
337
  } else {
338
    SRpcMsg rsp = {.code = 0, .msgType = TDMT_STREAM_TRIGGER_DROP_RSP, .contLen = 0, .pCont = NULL, .info = pRpcMsg->info};
×
339
    tmsgSendRsp(&rsp);
×
340
  }
341
  streamReleaseTask(taskAddr);
×
342

343
  return code;
×
344
}
345

346

347
int32_t sndProcessStreamMsg(SSnode *pSnode, void *pWorkerCb, SRpcMsg *pMsg) {
9,159,546✔
348
  int32_t code = 0, lino = 0;
9,159,546✔
349
  switch (pMsg->msgType) {
9,159,546✔
350
    case TDMT_STREAM_TRIGGER_CALC:
2,689,573✔
351
      TAOS_CHECK_EXIT(handleTriggerCalcReq(pSnode, pWorkerCb, pMsg));
2,689,573✔
352
      break;
785,935✔
353
    case TDMT_STREAM_DELETE_CHECKPOINT:
2,304✔
354
      TAOS_CHECK_EXIT(handleSyncDeleteCheckPointReq(pSnode, pMsg));
2,304✔
355
      break;
2,304✔
356
    case TDMT_STREAM_SYNC_CHECKPOINT:
6,362✔
357
      TAOS_CHECK_EXIT(handleSyncWriteCheckPointReq(pSnode, pMsg));
6,362✔
358
      break;
6,362✔
359
    case TDMT_STREAM_SYNC_CHECKPOINT_RSP:
6,356✔
360
      TAOS_CHECK_EXIT(handleSyncWriteCheckPointRsp(pSnode, pMsg));
6,356✔
361
      break;
4,110✔
362
    case TDMT_STREAM_FETCH_FROM_RUNNER:
1,175,651✔
363
      TAOS_CHECK_EXIT(handleStreamFetchData(pSnode, pWorkerCb, pMsg));
1,175,651✔
364
      break;
1,175,392✔
365
    case TDMT_STREAM_FETCH_FROM_CACHE:
5,279,738✔
366
      TAOS_CHECK_EXIT(handleStreamFetchFromCache(pSnode, pMsg));
5,279,738✔
367
      break;
5,278,764✔
368
      case TDMT_STREAM_TRIGGER_DROP:
×
369
     TAOS_CHECK_EXIT(handleStreamDropTableReq(pSnode, pMsg));
×
370
      break;
×
371
    default:
×
372
      sndError("invalid snode msg:%d", pMsg->msgType);
×
373
      TAOS_CHECK_EXIT(TSDB_CODE_INVALID_MSG);
×
374
  }
375

376
_exit:
×
377

378
  if (code) {
9,158,751✔
379
    sndError("%s failed at line %d, error:%s", __FUNCTION__, lino, tstrerror(code));
1,905,884✔
380
  }
381
  
382
  return code;
9,158,751✔
383
}
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