tqExec.c 6.5 KB
Newer Older
L
Liu Jicong 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
 *
 * This program is free software: you can use, redistribute, and/or modify
 * it under the terms of the GNU Affero General Public License, version 3
 * or later ("AGPL"), as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

#include "tq.h"

L
Liu Jicong 已提交
18
static int32_t tqAddBlockDataToRsp(const SSDataBlock* pBlock, SMqDataRsp* pRsp) {
L
Liu Jicong 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31
  int32_t dataStrLen = sizeof(SRetrieveTableRsp) + blockGetEncodeSize(pBlock);
  void*   buf = taosMemoryCalloc(1, dataStrLen);
  if (buf == NULL) return -1;

  SRetrieveTableRsp* pRetrieve = (SRetrieveTableRsp*)buf;
  pRetrieve->useconds = 0;
  pRetrieve->precision = TSDB_DEFAULT_PRECISION;
  pRetrieve->compressed = 0;
  pRetrieve->completed = 1;
  pRetrieve->numOfRows = htonl(pBlock->info.rows);

  // TODO enable compress
  int32_t actualLen = 0;
32
  blockEncode(pBlock, pRetrieve->data, &actualLen, taosArrayGetSize(pBlock->pDataBlock), false);
L
Liu Jicong 已提交
33 34 35 36 37 38 39
  actualLen += sizeof(SRetrieveTableRsp);
  ASSERT(actualLen <= dataStrLen);
  taosArrayPush(pRsp->blockDataLen, &actualLen);
  taosArrayPush(pRsp->blockData, &buf);
  return 0;
}

L
Liu Jicong 已提交
40
static int32_t tqAddBlockSchemaToRsp(const STqExecHandle* pExec, int32_t workerId, SMqDataRsp* pRsp) {
L
Liu Jicong 已提交
41
  SSchemaWrapper* pSW = tCloneSSchemaWrapper(pExec->pExecReader[workerId]->pSchemaWrapper);
L
Liu Jicong 已提交
42 43 44
  if (pSW == NULL) {
    return -1;
  }
L
Liu Jicong 已提交
45 46 47 48
  taosArrayPush(pRsp->blockSchema, &pSW);
  return 0;
}

L
Liu Jicong 已提交
49
static int32_t tqAddTbNameToRsp(const STQ* pTq, int64_t uid, SMqDataRsp* pRsp) {
L
Liu Jicong 已提交
50 51 52 53 54 55 56 57 58 59 60 61
  SMetaReader mr = {0};
  metaReaderInit(&mr, pTq->pVnode->pMeta, 0);
  if (metaGetTableEntryByUid(&mr, uid) < 0) {
    ASSERT(0);
    return -1;
  }
  char* tbName = strdup(mr.me.name);
  taosArrayPush(pRsp->blockTbName, &tbName);
  metaReaderClear(&mr);
  return 0;
}

