vnode.h 8.9 KB
Newer Older
H
refact  
Hongze Cheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * 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/>.
S
Shengliang Guan 已提交
14 15 16 17 18
 */

#ifndef _TD_VNODE_H_
#define _TD_VNODE_H_

H
refact  
Hongze Cheng 已提交
19
#include "os.h"
S
Shengliang Guan 已提交
20
#include "tmsgcb.h"
L
Liu Jicong 已提交
21 22
#include "tqueue.h"
#include "trpc.h"
H
refact  
Hongze Cheng 已提交
23

H
Hongze Cheng 已提交
24
#include "sync.h"
H
refact  
Hongze Cheng 已提交
25
#include "tarray.h"
S
Shengliang Guan 已提交
26
#include "tfs.h"
H
refact  
Hongze Cheng 已提交
27
#include "wal.h"
S
Shengliang Guan 已提交
28

H
Hongze Cheng 已提交
29 30
#include "tcommon.h"
#include "tfs.h"
H
Hongze Cheng 已提交
31 32 33
#include "tmsg.h"
#include "trow.h"

H
Hongze Cheng 已提交
34
#include "tdb.h"
H
Hongze Cheng 已提交
35

S
Shengliang Guan 已提交
36 37 38
#ifdef __cplusplus
extern "C" {
#endif
C
Cary Xu 已提交
39

H
Hongze Cheng 已提交
40
// vnode
H
Hongze Cheng 已提交
41 42 43 44
typedef struct SVnode           SVnode;
typedef struct STsdbCfg         STsdbCfg;  // todo: remove
typedef struct SVnodeCfg        SVnodeCfg;
typedef struct SVSnapshotReader SVSnapshotReader;
H
Hongze Cheng 已提交
45

H
Hongze Cheng 已提交
46 47
extern const SVnodeCfg vnodeCfgDefault;

48
int32_t vnodeInit(int32_t nthreads);
H
Hongze Cheng 已提交
49
void    vnodeCleanup();
50
int32_t vnodeCreate(const char *path, SVnodeCfg *pCfg, STfs *pTfs);
H
refact  
Hongze Cheng 已提交
51
void    vnodeDestroy(const char *path, STfs *pTfs);
H
Hongze Cheng 已提交
52
SVnode *vnodeOpen(const char *path, STfs *pTfs, SMsgCb msgCb);
H
Hongze Cheng 已提交
53
void    vnodeClose(SVnode *pVnode);
54

55 56
int32_t vnodeStart(SVnode *pVnode);
void    vnodeStop(SVnode *pVnode);
H
Hongze Cheng 已提交
57
int64_t vnodeGetSyncHandle(SVnode *pVnode);
H
Hongze Cheng 已提交
58
void    vnodeGetSnapshot(SVnode *pVnode, SSnapshot *pSnapshot);
59
void    vnodeGetInfo(SVnode *pVnode, const char **dbname, int32_t *vgId);
H
Hongze Cheng 已提交
60 61
int32_t vnodeSnapshotReaderOpen(SVnode *pVnode, SVSnapshotReader **ppReader, int64_t sver, int64_t ever);
int32_t vnodeSnapshotReaderClose(SVSnapshotReader *pReader);
H
Hongze Cheng 已提交
62
int32_t vnodeSnapshotRead(SVSnapshotReader *pReader, const void **ppData, uint32_t *nData);
H
Hongze Cheng 已提交
63

C
Cary Xu 已提交
64
int32_t vnodeProcessCreateTSma(SVnode *pVnode, void *pCont, uint32_t contLen);
H
Hongze Cheng 已提交
65 66
int32_t vnodeGetAllTableList(SVnode *pVnode, uint64_t uid, SArray *list);
int32_t vnodeGetCtbIdList(SVnode *pVnode, int64_t suid, SArray *list);
L
Liu Jicong 已提交
67 68
void   *vnodeGetIdx(SVnode *pVnode);
void   *vnodeGetIvtIdx(SVnode *pVnode);
H
Hongze Cheng 已提交
69

70 71 72 73 74 75 76 77 78 79 80 81
int32_t vnodeGetLoad(SVnode *pVnode, SVnodeLoad *pLoad);
int32_t vnodeValidateTableHash(SVnode *pVnode, char *tableFName);

int32_t vnodePreProcessWriteMsg(SVnode *pVnode, SRpcMsg *pMsg);
int32_t vnodePreprocessQueryMsg(SVnode *pVnode, SRpcMsg *pMsg);

int32_t vnodeProcessWriteMsg(SVnode *pVnode, SRpcMsg *pMsg, int64_t version, SRpcMsg *pRsp);
int32_t vnodeProcessSyncMsg(SVnode *pVnode, SRpcMsg *pMsg, SRpcMsg **pRsp);
int32_t vnodeProcessQueryMsg(SVnode *pVnode, SRpcMsg *pMsg);
int32_t vnodeProcessFetchMsg(SVnode *pVnode, SRpcMsg *pMsg, SQueueInfo *pInfo);
void    vnodeProposeWriteMsg(SQueueInfo *pInfo, STaosQall *qall, int32_t numOfMsgs);
void    vnodeApplyWriteMsg(SQueueInfo *pInfo, STaosQall *qall, int32_t numOfMsgs);
82

H
Hongze Cheng 已提交
83
// meta
H
Hongze Cheng 已提交
84 85 86 87
typedef struct SMeta       SMeta;  // todo: remove
typedef struct SMetaReader SMetaReader;
typedef struct SMetaEntry  SMetaEntry;

H
Hongze Cheng 已提交
88 89
void        metaReaderInit(SMetaReader *pReader, SMeta *pMeta, int32_t flags);
void        metaReaderClear(SMetaReader *pReader);
90 91
int32_t     metaGetTableEntryByUid(SMetaReader *pReader, tb_uid_t uid);
int32_t     metaReadNext(SMetaReader *pReader);
wmmhello's avatar
wmmhello 已提交
92
const void *metaGetTableTagVal(SMetaEntry *pEntry, int16_t type, STagVal *tagVal);
H
Hongze Cheng 已提交
93

dengyihao's avatar
dengyihao 已提交
94 95 96 97
typedef struct SMetaFltParam {
  tb_uid_t suid;
  int16_t  cid;
  int16_t  type;
L
Liu Jicong 已提交
98
  char    *val;
dengyihao's avatar
dengyihao 已提交
99 100 101 102 103 104 105
  bool     reverse;
  int (*filterFunc)(void *a, void *b, int16_t type);

} SMetaFltParam;

int32_t metaFilteTableIds(SMeta *pMeta, SMetaFltParam *param, SArray *results);

H
Hongze Cheng 已提交
106
#if 1  // refact APIs below (TODO)
H
Hongze Cheng 已提交
107 108 109
typedef SVCreateTbReq   STbCfg;
typedef SVCreateTSmaReq SSmaCfg;

H
Hongze Cheng 已提交
110 111
typedef struct SMTbCursor SMTbCursor;

H
Hongze Cheng 已提交
112 113
SMTbCursor *metaOpenTbCursor(SMeta *pMeta);
void        metaCloseTbCursor(SMTbCursor *pTbCur);
114
int32_t     metaTbCursorNext(SMTbCursor *pTbCur);
H
Hongze Cheng 已提交
115
#endif
H
Hongze Cheng 已提交
116

H
Hongze Cheng 已提交
117
// tsdb
118
// typedef struct STsdb STsdb;
H
Hongze Cheng 已提交
119
typedef struct STsdbReader STsdbReader;
H
Hongze Cheng 已提交
120

121 122 123
#define BLOCK_LOAD_OFFSET_ORDER   1
#define BLOCK_LOAD_TABLESEQ_ORDER 2
#define BLOCK_LOAD_EXTERN_ORDER   3
H
Hongze Cheng 已提交
124

125 126
#define LASTROW_RETRIEVE_TYPE_ALL    0x1
#define LASTROW_RETRIEVE_TYPE_SINGLE 0x2
H
Haojun Liao 已提交
127

H
Hongze Cheng 已提交
128
int32_t tsdbSetTableId(STsdbReader *pReader, int64_t uid);
129 130
int32_t tsdbReaderOpen(SVnode *pVnode, SQueryTableDataCond *pCond, SArray *pTableList, STsdbReader **ppReader,
                       const char *idstr);
H
refact  
Hongze Cheng 已提交
131
void    tsdbReaderClose(STsdbReader *pReader);
H
Hongze Cheng 已提交
132 133 134 135
bool    tsdbNextDataBlock(STsdbReader *pReader);
void    tsdbRetrieveDataBlockInfo(STsdbReader *pReader, SDataBlockInfo *pDataBlockInfo);
int32_t tsdbRetrieveDataBlockStatisInfo(STsdbReader *pReader, SColumnDataAgg ***pBlockStatis, bool *allHave);
SArray *tsdbRetrieveDataBlock(STsdbReader *pTsdbReadHandle, SArray *pColumnIdList);
136
int32_t tsdbReaderReset(STsdbReader *pReader, SQueryTableDataCond *pCond, int32_t tWinIdx);
H
Hongze Cheng 已提交
137 138
int32_t tsdbGetFileBlocksDistInfo(STsdbReader *pReader, STableBlockDistInfo *pTableBlockInfo);
int64_t tsdbGetNumOfRowsInMemTable(STsdbReader *pHandle);
L
Liu Jicong 已提交
139 140
void   *tsdbGetIdx(SMeta *pMeta);
void   *tsdbGetIvtIdx(SMeta *pMeta);
141

142 143 144 145
int32_t tsdbLastRowReaderOpen(void *pVnode, int32_t type, SArray *pTableIdList, int32_t *colId, int32_t numOfCols,
                              void **pReader);
int32_t tsdbRetrieveLastRow(void *pReader, SSDataBlock *pResBlock, const int32_t *slotIds);
int32_t tsdbLastrowReaderClose(void *pReader);
H
Hongze Cheng 已提交
146 147

// tq
H
Hongze Cheng 已提交
148

L
Liu Jicong 已提交
149 150 151 152 153 154
typedef struct STqReader {
  int64_t           ver;
  const SSubmitReq *pMsg;
  SSubmitBlk       *pBlock;
  SSubmitMsgIter    msgIter;
  SSubmitBlkIter    blkIter;
H
Hongze Cheng 已提交
155

L
Liu Jicong 已提交
156
  SWalReader *pWalReader;
H
Hongze Cheng 已提交
157

L
Liu Jicong 已提交
158 159 160
  SMeta    *pVnodeMeta;
  SHashObj *tbIdHash;
  SArray   *pColIdList;  // SArray<int16_t>
161

L
Liu Jicong 已提交
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
  int32_t         cachedSchemaVer;
  int64_t         cachedSchemaSuid;
  SSchemaWrapper *pSchemaWrapper;
  STSchema       *pSchema;
} STqReader;

STqReader *tqOpenReader(SVnode *pVnode);
void       tqCloseReader(STqReader *);

void    tqReaderSetColIdList(STqReader *pReader, SArray *pColIdList);
int32_t tqReaderSetTbUidList(STqReader *pReader, const SArray *tbUidList);
int32_t tqReaderAddTbUidList(STqReader *pReader, const SArray *tbUidList);
int32_t tqReaderRemoveTbUidList(STqReader *pReader, const SArray *tbUidList);

int32_t tqReaderSetDataMsg(STqReader *pReader, SSubmitReq *pMsg, int64_t ver);
bool    tqNextDataBlock(STqReader *pReader);
bool    tqNextDataBlockFilterOut(STqReader *pReader, SHashObj *filterOutUids);
int32_t tqRetrieveDataBlock(SSDataBlock *pBlock, STqReader *pReader);
H
Hongze Cheng 已提交
180

C
Cary Xu 已提交
181 182 183
// sma
int32_t smaGetTSmaDays(SVnodeCfg *pCfg, void *pCont, uint32_t contLen, int32_t *days);

H
Hongze Cheng 已提交
184
// need to reposition
H
Hongze Cheng 已提交
185

H
Hongze Cheng 已提交
186 187
// structs
struct STsdbCfg {
C
Cary Xu 已提交
188 189 190 191 192 193 194 195 196 197
  int8_t  precision;
  int8_t  update;
  int8_t  compression;
  int8_t  slLevel;
  int32_t minRows;
  int32_t maxRows;
  int32_t days;   // just for save config, don't use in tsdbRead/tsdbCommit/..., and use STsdbKeepCfg in STsdb instead
  int32_t keep0;  // just for save config, don't use in tsdbRead/tsdbCommit/..., and use STsdbKeepCfg in STsdb instead
  int32_t keep1;  // just for save config, don't use in tsdbRead/tsdbCommit/..., and use STsdbKeepCfg in STsdb instead
  int32_t keep2;  // just for save config, don't use in tsdbRead/tsdbCommit/..., and use STsdbKeepCfg in STsdb instead
C
Cary Xu 已提交
198 199 200
  SRetention retentions[TSDB_RETENTION_MAX];
};

H
Hongze Cheng 已提交
201
struct SVnodeCfg {
H
Hongze Cheng 已提交
202
  int32_t  vgId;
S
Shengliang Guan 已提交
203
  char     dbname[TSDB_DB_FNAME_LEN];
D
dapan1121 已提交
204
  uint64_t dbId;
H
Hongze Cheng 已提交
205 206
  int32_t  szPage;
  int32_t  szCache;
H
Hongze Cheng 已提交
207 208
  uint64_t szBuf;
  bool     isHeap;
H
Hongze Cheng 已提交
209
  bool     isWeak;
C
Cary Xu 已提交
210
  int8_t   isTsma;
C
Cary Xu 已提交
211
  int8_t   isRsma;
C
Cary Xu 已提交
212
  int8_t   hashMethod;
213
  int8_t   standby;
H
more  
Hongze Cheng 已提交
214
  STsdbCfg tsdbCfg;
H
Hongze Cheng 已提交
215
  SWalCfg  walCfg;
S
Shengliang Guan 已提交
216
  SSyncCfg syncCfg;
D
dapan1121 已提交
217 218
  uint32_t hashBegin;
  uint32_t hashEnd;
H
Hongze Cheng 已提交
219
};
H
save  
Hongze Cheng 已提交
220

H
Hongze Cheng 已提交
221 222 223
typedef struct {
  TSKEY    lastKey;
  uint64_t uid;
S
slzhou 已提交
224
  uint64_t groupId;
H
Hongze Cheng 已提交
225
} STableKeyInfo;
226

C
Cary Xu 已提交
227 228 229
#define TABLE_ROLLUP_ON       ((int8_t)0x1)
#define TABLE_IS_ROLLUP(FLG)  (((FLG) & (TABLE_ROLLUP_ON)) != 0)
#define TABLE_SET_ROLLUP(FLG) ((FLG) |= TABLE_ROLLUP_ON)
H
Hongze Cheng 已提交
230
struct SMetaEntry {
H
Hongze Cheng 已提交
231 232
  int64_t  version;
  int8_t   type;
C
Cary Xu 已提交
233
  int8_t   flags;  // TODO: need refactor?
H
Hongze Cheng 已提交
234
  tb_uid_t uid;
L
Liu Jicong 已提交
235
  char    *name;
H
Hongze Cheng 已提交
236 237
  union {
    struct {
238
      SSchemaWrapper schemaRow;
H
Hongze Cheng 已提交
239
      SSchemaWrapper schemaTag;
C
Cary Xu 已提交
240
      SRSmaParam     rsmaParam;
H
Hongze Cheng 已提交
241 242
    } stbEntry;
    struct {
H
Hongze Cheng 已提交
243 244
      int64_t  ctime;
      int32_t  ttlDays;
wmmhello's avatar
wmmhello 已提交
245
      int32_t  commentLen;
L
Liu Jicong 已提交
246
      char    *comment;
H
Hongze Cheng 已提交
247 248
      tb_uid_t suid;
      uint8_t *pTags;
H
Hongze Cheng 已提交
249 250 251 252
    } ctbEntry;
    struct {
      int64_t        ctime;
      int32_t        ttlDays;
wmmhello's avatar
wmmhello 已提交
253
      int32_t        commentLen;
L
Liu Jicong 已提交
254
      char          *comment;
H
Hongze Cheng 已提交
255
      int32_t        ncid;  // next column id
256
      SSchemaWrapper schemaRow;
H
Hongze Cheng 已提交
257
    } ntbEntry;
258
    struct {
C
Cary Xu 已提交
259
      STSma *tsma;
260
    } smaEntry;
H
Hongze Cheng 已提交
261
  };
H
Hongze Cheng 已提交
262 263

  uint8_t *pBuf;
H
Hongze Cheng 已提交
264 265 266 267
};

struct SMetaReader {
  int32_t    flags;
L
Liu Jicong 已提交
268
  SMeta     *pMeta;
H
Hongze Cheng 已提交
269
  SDecoder   coder;
H
Hongze Cheng 已提交
270
  SMetaEntry me;
L
Liu Jicong 已提交
271
  void      *pBuf;
272
  int32_t    szBuf;
H
Hongze Cheng 已提交
273 274
};

H
Hongze Cheng 已提交
275
struct SMTbCursor {
L
Liu Jicong 已提交
276 277 278
  TBC        *pDbc;
  void       *pKey;
  void       *pVal;
279 280
  int32_t     kLen;
  int32_t     vLen;
H
Hongze Cheng 已提交
281 282 283
  SMetaReader mr;
};

S
Shengliang Guan 已提交
284 285 286 287
#ifdef __cplusplus
}
#endif

288
#endif /*_TD_VNODE_H_*/