vnode.h 10.8 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"
dengyihao's avatar
dengyihao 已提交
31
#include "tgrant.h"
H
Hongze Cheng 已提交
32 33 34
#include "tmsg.h"
#include "trow.h"

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

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

H
Hongze Cheng 已提交
41
// vnode
H
Hongze Cheng 已提交
42 43 44 45 46
typedef struct SVnode       SVnode;
typedef struct STsdbCfg     STsdbCfg;  // todo: remove
typedef struct SVnodeCfg    SVnodeCfg;
typedef struct SVSnapReader SVSnapReader;
typedef struct SVSnapWriter SVSnapWriter;
H
Hongze Cheng 已提交
47

H
Hongze Cheng 已提交
48 49
extern const SVnodeCfg vnodeCfgDefault;

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

58 59
int32_t vnodeStart(SVnode *pVnode);
void    vnodeStop(SVnode *pVnode);
H
Hongze Cheng 已提交
60
int64_t vnodeGetSyncHandle(SVnode *pVnode);
H
Hongze Cheng 已提交
61
void    vnodeGetSnapshot(SVnode *pVnode, SSnapshot *pSnapshot);
62
void    vnodeGetInfo(SVnode *pVnode, const char **dbname, int32_t *vgId);
C
Cary Xu 已提交
63
int32_t vnodeProcessCreateTSma(SVnode *pVnode, void *pCont, uint32_t contLen);
H
Hongze Cheng 已提交
64 65
int32_t vnodeGetAllTableList(SVnode *pVnode, uint64_t uid, SArray *list);
int32_t vnodeGetCtbIdList(SVnode *pVnode, int64_t suid, SArray *list);
L
Liu Jicong 已提交
66 67
void   *vnodeGetIdx(SVnode *pVnode);
void   *vnodeGetIvtIdx(SVnode *pVnode);
H
Hongze Cheng 已提交
68

69 70 71 72
int32_t vnodeGetCtbNum(SVnode *pVnode, int64_t suid, int64_t *num);
int32_t vnodeGetTimeSeriesNum(SVnode *pVnode, int64_t *num);
int32_t vnodeGetAllCtbNum(SVnode *pVnode, int64_t *num);

73 74 75 76 77 78 79 80 81 82 83 84
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);
85

H
Hongze Cheng 已提交
86
// meta
H
Hongze Cheng 已提交
87 88 89 90
typedef struct SMeta       SMeta;  // todo: remove
typedef struct SMetaReader SMetaReader;
typedef struct SMetaEntry  SMetaEntry;

H
Hongze Cheng 已提交
91 92
void        metaReaderInit(SMetaReader *pReader, SMeta *pMeta, int32_t flags);
void        metaReaderClear(SMetaReader *pReader);
93 94
int32_t     metaGetTableEntryByUid(SMetaReader *pReader, tb_uid_t uid);
int32_t     metaReadNext(SMetaReader *pReader);
wmmhello's avatar
wmmhello 已提交
95
const void *metaGetTableTagVal(SMetaEntry *pEntry, int16_t type, STagVal *tagVal);
dengyihao's avatar
dengyihao 已提交
96
int         metaGetTableNameByUid(void *meta, uint64_t uid, char *tbName);
H
Hongze Cheng 已提交
97

dengyihao's avatar
dengyihao 已提交
98 99 100 101
typedef struct SMetaFltParam {
  tb_uid_t suid;
  int16_t  cid;
  int16_t  type;
dengyihao's avatar
dengyihao 已提交
102
  void    *val;
dengyihao's avatar
dengyihao 已提交
103 104 105 106 107
  bool     reverse;
  int (*filterFunc)(void *a, void *b, int16_t type);

} SMetaFltParam;

dengyihao's avatar
dengyihao 已提交
108
int32_t metaFilterTableIds(SMeta *pMeta, SMetaFltParam *param, SArray *results);
dengyihao's avatar
dengyihao 已提交
109

H
Hongze Cheng 已提交
110
#if 1  // refact APIs below (TODO)
H
Hongze Cheng 已提交
111 112 113
typedef SVCreateTbReq   STbCfg;
typedef SVCreateTSmaReq SSmaCfg;

H
Hongze Cheng 已提交
114 115
typedef struct SMTbCursor SMTbCursor;

H
Hongze Cheng 已提交
116 117
SMTbCursor *metaOpenTbCursor(SMeta *pMeta);
void        metaCloseTbCursor(SMTbCursor *pTbCur);
118
int32_t     metaTbCursorNext(SMTbCursor *pTbCur);
H
Hongze Cheng 已提交
119
#endif
H
Hongze Cheng 已提交
120

H
Hongze Cheng 已提交
121
// tsdb
122
// typedef struct STsdb STsdb;
H
Hongze Cheng 已提交
123
typedef struct STsdbReader STsdbReader;
H
Hongze Cheng 已提交
124

