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

taosdata / TDengine / #4851

14 Nov 2025 08:06AM UTC coverage: 63.754% (+0.03%) from 63.728%
#4851

push

travis-ci

guanshengliang
Merge branch '3.0' into cover/3.0

354 of 675 new or added lines in 18 files covered. (52.44%)

3145 existing lines in 113 files now uncovered.

149128 of 233910 relevant lines covered (63.75%)

117183401.67 hits per line

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

88.57
/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 "tdatablock.h"
19
#include "tuuid.h"
20
#include "stream.h"
21
#include "streamRunner.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) {
105,180✔
29
  int32_t code = 0;
105,180✔
30
  SSnode *pSnode = taosMemoryCalloc(1, sizeof(SSnode));
105,180✔
31
  if (pSnode == NULL) {
105,180✔
32
    return NULL;
×
33
  }
34

35
  pSnode->msgCb = pOption->msgCb;
105,180✔
36

37
  return pSnode;
105,180✔
38
}
39

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

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

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

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

66
_exit:
2,489,212✔
67

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

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

80
  if (code) {
2,489,212✔
81
    sndError("%s failed at line %d, error:%s", __FUNCTION__, lino, tstrerror(code));
2,029,094✔
82
  }
83
  
84
  return code;
2,489,212✔
85
}
86

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

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

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

140
  return 0;
9,062✔
141
}
142

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

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

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

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

175
  SRetrieveTableRsp* pRetrieve = (SRetrieveTableRsp*)buf;
3,489,129✔
176
  pRetrieve->version = 0;
3,489,129✔
177
  pRetrieve->precision = precision;
3,489,129✔
178
  pRetrieve->compressed = 0;
3,489,129✔
179
  *((int32_t*)(pRetrieve->data)) = blockSize;
3,489,129✔
180
  *((int32_t*)(pRetrieve->data + INT_BYTES)) = blockSize;
3,489,129✔
181
  if (pBlock == NULL || pBlock->info.rows == 0) {
3,489,129✔
182
    pRetrieve->numOfRows = 0;
2,361,883✔
183
    pRetrieve->numOfBlocks = 0;
2,362,283✔
184
    pRetrieve->completed = 1;
2,362,283✔
185
  } else {
186
    pRetrieve->numOfRows = htobe64((int64_t)pBlock->info.rows);
1,127,246✔
187
    pRetrieve->numOfBlocks = htonl(1);
1,127,246✔
188
    int32_t actualLen = blockEncodeInternal(pBlock, pRetrieve->data + INT_BYTES * 2, blockSize, taosArrayGetSize(pBlock->pDataBlock));
1,126,846✔
189
    if (actualLen < 0) {
1,127,246✔
190
      code = terrno;
×
191
      goto end;
×
192
    }
193
  }
194
  if (finished) {
3,489,529✔
195
    pRetrieve->completed = 1;
2,654,246✔
196
  }
197

198
  *data = buf;
3,489,529✔
199
  *size = dataEncodeBufSize;
3,489,529✔
200
  buf = NULL;
3,489,529✔
201

202
end:
3,489,529✔
203
  rpcFreeCont(buf);
3,489,529✔
204
  return code;
3,489,529✔
205
}
206

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

216
  stDebug("handleStreamFetchData, msgType:%s, contLen:%d 0x%" PRIx64 ":0x%" PRIx64, 
44,754✔
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));
44,754✔
220

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

235
  TAOS_CHECK_EXIT(streamAcquireTask(calcReq.streamId, calcReq.runnerTaskId, (SStreamTask**)&pTask, &taskAddr));
44,754✔
236

237
  pTask->msgCb = pSnode->msgCb;
44,754✔
238
  //pTask->pMsgCb = &pSnode->msgCb;
239
  pTask->pWorkerCb = pWorkerCb;
44,754✔
240
  
241
  TAOS_CHECK_EXIT(stRunnerTaskExecute(pTask, &calcReq));
44,754✔
242

243
  TAOS_CHECK_EXIT(buildStreamFetchRsp(calcReq.pOutBlock, &buf, &size, 0, false));
44,754✔
244

245
_exit:
44,754✔
246

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

254
  if (code) {
44,754✔
UNCOV
255
    sndError("%s failed at line %d, error:%s", __FUNCTION__, lino, tstrerror(code));
×
256
  }
257
  
258
  return code;
44,754✔
259
}
260

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

270
  streamId = req.queryId;
3,444,375✔
271
  readInfo.taskInfo.streamId = req.queryId;
