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

taosdata / TDengine / #3552

11 Dec 2024 06:08AM UTC coverage: 62.526% (+0.7%) from 61.798%
#3552

push

travis-ci

web-flow
Merge pull request #29092 from taosdata/fix/3.0/TD-33146

fix:[TD-33146] stmt_get_tag_fields return error code

124833 of 255773 branches covered (48.81%)

Branch coverage included in aggregate %.

209830 of 279467 relevant lines covered (75.08%)

19111707.6 hits per line

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

81.36
/source/dnode/vnode/src/tq/tqStreamTask.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 "tq.h"
17
#include "vnd.h"
18

19
#define MAX_REPEAT_SCAN_THRESHOLD 3
20
#define SCAN_WAL_IDLE_DURATION    500    // idle for 500ms to do next wal scan
21

22
typedef struct SBuildScanWalMsgParam {
23
  int64_t metaId;
24
  int32_t numOfTasks;
25
} SBuildScanWalMsgParam;
26

27
static int32_t doScanWalForAllTasks(SStreamMeta* pStreamMeta);
28
static int32_t setWalReaderStartOffset(SStreamTask* pTask, int32_t vgId);
29
static bool    handleFillhistoryScanComplete(SStreamTask* pTask, int64_t ver);
30
static bool    taskReadyForDataFromWal(SStreamTask* pTask);
31
static int32_t doPutDataIntoInputQ(SStreamTask* pTask, int64_t maxVer, int32_t* numOfItems, bool* pSucc);
32
static int32_t tqScanWalInFuture(STQ* pTq, int32_t numOfTasks, int32_t idleDuration);
33
static int32_t doScanWalAsync(STQ* pTq, bool ckPause);
34

35
// extract data blocks(submit/delete) from WAL, and add them into the input queue for all the sources tasks.
36
int32_t tqScanWal(STQ* pTq) {
65,386✔
37
  SStreamMeta* pMeta = pTq->pStreamMeta;
65,386✔
38
  int32_t      vgId = pMeta->vgId;
65,386✔
39
  int64_t      st = taosGetTimestampMs();
65,406✔
40
  int32_t      numOfTasks = 0;
65,406✔
41

42
  tqDebug("vgId:%d continue to check if data in wal are available, scanCounter:%d", vgId, pMeta->scanInfo.scanCounter);
65,406✔
43

44
  // check all tasks
45
  int32_t code = doScanWalForAllTasks(pMeta);
65,407✔
46
  if (code) {
65,399!
47
    tqError("vgId:%d failed to start all tasks, try next time, code:%s", vgId, tstrerror(code));
×
48
    return code;
×
49
  }
50

51
  streamMetaWLock(pMeta);
65,399✔
52
  int32_t times = (--pMeta->scanInfo.scanCounter);
65,407✔
53
  if (times < 0) {
65,407!
54
    tqError("vgId:%d invalid scan counter:%d, reset to 0", vgId, times);
×
55
    times = 0;
×
56
  }
57

58
  numOfTasks = taosArrayGetSize(pMeta->pTaskList);
65,407✔
59
  streamMetaWUnLock(pMeta);
65,401✔
60

61
  int64_t el = (taosGetTimestampMs() - st);
65,405✔
62
  tqDebug("vgId:%d scan wal for stream tasks completed, elapsed time:%" PRId64 " ms", vgId, el);
65,405✔
63

64
  if (times > 0) {
65,405✔
65
    tqDebug("vgId:%d scan wal for stream tasks for %d times in %dms", vgId, times, SCAN_WAL_IDLE_DURATION);
21,520✔
66
    code = tqScanWalInFuture(pTq, numOfTasks, SCAN_WAL_IDLE_DURATION);
21,520✔
67
    if (code) {
21,520!
68
      tqError("vgId:%d sched scan wal in %dms failed, ignore this failure", vgId, SCAN_WAL_IDLE_DURATION);
×
69
    }
70
  }
71

72
  return code;
65,397✔
73
}
74