H
Haojun Liao 已提交
125 126
#define TIMEWINDOW_RANGE_CONTAINED 1
#define TIMEWINDOW_RANGE_EXTERNAL  2
H
Hongze Cheng 已提交
127

dengyihao's avatar
dengyihao 已提交
128
#define LASTROW_RETRIEVE_TYPE_ALL    0x1
129
#define LASTROW_RETRIEVE_TYPE_SINGLE 0x2
H
Haojun Liao 已提交
130

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

146
int32_t tsdbLastRowReaderOpen(void *pVnode, int32_t type, SArray *pTableIdList, int32_t numOfCols, void **pReader);
H
Hongze Cheng 已提交
147
int32_t tsdbRetrieveLastRow(void *pReader, SSDataBlock *pResBlock, const int32_t *slotIds, SArray *pTableUids);
148
int32_t tsdbLastrowReaderClose(void *pReader);
149 150 151 152
int32_t tsdbGetTableSchema(SVnode *pVnode, int64_t uid, STSchema **pSchema, int64_t *suid);

void   tsdbCacheSetCapacity(SVnode *pVnode, size_t capacity);
size_t tsdbCacheGetCapacity(SVnode *pVnode);
H
Hongze Cheng 已提交
153 154

// tq
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
typedef struct SMetaTableInfo{
  int64_t         suid;
  int64_t         uid;
  SSchemaWrapper *schema;
}SMetaTableInfo;

typedef struct SSnapContext {

  SMeta    *pMeta;
  int64_t   snapVersion;
  TBC      *pCur;
  int64_t   suid;
  int8_t    subType;
  SHashObj *idVersion;
  SHashObj *suidInfo;
  bool      queryMetaOrData;    // true-get meta, false-get data
}SSnapContext;
H
Hongze Cheng 已提交
172

L
Liu Jicong 已提交
173 174 175 176 177 178
typedef struct STqReader {
  int64_t           ver;
  const SSubmitReq *pMsg;
  SSubmitBlk       *pBlock;
  SSubmitMsgIter    msgIter;
  SSubmitBlkIter    blkIter;
H
Hongze Cheng 已提交
179

L
Liu Jicong 已提交
180
  SWalReader *pWalReader;
H
Hongze Cheng 已提交
181

L
Liu Jicong 已提交
182 183 184
  SMeta    *pVnodeMeta;
  SHashObj *tbIdHash;
  SArray   *pColIdList;  // SArray<int16_t>
185

L
Liu Jicong 已提交
186 187 188 189 190 191 192 193 194 195 196 197 198 199
  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);

L
Liu Jicong 已提交
200 201 202
int32_t tqSeekVer(STqReader *pReader, int64_t ver);
int32_t tqNextBlock(STqReader *pReader, SFetchRet *ret);

L
Liu Jicong 已提交
203 204 205 206
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 已提交
207

C
Cary Xu 已提交
208 209 210
// sma
int32_t smaGetTSmaDays(SVnodeCfg *pCfg, void *pCont, uint32_t contLen, int32_t *days);

H
Hongze Cheng 已提交
211
// SVSnapReader
H
Hongze Cheng 已提交
212
int32_t vnodeSnapReaderOpen(SVnode *pVnode, int64_t sver, int64_t ever, SVSnapReader **ppReader);
H
Hongze Cheng 已提交
213
int32_t vnodeSnapReaderClose(SVSnapReader *pReader);
H
Hongze Cheng 已提交
214 215
int32_t vnodeSnapRead(SVSnapReader *pReader, uint8_t **ppData, uint32_t *nData);
// SVSnapWriter
H
Hongze Cheng 已提交
216
int32_t vnodeSnapWriterOpen(SVnode *pVnode, int64_t sver, int64_t ever, SVSnapWriter **ppWriter);
217
int32_t vnodeSnapWriterClose(SVSnapWriter *pWriter, int8_t rollback, SSnapshot *pSnapshot);
H
Hongze Cheng 已提交
218
int32_t vnodeSnapWrite(SVSnapWriter *pWriter, uint8_t *pData, uint32_t nData);
H
Hongze Cheng 已提交
219

220 221 222 223 224 225
int32_t buildSnapContext(SMeta* pMeta, int64_t snapVersion, int64_t suid, int8_t subType, bool withMeta, SSnapContext* ctx);
int32_t getMetafromSnapShot(SSnapContext* ctx, void **pBuf, int32_t *contLen, int16_t *type);
SMetaTableInfo getUidfromSnapShot(SSnapContext* ctx);
int32_t setMetaForSnapShot(SSnapContext* ctx, int64_t uid, int64_t ver);
int32_t setDataForSnapShot(SSnapContext* ctx, int64_t uid);