3,444,375✔
272
  readInfo.taskInfo.taskId = req.taskId;
3,444,375✔
273
  readInfo.taskInfo.sessionId = req.pStRtFuncInfo->sessionId;
3,444,375✔
274
  readInfo.gid = req.pStRtFuncInfo->groupId;
3,444,375✔
275
  //SSTriggerCalcParam* pParam = taosArrayGet(req.pStRtFuncInfo->pStreamPesudoFuncVals, req.pStRtFuncInfo->curIdx);
276
  readInfo.start = req.pStRtFuncInfo->curWindow.skey;
3,444,375✔
277
  readInfo.end = req.pStRtFuncInfo->curWindow.ekey;
3,444,775✔
278
  bool finished;
3,434,119✔
279
  TAOS_CHECK_EXIT(stRunnerFetchDataFromCache(&readInfo,&finished));
3,444,775✔
280

281
  TAOS_CHECK_EXIT(buildStreamFetchRsp(readInfo.pBlock, &buf, &size, 0, finished));
3,444,375✔
282

283
_exit:
3,444,775✔
284

285
  printDataBlock(readInfo.pBlock, __func__, "fetchFromCache", streamId);
3,444,775✔
286

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

293
  if (code) {
3,444,775✔
UNCOV
294
    sndError("%s failed at line %d, error:%s", __FUNCTION__, lino, tstrerror(code));
×
295
  }
296

297
  blockDataDestroy(readInfo.pBlock);
3,444,775✔
298
  tDestroySResFetchReq(&req);
3,444,775✔
299
  
300
  return code;
3,444,775✔
301
}
302

UNCOV
303
static void sndSendErrorRrsp(SRpcMsg *pMsg, int32_t errCode) {
×
UNCOV
304
  SRpcMsg             rspMsg = {0};
×
305

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

312
  tmsgSendRsp(&rspMsg);
×
UNCOV
313
}
×
314

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

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

337
  return code;
427✔
338
}
339

340

341
int32_t sndProcessStreamMsg(SSnode *pSnode, void *pWorkerCb, SRpcMsg *pMsg) {
6,001,281✔
342
  int32_t code = 0, lino = 0;
6,001,281✔
343
  switch (pMsg->msgType) {
6,001,281✔
344
    case TDMT_STREAM_TRIGGER_CALC:
2,489,212✔
345
      TAOS_CHECK_EXIT(handleTriggerCalcReq(pSnode, pWorkerCb, pMsg));
2,489,212✔
346
      break;
460,116✔
347
    case TDMT_STREAM_DELETE_CHECKPOINT:
3,990✔
348
      TAOS_CHECK_EXIT(handleSyncDeleteCheckPointReq(pSnode, pMsg));
3,990✔
349
      break;
3,990✔
350
    case TDMT_STREAM_SYNC_CHECKPOINT:
9,062✔
351
      TAOS_CHECK_EXIT(handleSyncWriteCheckPointReq(pSnode, pMsg));
9,062✔
352
      break;
9,062✔
353
    case TDMT_STREAM_SYNC_CHECKPOINT_RSP:
9,061✔
354
      TAOS_CHECK_EXIT(handleSyncWriteCheckPointRsp(pSnode, pMsg));
9,061✔
355
      break;
6,562✔
356
    case TDMT_STREAM_FETCH_FROM_RUNNER:
44,754✔
357
      TAOS_CHECK_EXIT(handleStreamFetchData(pSnode, pWorkerCb, pMsg));
44,754✔
358
      break;
44,754✔
359
    case TDMT_STREAM_FETCH_FROM_CACHE:
3,444,775✔
360
      TAOS_CHECK_EXIT(handleStreamFetchFromCache(pSnode, pMsg));
3,444,775✔
361
      break;
3,444,775✔
362
      case TDMT_STREAM_TRIGGER_DROP:
427✔
363
     TAOS_CHECK_EXIT(handleStreamDropTableReq(pSnode, pMsg));
427✔
364
      break;
427✔
UNCOV
365
    default:
×
UNCOV
366
      sndError("invalid snode msg:%d", pMsg->msgType);
×
367
      TAOS_CHECK_EXIT(TSDB_CODE_INVALID_MSG);
×
368
  }
369

UNCOV
370
_exit:
×
371

372
  if (code) {
6,001,281✔
373
    sndError("%s failed at line %d, error:%s", __FUNCTION__, lino, tstrerror(code));
2,031,988✔
374
  }
375
  
376
  return code;
6,001,281✔
377
}
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