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

taosdata / TDengine / #4995

18 Mar 2026 06:26AM UTC coverage: 71.996% (-0.2%) from 72.244%
#4995

push

travis-ci

web-flow
merge: from main to 3.0 branch #34835

2 of 4 new or added lines in 2 files covered. (50.0%)

5312 existing lines in 167 files now uncovered.

244665 of 339830 relevant lines covered (72.0%)

135013613.72 hits per line

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

78.05
/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) {
64,413✔
29
  int32_t code = 0;
64,413✔
30
  SSnode *pSnode = taosMemoryCalloc(1, sizeof(SSnode));
64,413✔
31
  if (pSnode == NULL) {
64,413✔
32
    return NULL;
×
33
  }
34

35
  pSnode->msgCb = pOption->msgCb;
64,413✔
36

37
  return pSnode;
64,413✔
38
}
39

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

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

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

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

66
_exit:
2,378,451✔
67

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

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

80
  if (code) {
2,378,237✔
81
    sndError("%s failed at line %d, error:%s", __FUNCTION__, lino, tstrerror(code));
1,462,798✔
82
  }
83
  
84
  return code;
2,378,879✔
85
}
86

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

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

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

140
  return 0;
4,830✔
141
}
142

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

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

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

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

175
  SRetrieveTableRsp* pRetrieve = (SRetrieveTableRsp*)buf;
4,818,528✔
176
  pRetrieve->version = 0;
4,818,528✔
177
  pRetrieve->precision = precision;
4,818,528✔
178
  pRetrieve->compressed = 0;
4,818,528✔
179
  *((int32_t*)(pRetrieve->data)) = blockSize;
4,818,528✔
180
  *((int32_t*)(pRetrieve->data + INT_BYTES)) = blockSize;
4,818,528✔
181
  if (pBlock == NULL || pBlock->info.rows == 0) {
4,818,528✔
182
    pRetrieve->numOfRows = 0;
2,785,896✔
183
    pRetrieve->numOfBlocks = 0;
2,785,896✔
184
    pRetrieve->completed = 1;
2,785,896✔
185
  } else {
186
    pRetrieve->numOfRows = htobe64((int64_t)pBlock->info.rows);
2,032,632✔
187
    pRetrieve->numOfBlocks = htonl(1);
2,032,632✔
188
    int32_t actualLen = blockEncodeInternal(pBlock, pRetrieve->data + INT_BYTES * 2, blockSize, taosArrayGetSize(pBlock->pDataBlock));
2,032,632✔
189
    if (actualLen < 0) {
2,032,632✔
190
      code = terrno;
×
191
      goto end;
×
192
    }
193
  }
194
  if (finished) {
4,818,528✔
195
    pRetrieve->completed = 1;
2,913,165✔
196
  }
197

198
  *data = buf;
4,818,528✔
199
  *size = dataEncodeBufSize;
4,818,528✔
200
  buf = NULL;
4,818,528✔
201

202
end:
4,818,528✔
203
  rpcFreeCont(buf);
4,818,528✔
204
  return code;
4,818,528✔
205
}
206