75
static void doStartScanWal(void* param, void* tmrId) {
21,520✔
76
  int32_t vgId = 0;
21,520✔
77
  STQ*    pTq = NULL;
21,520✔
78
  int32_t code = 0;
21,520✔
79

80
  SBuildScanWalMsgParam* pParam = (SBuildScanWalMsgParam*)param;
21,520✔
81

82
  SStreamMeta* pMeta = taosAcquireRef(streamMetaRefPool, pParam->metaId);
21,520✔
83
  if (pMeta == NULL) {
21,520✔
84
    tqError("metaRid:%" PRId64 " not valid now, stream meta has been freed", pParam->metaId);
188!
85
    taosMemoryFree(pParam);
188✔
86
    return;
188✔
87
  }
88

89
  vgId = pMeta->vgId;
21,332✔
90
  pTq = pMeta->ahandle;
21,332✔
91

92
  tqDebug("vgId:%d create msg to start wal scan, numOfTasks:%d, vnd restored:%d", vgId, pParam->numOfTasks,
21,332✔
93
          pTq->pVnode->restored);
94

95
  code = streamTaskSchedTask(&pTq->pVnode->msgCb, vgId, 0, 0, STREAM_EXEC_T_EXTRACT_WAL_DATA);
21,332✔
96
  if (code) {
21,332✔
97
    tqError("vgId:%d failed sched task to scan wal, code:%s", vgId, tstrerror(code));
602!
98
  }
99

100
  code = taosReleaseRef(streamMetaRefPool, pParam->metaId);
21,332✔
101
  if (code) {
21,332!
102
    tqError("vgId:%d failed to release ref for streamMeta, rid:%" PRId64 " code:%s", vgId, pParam->metaId,
×
103
            tstrerror(code));
104
  }
105

106
  taosMemoryFree(pParam);
21,332✔
107
}
108

109
int32_t tqScanWalInFuture(STQ* pTq, int32_t numOfTasks, int32_t idleDuration) {
21,516✔
110
  SStreamMeta*           pMeta = pTq->pStreamMeta;
21,516✔
111
  int32_t                code = 0;
21,516✔
112
  int32_t                vgId = TD_VID(pTq->pVnode);
21,516✔
113
  tmr_h                  pTimer = NULL;
21,516✔
114
  SBuildScanWalMsgParam* pParam = NULL;
21,516✔
115

116
  pParam = taosMemoryMalloc(sizeof(SBuildScanWalMsgParam));
21,516✔
117
  if (pParam == NULL) {
21,518!
118
    return terrno;
×
119
  }
120

121
  pParam->metaId = pMeta->rid;
21,518✔
122
  pParam->numOfTasks = numOfTasks;
21,518✔
123

124
  code = streamTimerGetInstance(&pTimer);
21,518✔
125
  if (code) {
21,514!
126
    tqError("vgId:%d failed to get tmr ctrl during sched scan wal", vgId);
×
127
    taosMemoryFree(pParam);
×
128
  } else {
129
    streamTmrStart(doStartScanWal, idleDuration, pParam, pTimer, &pMeta->scanInfo.scanTimer, vgId, "scan-wal-fut");
21,514✔
130
  }
131

132
  return code;
21,520✔
133
}
134

135
int32_t tqScanWalAsync(STQ* pTq, bool ckPause) {
519,084✔
136
  SStreamMeta* pMeta = pTq->pStreamMeta;
519,084✔
137
  bool         alreadyRestored = pTq->pVnode->restored;
519,084✔
138
  int32_t      code = 0;
519,084✔
139

140
  // do not launch the stream tasks, if it is a follower or not restored vnode.
141
  if (!(vnodeIsRoleLeader(pTq->pVnode) && alreadyRestored)) {
519,084✔
142
    return TSDB_CODE_SUCCESS;
35,627✔
143
  }
144

145
  streamMetaWLock(pMeta);
483,535✔
146
  code = doScanWalAsync(pTq, ckPause);
483,481✔
147
  streamMetaWUnLock(pMeta);
483,526✔
148
  return code;
483,535✔
149
}
150

151
int32_t tqStopStreamTasksAsync(STQ* pTq) {
5,057✔
152
  SStreamMeta* pMeta = pTq->pStreamMeta;
5,057✔
153
  int32_t      vgId = pMeta->vgId;
5,057✔
154
  return streamTaskSchedTask(&pTq->pVnode->msgCb, vgId, 0, 0, STREAM_EXEC_T_STOP_ALL_TASKS);
5,057✔
155
}
156

