tqExec.c 6.8 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
  SMetaReader mr = {0};
  metaReaderInit(&mr, pTq->pVnode->pMeta, 0);
52
  // TODO add reference to gurantee success
L
Liu Jicong 已提交
53 54 55 56 57 58 59 60 61
  if (metaGetTableEntryByUid(&mr, uid) < 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 68 69 70
    if (pOffset->type == TMQ_OFFSET__LOG) {
      pRsp->rspOffset = *pOffset;
      return 0;
    } else {
71
      tqOffsetResetToLog(pOffset, pHandle->snapshotVer);
L
Liu Jicong 已提交
72 73 74 75 76
      if (qStreamPrepareScan(task, pOffset) < 0) {
        pRsp->rspOffset = *pOffset;
        return 0;
      }
    }
L
Liu Jicong 已提交
77 78
  }

L
Liu Jicong 已提交
79
  int32_t rowCnt = 0;
L
Liu Jicong 已提交
80 81 82
  while (1) {
    SSDataBlock* pDataBlock = NULL;
    uint64_t     ts = 0;
L
Liu Jicong 已提交
83
    tqDebug("task start to execute");
L
Liu Jicong 已提交
84 85 86
    if (qExecTask(task, &pDataBlock, &ts) < 0) {
      ASSERT(0);
    }
L
Liu Jicong 已提交
87
    tqDebug("task execute end, get %p", pDataBlock);
L
Liu Jicong 已提交
88 89 90

    if (pDataBlock != NULL) {
      if (pRsp->withTbName) {
L
Liu Jicong 已提交
91 92
        if (pOffset->type == TMQ_OFFSET__LOG) {
          int64_t uid = pExec->pExecReader[0]->msgIter.uid;
93 94 95
          if (tqAddTbNameToRsp(pTq, uid, pRsp) < 0) {
            continue;
          }
L
Liu Jicong 已提交
96 97 98 99
        } else {
          pRsp->withTbName = 0;
        }
      }
100 101
      tqAddBlockDataToRsp(pDataBlock, pRsp);
      pRsp->blockNum++;
L
Liu Jicong 已提交
102
      if (pOffset->type == TMQ_OFFSET__LOG) {
L
Liu Jicong 已提交
103 104
        continue;
      } else {
L
Liu Jicong 已提交
105
        rowCnt += pDataBlock->info.rows;
L
Liu Jicong 已提交
106
        if (rowCnt <= 4096) continue;
L
Liu Jicong 已提交
107 108 109
      }
    }

110
    if (pRsp->blockNum == 0 && pOffset->type == TMQ_OFFSET__SNAPSHOT_DATA) {
111
      tqOffsetResetToLog(pOffset, pHandle->snapshotVer);
112 113 114 115
      qStreamPrepareScan(task, pOffset);
      continue;
    }

L
Liu Jicong 已提交
116 117 118 119 120 121 122 123
    void* meta = qStreamExtractMetaMsg(task);
    if (meta != NULL) {
      // tq add meta to rsp
    }

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

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

127
    if (pRsp->reqOffset.type == TMQ_OFFSET__LOG) {
L
Liu Jicong 已提交
128 129
      ASSERT(pRsp->rspOffset.version + 1 >= pRsp->reqOffset.version);
    }
L
Liu Jicong 已提交
130
    tqDebug("task exec exited");
L
Liu Jicong 已提交
131 132 133 134 135 136
    break;
  }

  return 0;
}

L
Liu Jicong 已提交
137
#if 0
L
Liu Jicong 已提交
138
int32_t tqScanSnapshot(STQ* pTq, const STqExecHandle* pExec, SMqDataRsp* pRsp, STqOffsetVal offset, int32_t workerId) {
L
Liu Jicong 已提交
139 140
  ASSERT(pExec->subType == TOPIC_SUB_TYPE__COLUMN);
  qTaskInfo_t task = pExec->execCol.task[workerId];
L
Liu Jicong 已提交
141

L
Liu Jicong 已提交
142
  if (qStreamPrepareTsdbScan(task, offset.uid, offset.ts) < 0) {
L
Liu Jicong 已提交
143 144 145 146
    ASSERT(0);
  }

  int32_t rowCnt = 0;
L
Liu Jicong 已提交
147 148 149 150 151 152 153 154 155
  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 已提交
156
    ASSERT(taosArrayGetSize(pDataBlock->pDataBlock) != 0);
L
Liu Jicong 已提交
157 158

    tqAddBlockDataToRsp(pDataBlock, pRsp);
L
Liu Jicong 已提交
159 160

    if (pRsp->withTbName) {
L
Liu Jicong 已提交
161
      pRsp->withTbName = 0;
162
#if 0
163 164 165 166 167
      int64_t uid;
      int64_t ts;
      if (qGetStreamScanStatus(task, &uid, &ts) < 0) {
        ASSERT(0);
      }
L
Liu Jicong 已提交
168
      tqAddTbNameToRsp(pTq, uid, pRsp);
L
Liu Jicong 已提交
169
#endif
L
Liu Jicong 已提交
170
    }
L
Liu Jicong 已提交
171
    pRsp->blockNum++;
L
Liu Jicong 已提交
172 173 174 175 176 177 178 179

    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 已提交
180
  }
L
Liu Jicong 已提交
181
  tqOffsetResetToData(&pRsp->rspOffset, uid, ts);
L
Liu Jicong 已提交
182 183 184

  return 0;
}
L
Liu Jicong 已提交
185
#endif
L
Liu Jicong 已提交
186

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

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

L
Liu Jicong 已提交
230 231 232
  if (pRsp->blockNum == 0) {
    return -1;
  }
L
Liu Jicong 已提交
233

L
Liu Jicong 已提交
234 235
  return 0;
}