207
static int32_t handleStreamFetchData(SSnode* pSnode, void *pWorkerCb, SRpcMsg* pRpcMsg) {
370,116✔
208
  int32_t code = 0, lino = 0;
370,116✔
209
  void* taskAddr = NULL;
370,116✔
210
  SResFetchReq req = {0};
370,291✔
211
  SSTriggerCalcRequest calcReq = {0};
370,291✔
212
  SStreamRunnerTask* pTask = NULL;
370,116✔
213
  void* buf = NULL;
370,116✔
214
  size_t size = 0;
369,941✔
215

216
  stDebug("handleStreamFetchData, msgType:%s, contLen:%d 0x%" PRIx64 ":0x%" PRIx64, 
369,941✔
217
      TMSG_INFO(pRpcMsg->msgType), pRpcMsg->contLen, TRACE_GET_ROOTID(&pRpcMsg->info.traceId), TRACE_GET_MSGID(&pRpcMsg->info.traceId));
218
  
219
  TAOS_CHECK_EXIT(tDeserializeSResFetchReq(pRpcMsg->pCont,pRpcMsg->contLen, &req));
370,116✔
220

221
  calcReq.streamId = req.queryId;
370,291✔
222
  calcReq.runnerTaskId = req.taskId;
370,291✔
223
  calcReq.brandNew = req.reset;
370,291✔
224
  calcReq.execId = req.execId;
370,291✔
225
  if (req.pStRtFuncInfo) {
370,291✔
226
    calcReq.sessionId = req.pStRtFuncInfo->sessionId;
370,291✔
227
    calcReq.triggerType = req.pStRtFuncInfo->triggerType;
370,291✔
228
    calcReq.isWindowTrigger = req.pStRtFuncInfo->isWindowTrigger;
370,291✔
229
    calcReq.precision = req.pStRtFuncInfo->precision;
370,291✔
230
    TSWAP(calcReq.groupColVals, req.pStRtFuncInfo->pStreamPartColVals);
370,291✔
231
    TSWAP(calcReq.params, req.pStRtFuncInfo->pStreamPesudoFuncVals);
370,291✔
232
    calcReq.gid = req.pStRtFuncInfo->groupId;
370,291✔
233
    calcReq.curWinIdx = req.pStRtFuncInfo->curIdx;
370,291✔
234
  }
235
  calcReq.pOutBlock = NULL;
370,291✔
236

237
  TAOS_CHECK_EXIT(streamAcquireTask(calcReq.streamId, calcReq.runnerTaskId, (SStreamTask**)&pTask, &taskAddr));
370,291✔
238

239
  pTask->msgCb = pSnode->msgCb;
370,291✔
240
  //pTask->pMsgCb = &pSnode->msgCb;
241
  pTask->pWorkerCb = pWorkerCb;
370,291✔
242
  
243
  TAOS_CHECK_EXIT(stRunnerTaskExecute(pTask, &calcReq));
370,291✔
244

245
  TAOS_CHECK_EXIT(buildStreamFetchRsp(calcReq.pOutBlock, &buf, &size, 0, false));
370,291✔
246

247
_exit:
370,291✔
248

249
  tDestroySTriggerCalcRequest(&calcReq);
370,291✔
250
  tDestroySResFetchReq(&req);
370,291✔
251
  SRpcMsg rsp = {.code = code, .msgType = TDMT_STREAM_FETCH_FROM_RUNNER_RSP, .contLen = size, .pCont = buf, .info = pRpcMsg->info};
370,291✔
252
  tmsgSendRsp(&rsp);
370,291✔
253
  
254
  streamReleaseTask(taskAddr);
370,291✔
255

256
  if (code) {
370,291✔
257
    sndError("%s failed at line %d, error:%s", __FUNCTION__, lino, tstrerror(code));
×
258
  }
259
  
260
  return code;
370,291✔
261
}
262

263
static int32_t handleStreamFetchFromCache(SSnode* pSnode, SRpcMsg* pRpcMsg) {
4,448,237✔
264
  int32_t code = 0, lino = 0;
4,448,237✔
265
  SResFetchReq req = {0};
4,448,237✔
266
  SStreamCacheReadInfo readInfo = {0};
4,448,237✔
267
  void* buf = NULL;
4,448,237✔
268
  int64_t streamId = 0;
4,448,237✔
269
  size_t size = 0;
4,448,237✔
270
  TAOS_CHECK_EXIT(tDeserializeSResFetchReq(pRpcMsg->pCont, pRpcMsg->contLen, &req));
4,448,237✔
271

272
  streamId = req.queryId;
4,448,237✔
273
  readInfo.taskInfo.streamId = req.queryId;
4,448,237✔
274
  readInfo.taskInfo.taskId = req.taskId;
4,448,237✔
275
  readInfo.taskInfo.sessionId = req.pStRtFuncInfo->sessionId;
4,448,237✔
276
  readInfo.gid = req.pStRtFuncInfo->groupId;
4,448,237✔
277
  //SSTriggerCalcParam* pParam = taosArrayGet(req.pStRtFuncInfo->pStreamPesudoFuncVals, req.pStRtFuncInfo->curIdx);
278
  readInfo.start = req.pStRtFuncInfo->curWindow.skey;
4,448,237✔
279
  readInfo.end = req.pStRtFuncInfo->curWindow.ekey;
4,448,237✔
280
  bool finished;
4,447,085✔
281
  TAOS_CHECK_EXIT(stRunnerFetchDataFromCache(&readInfo,&finished));
4,448,237✔
282

283
  TAOS_CHECK_EXIT(buildStreamFetchRsp(readInfo.pBlock, &buf, &size, 0, finished));
4,448,237✔
284

285
_exit:
4,448,237✔
286

287
  printDataBlock(readInfo.pBlock, __func__, "fetchFromCache", streamId);
4,448,237✔
288

289
  stsDebug("task %" PRIx64 " TDMT_STREAM_FETCH_FROM_CACHE_RSP with code:%d rows:%" PRId64 ", size:%d, time range:[%" PRId64 ", %" PRId64 "]", 
4,448,237✔
290
      req.taskId, code, readInfo.pBlock ? readInfo.pBlock->info.rows : 0, (int32_t)size, readInfo.start, readInfo.end);  
291
      
292
  SRpcMsg rsp = {.code = code, .msgType = TDMT_STREAM_FETCH_FROM_CACHE_RSP, .contLen = size, .pCont = buf, .info = pRpcMsg->info};
4,448,237✔
293
  tmsgSendRsp(&rsp);
4,448,237✔
294

295
  if (code) {
4,448,237✔
296
    sndError("%s failed at line %d, error:%s", __FUNCTION__, lino, tstrerror(code));
×
297
  }
298

299
  blockDataDestroy(readInfo.pBlock);
4,448,237✔
300
  tDestroySResFetchReq(&req);
4,447,487✔
301
  
302
  return code;
4,448,237✔
303
}
304