157
int32_t setWalReaderStartOffset(SStreamTask* pTask, int32_t vgId) {
70,449✔
158
  // seek the stored version and extract data from WAL
159
  int64_t firstVer = walReaderGetValidFirstVer(pTask->exec.pWalReader);
70,449✔
160
  if (pTask->chkInfo.nextProcessVer < firstVer) {
70,443✔
161
    tqWarn("vgId:%d s-task:%s ver:%" PRId64 " earlier than the first ver of wal range %" PRId64 ", forward to %" PRId64,
14!
162
           vgId, pTask->id.idStr, pTask->chkInfo.nextProcessVer, firstVer, firstVer);
163

164
    pTask->chkInfo.nextProcessVer = firstVer;
14✔
165

166
    // todo need retry if failed
167
    int32_t code = walReaderSeekVer(pTask->exec.pWalReader, pTask->chkInfo.nextProcessVer);
14✔
168
    if (code != TSDB_CODE_SUCCESS) {
14!
169
      return code;
×
170
    }
171

172
    // append the data for the stream
173
    tqDebug("vgId:%d s-task:%s wal reader seek to ver:%" PRId64, vgId, pTask->id.idStr, pTask->chkInfo.nextProcessVer);
14✔
174
  } else {
175
    int64_t currentVer = walReaderGetCurrentVer(pTask->exec.pWalReader);
70,429✔
176
    if (currentVer == -1) {  // we only seek the read for the first time
70,423✔
177
      int32_t code = walReaderSeekVer(pTask->exec.pWalReader, pTask->chkInfo.nextProcessVer);
4,742✔
178
      if (code != TSDB_CODE_SUCCESS) {  // no data in wal, quit
4,742!
179
        return code;
×
180
      }
181

182
      // append the data for the stream
183
      tqDebug("vgId:%d s-task:%s wal reader initial seek to ver:%" PRId64, vgId, pTask->id.idStr,
4,742✔
184
              pTask->chkInfo.nextProcessVer);
185
    }
186
  }
187

188
  int64_t skipToVer = walReaderGetSkipToVersion(pTask->exec.pWalReader);
70,437✔
189
  if (skipToVer != 0 && skipToVer > pTask->chkInfo.nextProcessVer) {
70,431✔
190
    int32_t code = walReaderSeekVer(pTask->exec.pWalReader, skipToVer);
293✔
191
    if (code != TSDB_CODE_SUCCESS) {  // no data in wal, quit
292!
192
      return code;
×
193
    }
194

195
    tqDebug("vgId:%d s-task:%s wal reader jump to ver:%" PRId64, vgId, pTask->id.idStr, skipToVer);
292✔
196
  }
197

198
  return TSDB_CODE_SUCCESS;
70,426✔
199
}
200

201
// todo handle memory error
202
bool handleFillhistoryScanComplete(SStreamTask* pTask, int64_t ver) {
485,910✔
203
  const char* id = pTask->id.idStr;
485,910✔
204
  int64_t     maxVer = pTask->step2Range.maxVer;
485,910✔
205

206
  if ((pTask->info.fillHistory == 1) && ver > maxVer) {
485,910✔
207
    if (!pTask->status.appendTranstateBlock) {
863!
208
      qWarn("s-task:%s fill-history scan WAL, nextProcessVer:%" PRId64 " out of the maximum ver:%" PRId64
863!
209
            ", not scan wal anymore, add transfer-state block into inputQ",
210
            id, ver, maxVer);
211

212
      double el = (taosGetTimestampMs() - pTask->execInfo.step2Start) / 1000.0;
863✔
213
      qDebug("s-task:%s scan-history from WAL stage(step 2) ended, range:%" PRId64 "-%" PRId64 ", elapsed time:%.2fs",
863✔
214
             id, pTask->step2Range.minVer, maxVer, el);
215
      int32_t code = streamTaskPutTranstateIntoInputQ(pTask);
863✔
216
      if (code) {
863!
217
        qError("s-task:%s failed to put trans-state into inputQ", id);
×
218
      }
219

220
      return true;
863✔
221
    } else {
222
      qWarn("s-task:%s fill-history scan WAL, nextProcessVer:%" PRId64 " out of the ver range:%" PRId64 "-%" PRId64
×
223
            ", not scan wal",
224
            id, ver, pTask->step2Range.minVer, maxVer);
225
    }
226
  }
227

228
  return false;
485,048✔
229
}
230

