vnode.h 6.1 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
refact  
Hongze Cheng 已提交
24
#include "tarray.h"
S
Shengliang Guan 已提交
25
#include "tfs.h"
H
refact  
Hongze Cheng 已提交
26
#include "wal.h"
S
Shengliang Guan 已提交
27

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

S
Shengliang Guan 已提交
34 35 36 37
#ifdef __cplusplus
extern "C" {
#endif

H
Hongze Cheng 已提交
38
// vnode
H
Hongze Cheng 已提交
39 40 41 42 43 44
typedef struct SVnode    SVnode;
typedef struct SMetaCfg  SMetaCfg;  // todo: remove
typedef struct STsdbCfg  STsdbCfg;  // todo: remove
typedef struct STqCfg    STqCfg;    // todo: remove
typedef struct SVnodeCfg SVnodeCfg;

H
more  
Hongze Cheng 已提交
45
int     vnodeInit(int nthreads);
H
Hongze Cheng 已提交
46
void    vnodeCleanup();
H
Hongze Cheng 已提交
47
int     vnodeCreate(const char *path, SVnodeCfg *pCfg, STfs *pTfs);
H
refact  
Hongze Cheng 已提交
48
void    vnodeDestroy(const char *path, STfs *pTfs);
H
Hongze Cheng 已提交
49 50
SVnode *vnodeOpen(const char *path, const SVnodeCfg *pVnodeCfg);
void    vnodeClose(SVnode *pVnode);
H
Hongze Cheng 已提交
51 52
void    vnodePreprocessWriteReqs(SVnode *pVnode, SArray *pMsgs);
int     vnodeProcessWriteReq(SVnode *pVnode, SRpcMsg *pMsg, SRpcMsg **pRsp);
H
Hongze Cheng 已提交
53 54 55 56 57 58 59 60
int     vnodeProcessCMsg(SVnode *pVnode, SRpcMsg *pMsg, SRpcMsg **pRsp);
int     vnodeProcessSyncReq(SVnode *pVnode, SRpcMsg *pMsg, SRpcMsg **pRsp);
int     vnodeProcessQueryMsg(SVnode *pVnode, SRpcMsg *pMsg);
int     vnodeProcessFetchMsg(SVnode *pVnode, SRpcMsg *pMsg, SQueueInfo *pInfo);
int32_t vnodeAlter(SVnode *pVnode, const SVnodeCfg *pCfg);
int32_t vnodeCompact(SVnode *pVnode);
int32_t vnodeSync(SVnode *pVnode);
int32_t vnodeGetLoad(SVnode *pVnode, SVnodeLoad *pLoad);
H
Hongze Cheng 已提交
61
int     vnodeValidateTableHash(SVnodeCfg *pVnodeOptions, char *tableFName);
H
Hongze Cheng 已提交
62

H
Hongze Cheng 已提交
63
// meta
H
Hongze Cheng 已提交
64 65
typedef struct SMeta      SMeta;  // todo: remove
typedef struct SMTbCursor SMTbCursor;
H
Hongze Cheng 已提交
66 67 68 69

typedef SVCreateTbReq   STbCfg;
typedef SVCreateTSmaReq SSmaCfg;

H
Hongze Cheng 已提交
70 71 72
SMTbCursor *metaOpenTbCursor(SMeta *pMeta);
void        metaCloseTbCursor(SMTbCursor *pTbCur);
char       *metaTbCursorNext(SMTbCursor *pTbCur);
H
Hongze Cheng 已提交
73

H
Hongze Cheng 已提交
74
// tsdb
H
Hongze Cheng 已提交
75 76 77 78 79 80 81 82
typedef struct STsdb          STsdb;
typedef struct SDataStatis    SDataStatis;
typedef struct STsdbQueryCond STsdbQueryCond;
typedef void                 *tsdbReaderT;

#define BLOCK_LOAD_OFFSET_SEQ_ORDER 1
#define BLOCK_LOAD_TABLE_SEQ_ORDER  2
#define BLOCK_LOAD_TABLE_RR_ORDER   3
H
Hongze Cheng 已提交
83

H
Hongze Cheng 已提交
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
tsdbReaderT *tsdbQueryTables(STsdb *tsdb, STsdbQueryCond *pCond, STableGroupInfo *tableInfoGroup, uint64_t qId,
                             uint64_t taskId);
tsdbReaderT  tsdbQueryCacheLast(STsdb *tsdb, STsdbQueryCond *pCond, STableGroupInfo *groupList, uint64_t qId,
                                void *pMemRef);
int32_t      tsdbGetFileBlocksDistInfo(tsdbReaderT *pReader, STableBlockDistInfo *pTableBlockInfo);
bool         isTsdbCacheLastRow(tsdbReaderT *pReader);
int32_t      tsdbQuerySTableByTagCond(void *pMeta, uint64_t uid, TSKEY skey, const char *pTagCond, size_t len,
                                      int16_t tagNameRelType, const char *tbnameCond, STableGroupInfo *pGroupInfo,
                                      SColIndex *pColIndex, int32_t numOfCols, uint64_t reqId, uint64_t taskId);
int64_t      tsdbGetNumOfRowsInMemTable(tsdbReaderT *pHandle);
bool         tsdbNextDataBlock(tsdbReaderT pTsdbReadHandle);
void         tsdbRetrieveDataBlockInfo(tsdbReaderT *pTsdbReadHandle, SDataBlockInfo *pBlockInfo);
int32_t      tsdbRetrieveDataBlockStatisInfo(tsdbReaderT *pTsdbReadHandle, SDataStatis **pBlockStatis);
SArray      *tsdbRetrieveDataBlock(tsdbReaderT *pTsdbReadHandle, SArray *pColumnIdList);
void         tsdbDestroyTableGroup(STableGroupInfo *pGroupList);
int32_t      tsdbGetOneTableGroup(void *pMeta, uint64_t uid, TSKEY startKey, STableGroupInfo *pGroupInfo);
int32_t      tsdbGetTableGroupFromIdList(STsdb *tsdb, SArray *pTableIdList, STableGroupInfo *pGroupInfo);

// tq
H
Hongze Cheng 已提交
103 104 105 106 107 108 109 110 111 112 113 114

typedef struct STqReadHandle STqReadHandle;

STqReadHandle *tqInitSubmitMsgScanner(SMeta *pMeta);

void    tqReadHandleSetColIdList(STqReadHandle *pReadHandle, SArray *pColIdList);
int     tqReadHandleSetTbUidList(STqReadHandle *pHandle, const SArray *tbUidList);
int     tqReadHandleAddTbUidList(STqReadHandle *pHandle, const SArray *tbUidList);
int32_t tqReadHandleSetMsg(STqReadHandle *pHandle, SSubmitReq *pMsg, int64_t ver);
bool    tqNextDataBlock(STqReadHandle *pHandle);
int     tqRetrieveDataBlockInfo(STqReadHandle *pHandle, SDataBlockInfo *pBlockInfo);
SArray *tqRetrieveDataBlock(STqReadHandle *pHandle);
H
Hongze Cheng 已提交
115

H
Hongze Cheng 已提交
116
// need to reposition
H
Hongze Cheng 已提交
117

H
Hongze Cheng 已提交
118 119 120 121
// structs
struct SMetaCfg {
  uint64_t lruSize;
};
H
Hongze Cheng 已提交
122

H
Hongze Cheng 已提交
123
struct STsdbCfg {
H
Hongze Cheng 已提交
124 125 126
  int8_t   precision;
  int8_t   update;
  int8_t   compression;
H
refact  
Hongze Cheng 已提交
127 128 129
  int32_t  days;
  int32_t  minRows;
  int32_t  maxRows;
H
Hongze Cheng 已提交
130
  int32_t  keep2;
H
Hongze Cheng 已提交
131 132
  int32_t  keep0;
  int32_t  keep1;
H
Hongze Cheng 已提交
133 134
  uint64_t lruCacheSize;
  SArray  *retentions;
H
Hongze Cheng 已提交
135
};
H
Hongze Cheng 已提交
136

H
Hongze Cheng 已提交
137
struct STqCfg {
L
Liu Jicong 已提交
138
  int32_t reserved;
H
Hongze Cheng 已提交
139
};
L
Liu Jicong 已提交
140

H
Hongze Cheng 已提交
141
struct SVnodeCfg {
H
Hongze Cheng 已提交
142
  int32_t  vgId;
D
dapan1121 已提交
143
  uint64_t dbId;
S
Shengliang Guan 已提交
144
  STfs    *pTfs;
H
Hongze Cheng 已提交
145 146 147 148
  uint64_t wsize;
  uint64_t ssize;
  uint64_t lsize;
  bool     isHeapAllocator;
H
more  
Hongze Cheng 已提交
149 150
  uint32_t ttl;
  uint32_t keep;
L
Liu Jicong 已提交
151
  int8_t   streamMode;
H
Hongze Cheng 已提交
152
  bool     isWeak;
H
more  
Hongze Cheng 已提交
153 154
  STsdbCfg tsdbCfg;
  SMetaCfg metaCfg;
H
Hongze Cheng 已提交
155 156
  STqCfg   tqCfg;
  SWalCfg  walCfg;
S
Shengliang Guan 已提交
157
  SMsgCb   msgCb;
D
dapan1121 已提交
158 159
  uint32_t hashBegin;
  uint32_t hashEnd;
L
Liu Jicong 已提交
160
  int8_t   hashMethod;
H
Hongze Cheng 已提交
161
};
H
save  
Hongze Cheng 已提交
162

H
Hongze Cheng 已提交
163
struct SDataStatis {
H
Hongze Cheng 已提交
164 165 166 167 168 169 170
  int16_t colId;
  int16_t maxIndex;
  int16_t minIndex;
  int16_t numOfNull;
  int64_t sum;
  int64_t max;
  int64_t min;
H
Hongze Cheng 已提交
171
};
L
Liu Jicong 已提交
172

H
Hongze Cheng 已提交
173 174 175 176 177 178 179 180
struct STsdbQueryCond {
  STimeWindow  twindow;
  int32_t      order;  // desc|asc order to iterate the data block
  int32_t      numOfCols;
  SColumnInfo *colList;
  bool         loadExternalRows;  // load external rows or not
  int32_t      type;              // data block load type:
};
H
save  
Hongze Cheng 已提交
181

H
Hongze Cheng 已提交
182 183 184 185
typedef struct {
  TSKEY    lastKey;
  uint64_t uid;
} STableKeyInfo;
186

S
Shengliang Guan 已提交
187 188 189 190
#ifdef __cplusplus
}
#endif

191
#endif /*_TD_VNODE_H_*/