L
Liu Jicong 已提交
62 63 64
int64_t tqScan(STQ* pTq, const STqHandle* pHandle, SMqDataRsp* pRsp, STqOffsetVal* pOffset) {
  const STqExecHandle* pExec = &pHandle->execHandle;
  qTaskInfo_t          task = pExec->execCol.task[0];
L
Liu Jicong 已提交
65

L
Liu Jicong 已提交
66
  if (qStreamPrepareScan(task, pOffset) < 0) {
L
Liu Jicong 已提交
67
    ASSERT(pOffset->type == TMQ_OFFSET__LOG);
L
Liu Jicong 已提交
68 69
    pRsp->rspOffset = *pOffset;
    return 0;
L
Liu Jicong 已提交
70 71
  }

L
Liu Jicong 已提交
72
  int32_t rowCnt = 0;
L
Liu Jicong 已提交
73 74 75
  while (1) {
    SSDataBlock* pDataBlock = NULL;
    uint64_t     ts = 0;
L
Liu Jicong 已提交
76
    tqDebug("task start to execute");
L
Liu Jicong 已提交
77 78 79
    if (qExecTask(task, &pDataBlock, &ts) < 0) {
      ASSERT(0);
    }
L
Liu Jicong 已提交
80
    tqDebug("task execute end, get %p", pDataBlock);
L
Liu Jicong 已提交
81 82 83

    if (pDataBlock != NULL) {
      tqAddBlockDataToRsp(pDataBlock, pRsp);
L
Liu Jicong 已提交
84
      pRsp->blockNum++;
L
Liu Jicong 已提交
85
      if (pRsp->withTbName) {
L
Liu Jicong 已提交
86 87 88 89 90 91 92 93
        if (pOffset->type == TMQ_OFFSET__LOG) {
          int64_t uid = pExec->pExecReader[0]->msgIter.uid;
          tqAddTbNameToRsp(pTq, uid, pRsp);
        } else {
          pRsp->withTbName = 0;
        }
      }
      if (pOffset->type == TMQ_OFFSET__LOG) {
L
Liu Jicong 已提交
94 95
        continue;
      } else {
L
Liu Jicong 已提交
96
        rowCnt += pDataBlock->info.rows;
L
Liu Jicong 已提交
97
        if (rowCnt <= 4096) continue;
L
Liu Jicong 已提交
98 99 100
      }
    }

101
    if (pRsp->blockNum == 0 && pOffset->type == TMQ_OFFSET__SNAPSHOT_DATA) {
L
Liu Jicong 已提交
102
      tqOffsetResetToLog(pOffset, pHandle->snapshotVer + 1);
103 104 105 106
      qStreamPrepareScan(task, pOffset);
      continue;
    }

L
Liu Jicong 已提交
107 108 109 110 111 112 113 114
    void* meta = qStreamExtractMetaMsg(task);
    if (meta != NULL) {
      // tq add meta to rsp
    }

    if (qStreamExtractOffset(task, &pRsp->rspOffset) < 0) {
      ASSERT(0);
    }
L
Liu Jicong 已提交
115

L
Liu Jicong 已提交
116 117
    ASSERT(pRsp->rspOffset.type != 0);

118
    if (pRsp->reqOffset.type == TMQ_OFFSET__LOG) {
L
Liu Jicong 已提交
119 120
      ASSERT(pRsp->rspOffset.version + 1 >= pRsp->reqOffset.version);
    }
L
Liu Jicong 已提交
121
    tqDebug("task exec exited");
L
Liu Jicong 已提交
122 123 124 125 126 127
    break;
  }

  return 0;
}

L
Liu Jicong 已提交
128
#if 0
L
Liu Jicong 已提交
129
int32_t tqScanSnapshot(STQ* pTq, const STqExecHandle* pExec, SMqDataRsp* pRsp, STqOffsetVal offset, int32_t workerId) {
L
Liu Jicong 已提交
130 131
  ASSERT(pExec->subType == TOPIC_SUB_TYPE__COLUMN);
  qTaskInfo_t task = pExec->execCol.task[workerId];
L
Liu Jicong 已提交
132

L
Liu Jicong 已提交
133
  if (qStreamPrepareTsdbScan(task, offset.uid, offset.ts) < 0) {
L
Liu Jicong 已提交
134 135 136 137
    ASSERT(0);
  }

  int32_t rowCnt = 0;
L
Liu Jicong 已提交
138 139 140 141 142 143 144 145 146
  while (1) {
    SSDataBlock* pDataBlock = NULL;
    uint64_t     ts = 0;
    if (qExecTask(task, &pDataBlock, &ts) < 0) {
      ASSERT(0);
    }
    if (pDataBlock == NULL) break;

    ASSERT(pDataBlock->info.rows != 0);
H
Haojun Liao 已提交
147
    ASSERT(taosArrayGetSize(pDataBlock->pDataBlock) != 0);
L
Liu Jicong 已提交
148 149

    tqAddBlockDataToRsp(pDataBlock, pRsp);
L
Liu Jicong 已提交
150 151

    if (pRsp->withTbName) {
L
Liu Jicong 已提交
152
      pRsp->withTbName = 0;
153
#if 0
154 155 156 157 158
      int64_t uid;
      int64_t ts;
      if (qGetStreamScanStatus(task, &uid, &ts) < 0) {
        ASSERT(0);
      }
L
Liu Jicong 已提交
159
      tqAddTbNameToRsp(pTq, uid, pRsp);
L
Liu Jicong 已提交
160
#endif
L
Liu Jicong 已提交
161
    }
L
Liu Jicong 已提交
162
    pRsp->blockNum++;
L
Liu Jicong 已提交
163 164 165 166 167 168 169 170

    rowCnt += pDataBlock->info.rows;
    if (rowCnt >= 4096) break;
  }
  int64_t uid;
  int64_t ts;
  if (qGetStreamScanStatus(task, &uid, &ts) < 0) {
    ASSERT(0);
L
Liu Jicong 已提交
171
  }
L
Liu Jicong 已提交
172
  tqOffsetResetToData(&pRsp->rspOffset, uid, ts);
L
Liu Jicong 已提交
173 174 175

  return 0;
}
L
Liu Jicong 已提交
176
#endif
L
Liu Jicong 已提交
177