231
bool taskReadyForDataFromWal(SStreamTask* pTask) {
249,323✔
232
  // non-source or fill-history tasks don't need to response the WAL scan action.
233
  SSTaskBasicInfo* pInfo = &pTask->info;
249,323✔
234
  if ((pInfo->taskLevel != TASK_LEVEL__SOURCE) || (pTask->status.downstreamReady == 0)) {
249,323✔
235
    return false;
131,668✔
236
  }
237

238
  if (pInfo->taskLevel == TASK_LEVEL__SOURCE && pInfo->trigger == STREAM_TRIGGER_FORCE_WINDOW_CLOSE) {
117,655✔
239
    return false;
5,863✔
240
  }
241

242
  // not in ready state, do not handle the data from wal
243
  SStreamTaskState pState = streamTaskGetStatus(pTask);
111,792✔
244
  if (pState.state != TASK_STATUS__READY) {
111,788✔
245
    tqTrace("s-task:%s not ready for submit block in wal, status:%s", pTask->id.idStr, pState.name);
34,723✔
246
    return false;
34,722✔
247
  }
248

249
  // fill-history task has entered into the last phase, no need to anything
250
  if ((pInfo->fillHistory == 1) && pTask->status.appendTranstateBlock) {
77,065✔
251
    // the maximum version of data in the WAL has reached already, the step2 is done
252
    tqDebug("s-task:%s fill-history reach the maximum ver:%" PRId64 ", not scan wal anymore", pTask->id.idStr,
6,613✔
253
            pTask->dataRange.range.maxVer);
254
    return false;
6,613✔
255
  }
256

257
  // check if input queue is full or not
258
  if (streamQueueIsFull(pTask->inputq.queue)) {
70,452✔
259
    tqTrace("s-task:%s input queue is full, do nothing", pTask->id.idStr);
8!
260
    return false;
12✔
261
  }
262

263
  // the input queue of downstream task is full, so the output is blocked, stopped for a while
264
  if (pTask->inputq.status == TASK_INPUT_STATUS__BLOCKED) {
70,464!
265
    tqDebug("s-task:%s inputQ is blocked, do nothing", pTask->id.idStr);
×
266
    return false;
×
267
  }
268

269
  return true;
70,464✔
270
}
271