H
Hongze Cheng 已提交
226 227
// structs
struct STsdbCfg {
C
Cary Xu 已提交
228 229 230 231 232 233 234 235 236 237
  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 已提交
238 239 240
  SRetention retentions[TSDB_RETENTION_MAX];
};

241 242 243 244 245 246 247 248 249 250
typedef struct {
  int64_t numOfSTables;
  int64_t numOfCTables;
  int64_t numOfNTables;
  int64_t numOfTimeSeries;
  int64_t pointsWritten;
  int64_t totalStorage;
  int64_t compStorage;
} SVnodeStats;

H
Hongze Cheng 已提交
251
struct SVnodeCfg {
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
  int32_t     vgId;
  char        dbname[TSDB_DB_FNAME_LEN];
  uint64_t    dbId;
  int32_t     cacheLastSize;
  int32_t     szPage;
  int32_t     szCache;
  uint64_t    szBuf;
  bool        isHeap;
  bool        isWeak;
  int8_t      cacheLast;
  int8_t      isTsma;
  int8_t      isRsma;
  int8_t      hashMethod;
  int8_t      standby;
  STsdbCfg    tsdbCfg;
  SWalCfg     walCfg;
  SSyncCfg    syncCfg;
  SVnodeStats vndStats;
  uint32_t    hashBegin;
  uint32_t    hashEnd;
H
Hongze Cheng 已提交
272
};
H
save  
Hongze Cheng 已提交
273

H
Hongze Cheng 已提交
274 275
typedef struct {
  uint64_t uid;
S
slzhou 已提交
276
  uint64_t groupId;
H
Hongze Cheng 已提交
277
} STableKeyInfo;
278

dengyihao's avatar
dengyihao 已提交
279 280
#define TABLE_ROLLUP_ON       ((int8_t)0x1)
#define TABLE_IS_ROLLUP(FLG)  (((FLG) & (TABLE_ROLLUP_ON)) != 0)
C
Cary Xu 已提交
281
#define TABLE_SET_ROLLUP(FLG) ((FLG) |= TABLE_ROLLUP_ON)
H
Hongze Cheng 已提交
282
struct SMetaEntry {
H
Hongze Cheng 已提交
283 284
  int64_t  version;
  int8_t   type;
C
Cary Xu 已提交
285
  int8_t   flags;  // TODO: need refactor?
H
Hongze Cheng 已提交
286
  tb_uid_t uid;
L
Liu Jicong 已提交
287
  char    *name;
H
Hongze Cheng 已提交
288 289
  union {
    struct {
290
      SSchemaWrapper schemaRow;
H
Hongze Cheng 已提交
291
      SSchemaWrapper schemaTag;
C
Cary Xu 已提交
292
      SRSmaParam     rsmaParam;
H
Hongze Cheng 已提交
293 294
    } stbEntry;
    struct {
H
Hongze Cheng 已提交
295 296
      int64_t  ctime;
      int32_t  ttlDays;
wmmhello's avatar
wmmhello 已提交
297
      int32_t  commentLen;
L
Liu Jicong 已提交
298
      char    *comment;
H
Hongze Cheng 已提交
299 300
      tb_uid_t suid;
      uint8_t *pTags;
H
Hongze Cheng 已提交
301 302 303 304
    } ctbEntry;
    struct {
      int64_t        ctime;
      int32_t        ttlDays;
wmmhello's avatar
wmmhello 已提交
305
      int32_t        commentLen;
L
Liu Jicong 已提交
306
      char          *comment;
H
Hongze Cheng 已提交
307
      int32_t        ncid;  // next column id
308
      SSchemaWrapper schemaRow;
H
Hongze Cheng 已提交
309
    } ntbEntry;
310
    struct {
C
Cary Xu 已提交
311
      STSma *tsma;
312
    } smaEntry;
H
Hongze Cheng 已提交
313
  };
H
Hongze Cheng 已提交
314 315

  uint8_t *pBuf;
H
Hongze Cheng 已提交
316 317 318 319
};

struct SMetaReader {
  int32_t    flags;
L
Liu Jicong 已提交
320
  SMeta     *pMeta;
H
Hongze Cheng 已提交
321
  SDecoder   coder;
H
Hongze Cheng 已提交
322
  SMetaEntry me;
L
Liu Jicong 已提交
323
  void      *pBuf;
324
  int32_t    szBuf;
H
Hongze Cheng 已提交
325 326
};

H
Hongze Cheng 已提交
327
struct SMTbCursor {
L
Liu Jicong 已提交
328 329 330
  TBC        *pDbc;
  void       *pKey;
  void       *pVal;
331 332
  int32_t     kLen;
  int32_t     vLen;
H
Hongze Cheng 已提交
333 334 335
  SMetaReader mr;
};

S
Shengliang Guan 已提交
336 337 338 339
#ifdef __cplusplus
}
#endif

340
#endif /*_TD_VNODE_H_*/