L
Liu Jicong 已提交
178
int32_t tqLogScanExec(STQ* pTq, STqExecHandle* pExec, SSubmitReq* pReq, SMqDataRsp* pRsp, int32_t workerId) {
L
Liu Jicong 已提交
179
  ASSERT(pExec->subType != TOPIC_SUB_TYPE__COLUMN);
L
Liu Jicong 已提交
180

L
Liu Jicong 已提交
181
  if (pExec->subType == TOPIC_SUB_TYPE__TABLE) {
L
Liu Jicong 已提交
182
    pRsp->withSchema = 1;
L
Liu Jicong 已提交
183 184
    STqReader* pReader = pExec->pExecReader[workerId];
    tqReaderSetDataMsg(pReader, pReq, 0);
L
Liu Jicong 已提交
185 186
    while (tqNextDataBlock(pReader)) {
      SSDataBlock block = {0};
187
      if (tqRetrieveDataBlock(&block, pReader) < 0) {
L
Liu Jicong 已提交
188 189 190 191 192
        if (terrno == TSDB_CODE_TQ_TABLE_SCHEMA_NOT_FOUND) continue;
        ASSERT(0);
      }
      tqAddBlockDataToRsp(&block, pRsp);
      if (pRsp->withTbName) {
L
Liu Jicong 已提交
193
        int64_t uid = pExec->pExecReader[workerId]->msgIter.uid;
L
Liu Jicong 已提交
194
        tqAddTbNameToRsp(pTq, uid, pRsp);
L
Liu Jicong 已提交
195 196 197 198 199 200
      }
      tqAddBlockSchemaToRsp(pExec, workerId, pRsp);
      pRsp->blockNum++;
    }
  } else if (pExec->subType == TOPIC_SUB_TYPE__DB) {
    pRsp->withSchema = 1;
L
Liu Jicong 已提交
201 202
    STqReader* pReader = pExec->pExecReader[workerId];
    tqReaderSetDataMsg(pReader, pReq, 0);
L
Liu Jicong 已提交
203
    while (tqNextDataBlockFilterOut(pReader, pExec->execDb.pFilterOutTbUid)) {
L
Liu Jicong 已提交
204
      SSDataBlock block = {0};
205
      if (tqRetrieveDataBlock(&block, pReader) < 0) {
L
Liu Jicong 已提交
206 207 208 209 210
        if (terrno == TSDB_CODE_TQ_TABLE_SCHEMA_NOT_FOUND) continue;
        ASSERT(0);
      }
      tqAddBlockDataToRsp(&block, pRsp);
      if (pRsp->withTbName) {
L
Liu Jicong 已提交
211
        int64_t uid = pExec->pExecReader[workerId]->msgIter.uid;
L
Liu Jicong 已提交
212
        tqAddTbNameToRsp(pTq, uid, pRsp);
L
Liu Jicong 已提交
213 214 215 216 217
      }
      tqAddBlockSchemaToRsp(pExec, workerId, pRsp);
      pRsp->blockNum++;
    }
  }
L
Liu Jicong 已提交
218

L
Liu Jicong 已提交
219 220 221
  if (pRsp->blockNum == 0) {
    return -1;
  }
L
Liu Jicong 已提交
222

L
Liu Jicong 已提交
223 224
  return 0;
}