305
static void sndSendErrorRrsp(SRpcMsg *pMsg, int32_t errCode) {
×
306
  SRpcMsg             rspMsg = {0};
×
307

308
  rspMsg.info = pMsg->info;
×
309
  rspMsg.pCont = NULL;
×
310
  rspMsg.contLen = 0;
×
311
  rspMsg.code = errCode;
×
312
  rspMsg.msgType = pMsg->msgType;
×
313

314
  tmsgSendRsp(&rspMsg);
×
315
}
×
316

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

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

UNCOV
339
  return code;
×
340
}
341

342

343
int32_t sndProcessStreamMsg(SSnode *pSnode, void *pWorkerCb, SRpcMsg *pMsg) {
7,208,785✔
344
  int32_t code = 0, lino = 0;
7,208,785✔
345
  switch (pMsg->msgType) {
7,208,785✔
346
    case TDMT_STREAM_TRIGGER_CALC:
2,378,451✔
347
      TAOS_CHECK_EXIT(handleTriggerCalcReq(pSnode, pWorkerCb, pMsg));
2,378,451✔
348
      break;
914,797✔
349
    case TDMT_STREAM_DELETE_CHECKPOINT:
2,319✔
350
      TAOS_CHECK_EXIT(handleSyncDeleteCheckPointReq(pSnode, pMsg));
2,319✔
351
      break;
2,319✔
352
    case TDMT_STREAM_SYNC_CHECKPOINT:
4,830✔
353
      TAOS_CHECK_EXIT(handleSyncWriteCheckPointReq(pSnode, pMsg));
4,830✔
354
      break;
4,830✔
355
    case TDMT_STREAM_SYNC_CHECKPOINT_RSP:
4,832✔
356
      TAOS_CHECK_EXIT(handleSyncWriteCheckPointRsp(pSnode, pMsg));
4,832✔
357
      break;
3,557✔
358
    case TDMT_STREAM_FETCH_FROM_RUNNER:
370,116✔
359
      TAOS_CHECK_EXIT(handleStreamFetchData(pSnode, pWorkerCb, pMsg));
370,116✔
360
      break;
370,291✔
361
    case TDMT_STREAM_FETCH_FROM_CACHE:
4,448,237✔
362
      TAOS_CHECK_EXIT(handleStreamFetchFromCache(pSnode, pMsg));
4,448,237✔
363
      break;
4,448,237✔
UNCOV
364
      case TDMT_STREAM_TRIGGER_DROP:
×
UNCOV
365
     TAOS_CHECK_EXIT(handleStreamDropTableReq(pSnode, pMsg));
×
UNCOV
366
      break;
×
367
    default:
×
368
      sndError("invalid snode msg:%d", pMsg->msgType);
×
369
      TAOS_CHECK_EXIT(TSDB_CODE_INVALID_MSG);
×
370
  }
371

372
_exit:
×
373

374
  if (code) {
7,208,960✔
375
    sndError("%s failed at line %d, error:%s", __FUNCTION__, lino, tstrerror(code));
1,464,929✔
376
  }
377
  
378
  return code;
7,208,960✔
379
}
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