tqExec.c 6.7 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 68 69 70 71 72 73 74 75 76
    if (pOffset->type == TMQ_OFFSET__LOG) {
      pRsp->rspOffset = *pOffset;
      return 0;
    } else {
      tqOffsetResetToLog(pOffset, pHandle->snapshotVer + 1);
      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) {
      tqAddBlockDataToRsp(pDataBlock, pRsp);
L
Liu Jicong 已提交
91
      pRsp->blockNum++;
L
Liu Jicong 已提交
92
      if (pRsp->withTbName) {
L
Liu Jicong 已提交
93 94 95 96 97 98 99 100
        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 已提交
101 102
        continue;
      } else {
L
Liu Jicong 已提交
103
        rowCnt += pDataBlock->info.rows;
L
Liu Jicong 已提交
104
        if (rowCnt <= 4096) continue;
L
Liu Jicong 已提交
105 106 107
      }
    }

108
    if (pRsp->blockNum == 0 && pOffset->type == TMQ_OFFSET__SNAPSHOT_DATA) {
L
Liu Jicong 已提交
109
      tqOffsetResetToLog(pOffset, pHandle->snapshotVer + 1);
110 111 112 113
      qStreamPrepareScan(task, pOffset);
      continue;
    }

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

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

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

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

  return 0;
}

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

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

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

    tqAddBlockDataToRsp(pDataBlock, pRsp);
L
Liu Jicong 已提交
157 158

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

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

  return 0;
}
L
Liu Jicong 已提交
183
#endif
L
Liu Jicong 已提交
184

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

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

L
Liu Jicong 已提交
226 227 228
  if (pRsp->blockNum == 0) {
    return -1;
  }
L
Liu Jicong 已提交
229

L
Liu Jicong 已提交
230 231
  return 0;
}