272
int32_t doPutDataIntoInputQ(SStreamTask* pTask, int64_t maxVer, int32_t* numOfItems, bool* pSucc) {
70,426✔
273
  const char* id = pTask->id.idStr;
70,426✔
274
  int32_t     numOfNewItems = 0;
70,426✔
275
  int32_t     code = 0;
70,426✔
276
  *pSucc = false;
70,426✔
277

278
  while (1) {
415,502✔
279
    if ((pTask->info.fillHistory == 1) && pTask->status.appendTranstateBlock) {
485,928!
280
      *numOfItems += numOfNewItems;
×
281
      return numOfNewItems > 0;
×
282
    }
283

284
    SStreamQueueItem* pItem = NULL;
485,928✔
285
    code = extractMsgFromWal(pTask->exec.pWalReader, (void**)&pItem, maxVer, id);
485,928✔
286
    if (code != TSDB_CODE_SUCCESS || pItem == NULL) {  // failed, continue
485,918✔
287
      int64_t currentVer = walReaderGetCurrentVer(pTask->exec.pWalReader);
70,242✔
288
      bool    itemInFillhistory = handleFillhistoryScanComplete(pTask, currentVer);
70,256✔
289
      if (itemInFillhistory) {
70,255✔
290
        numOfNewItems += 1;
702✔
291
      }
292
      break;
70,255✔
293
    }
294

295
    if (pItem != NULL) {
415,676✔
296
      code = streamTaskPutDataIntoInputQ(pTask, pItem);
415,675✔
297
      if (code == TSDB_CODE_SUCCESS) {
415,693✔
298
        numOfNewItems += 1;
415,688✔
299
        int64_t ver = walReaderGetCurrentVer(pTask->exec.pWalReader);
415,688✔
300
        pTask->chkInfo.nextProcessVer = ver;
415,673✔
301
        tqDebug("s-task:%s set ver:%" PRId64 " for reader after extract data from WAL", id, ver);
415,673✔
302

303
        bool itemInFillhistory = handleFillhistoryScanComplete(pTask, ver);
415,673✔
304
        if (itemInFillhistory) {
415,662✔
305
          break;
161✔
306
        }
307
      } else {
308
        if (code == TSDB_CODE_OUT_OF_MEMORY) {
5!
309
          tqError("s-task:%s failed to put data into inputQ, since out of memory", id);
×
310
        } else {
311
          tqTrace("s-task:%s append input queue failed, code:inputQ is full, ver:%" PRId64, id,
5!
312
                  pTask->chkInfo.nextProcessVer);
313
          code = walReaderSeekVer(pTask->exec.pWalReader, pTask->chkInfo.nextProcessVer);
5✔
314
          if (code) {
5!
315
            tqError("s-task:%s failed to seek ver to:%" PRId64 " in wal", id, pTask->chkInfo.nextProcessVer);
×
316
          }
317

318
          code = 0;  // reset the error code
5✔
319
        }
320

321
        break;
5✔
322
      }
323
    }
324
  }
325

326
  *numOfItems += numOfNewItems;
70,421✔
327
  *pSucc = (numOfNewItems > 0);
70,421✔
328
  return code;
70,421✔
329
}
330

331
int32_t doScanWalForAllTasks(SStreamMeta* pStreamMeta) {
65,405✔
332
  int32_t vgId = pStreamMeta->vgId;
65,405✔
333
  int32_t numOfTasks = taosArrayGetSize(pStreamMeta->pTaskList);
65,405✔
334
  if (numOfTasks == 0) {
65,407✔
335
    return TSDB_CODE_SUCCESS;
610✔
336
  }
337

338
  // clone the task list, to avoid the task update during scan wal files
339
  SArray* pTaskList = NULL;
64,797✔
340
  streamMetaWLock(pStreamMeta);
64,797✔
341
  pTaskList = taosArrayDup(pStreamMeta->pTaskList, NULL);
64,798✔
342
  streamMetaWUnLock(pStreamMeta);
64,797✔
343
  if (pTaskList == NULL) {
64,791!
344
    tqError("vgId:%d failed to create task list dup, code:%s", vgId, tstrerror(terrno));
×
345
    return terrno;
×
346
  }
347

348
  tqDebug("vgId:%d start to check wal to extract new submit block for %d tasks", vgId, numOfTasks);
64,791✔
349

350
  // update the new task number
351
  numOfTasks = taosArrayGetSize(pTaskList);
64,791✔
352

353
  for (int32_t i = 0; i < numOfTasks; ++i) {
314,770✔
354
    STaskId* pTaskId = taosArrayGet(pTaskList, i);
249,969✔
355
    if (pTaskId == NULL) {
249,938!
356
      continue;
179,536✔
357
    }
358

359
    SStreamTask* pTask = NULL;
249,938✔
360
    int32_t      code = streamMetaAcquireTask(pStreamMeta, pTaskId->streamId, pTaskId->taskId, &pTask);
249,938✔
361
    if (pTask == NULL || code != 0) {
249,908!
362
      continue;
551✔
363
    }
364

365
    if (!taskReadyForDataFromWal(pTask)) {
249,357✔
366
      streamMetaReleaseTask(pStreamMeta, pTask);
178,841✔
367
      continue;
178,971✔
368
    }
369

370
    // seek the stored version and extract data from WAL
371
    code = setWalReaderStartOffset(pTask, vgId);
70,456✔
372
    if (code != TSDB_CODE_SUCCESS) {
70,429!
373
      streamMetaReleaseTask(pStreamMeta, pTask);
×
374
      continue;
×
375
    }
376

377
    int32_t numOfItems = streamQueueGetNumOfItems(pTask->inputq.queue);
70,429✔
378
    int64_t maxVer = (pTask->info.fillHistory == 1) ? pTask->step2Range.maxVer : INT64_MAX;
70,456✔
379

380
    streamMutexLock(&pTask->lock);
70,456✔
381

382
    SStreamTaskState state = streamTaskGetStatus(pTask);
70,463✔
383
    if (state.state != TASK_STATUS__READY) {
70,452✔
384
      tqDebug("s-task:%s not ready for submit block from wal, status:%s", pTask->id.idStr, state.name);
18✔
385
      streamMutexUnlock(&pTask->lock);
18✔
386
      streamMetaReleaseTask(pStreamMeta, pTask);
18✔
387
      continue;
14✔
388
    }
389

390
    bool hasNewData = false;
70,434✔
391
    code = doPutDataIntoInputQ(pTask, maxVer, &numOfItems, &hasNewData);
70,434✔
392
    streamMutexUnlock(&pTask->lock);
70,414✔
393

394
    if ((numOfItems > 0) || hasNewData) {
70,444!
395
      code = streamTrySchedExec(pTask);
24,557✔
396
      if (code != TSDB_CODE_SUCCESS) {
24,556!
397
        streamMetaReleaseTask(pStreamMeta, pTask);
×
398
        taosArrayDestroy(pTaskList);
×
399
        return code;
×
400
      }
401
    }
402

403
    streamMetaReleaseTask(pStreamMeta, pTask);
70,443✔
404
  }
405

406
  taosArrayDestroy(pTaskList);
64,801✔
407
  return TSDB_CODE_SUCCESS;
64,793✔
408
}
409

410
int32_t doScanWalAsync(STQ* pTq, bool ckPause) {
483,470✔
411
  SStreamMeta* pMeta = pTq->pStreamMeta;
483,470✔
412
  bool         alreadyRestored = pTq->pVnode->restored;
483,470✔
413
  int32_t      vgId = pMeta->vgId;
483,470✔
414
  int32_t      numOfTasks = taosArrayGetSize(pMeta->pTaskList);
483,470✔
415

416
  if (numOfTasks == 0) {
483,500✔
417
    tqDebug("vgId:%d no stream tasks existed to run", vgId);
15!
418
    return 0;
18✔
419
  }
420

421
  if (pMeta->startInfo.startAllTasks) {
483,485✔
422
    tqTrace("vgId:%d in restart procedure, not scan wal", vgId);
23,310✔
423
    return 0;
23,310✔
424
  }
425

426
  pMeta->scanInfo.scanCounter += 1;
460,175✔
427
  if (pMeta->scanInfo.scanCounter > MAX_REPEAT_SCAN_THRESHOLD) {
460,175✔
428
    pMeta->scanInfo.scanCounter = MAX_REPEAT_SCAN_THRESHOLD;
392,433✔
429
  }
430

431
  if (pMeta->scanInfo.scanCounter > 1) {
460,175✔
432
    tqDebug("vgId:%d wal read task has been launched, remain scan times:%d", vgId, pMeta->scanInfo.scanCounter);
414,941✔
433
    return 0;
414,945✔
434
  }
435

436
  int32_t numOfPauseTasks = pMeta->numOfPausedTasks;
45,234✔
437
  if (ckPause && numOfTasks == numOfPauseTasks) {
45,234✔
438
    tqDebug("vgId:%d ignore all submit, all streams had been paused, reset the walScanCounter", vgId);
136✔
439

440
    // reset the counter value, since we do not launch the scan wal operation.
441
    pMeta->scanInfo.scanCounter = 0;
136✔
442
    return 0;
136✔
443
  }
444

445
  tqDebug("vgId:%d create msg to start wal scan to launch stream tasks, numOfTasks:%d, vnd restored:%d", vgId,
45,098✔
446
          numOfTasks, alreadyRestored);
447

448
  return streamTaskSchedTask(&pTq->pVnode->msgCb, vgId, 0, 0, STREAM_EXEC_T_EXTRACT_WAL_DATA);
45,098✔
449
}
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