vnodeInt.h 19.0 KB
Newer Older
H
save  
Hongze Cheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * 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/>.
 */

H
refact  
Hongze Cheng 已提交
16 17
#ifndef _TD_VNODE_DEF_H_
#define _TD_VNODE_DEF_H_
H
save  
Hongze Cheng 已提交
18

H
Hongze Cheng 已提交
19
#include "executor.h"
H
Hongze Cheng 已提交
20 21
#include "filter.h"
#include "qworker.h"
22
#include "rocksdb/c.h"
H
Hongze Cheng 已提交
23
#include "sync.h"
H
Hongze Cheng 已提交
24
#include "tRealloc.h"
H
Hongze Cheng 已提交
25
#include "tchecksum.h"
H
more  
Hongze Cheng 已提交
26
#include "tcoding.h"
H
Hongze Cheng 已提交
27
#include "tcompare.h"
H
Hongze Cheng 已提交
28
#include "tcompression.h"
L
Liu Jicong 已提交
29
#include "tdatablock.h"
H
Hongze Cheng 已提交
30
#include "tdb.h"
H
Hongze Cheng 已提交
31
#include "tencode.h"
H
refact  
Hongze Cheng 已提交
32
#include "tfs.h"
H
Hongze Cheng 已提交
33
#include "tglobal.h"
H
Hongze Cheng 已提交
34
#include "tjson.h"
H
Hongze Cheng 已提交
35
#include "tlist.h"
H
refact  
Hongze Cheng 已提交
36
#include "tlockfree.h"
H
Hongze Cheng 已提交
37
#include "tlosertree.h"
H
Hongze Cheng 已提交
38
#include "tlrucache.h"
39
#include "tmsgcb.h"
H
Hongze Cheng 已提交
40
#include "trbtree.h"
H
Hongze Cheng 已提交
41
#include "tref.h"
H
Hongze Cheng 已提交
42
#include "tskiplist.h"
H
Hongze Cheng 已提交
43
#include "tstream.h"
H
Hongze Cheng 已提交
44
#include "ttime.h"
H
Hongze Cheng 已提交
45 46
#include "ttimer.h"
#include "wal.h"
H
save  
Hongze Cheng 已提交
47

H
Hongze Cheng 已提交
48 49
#include "vnode.h"

H
save  
Hongze Cheng 已提交
50 51 52 53
#ifdef __cplusplus
extern "C" {
#endif

L
Liu Jicong 已提交
54 55 56 57 58 59
typedef struct SVnodeInfo         SVnodeInfo;
typedef struct SMeta              SMeta;
typedef struct SSma               SSma;
typedef struct STsdb              STsdb;
typedef struct STQ                STQ;
typedef struct SVState            SVState;
C
Cary Xu 已提交
60
typedef struct SVStatis           SVStatis;
L
Liu Jicong 已提交
61
typedef struct SVBufPool          SVBufPool;
62
typedef struct SQueueWorker       SQHandle;
L
Liu Jicong 已提交
63 64 65 66 67 68 69 70 71 72 73 74 75
typedef struct STsdbKeepCfg       STsdbKeepCfg;
typedef struct SMetaSnapReader    SMetaSnapReader;
typedef struct SMetaSnapWriter    SMetaSnapWriter;
typedef struct STsdbSnapReader    STsdbSnapReader;
typedef struct STsdbSnapWriter    STsdbSnapWriter;
typedef struct STqSnapReader      STqSnapReader;
typedef struct STqSnapWriter      STqSnapWriter;
typedef struct STqOffsetReader    STqOffsetReader;
typedef struct STqOffsetWriter    STqOffsetWriter;
typedef struct SStreamTaskReader  SStreamTaskReader;
typedef struct SStreamTaskWriter  SStreamTaskWriter;
typedef struct SStreamStateReader SStreamStateReader;
typedef struct SStreamStateWriter SStreamStateWriter;
76 77
typedef struct SRSmaSnapReader    SRSmaSnapReader;
typedef struct SRSmaSnapWriter    SRSmaSnapWriter;
L
Liu Jicong 已提交
78
typedef struct SSnapDataHdr       SSnapDataHdr;
H
Hongze Cheng 已提交
79
typedef struct SCommitInfo        SCommitInfo;
H
Hongze Cheng 已提交
80
typedef struct SCompactInfo       SCompactInfo;
H
Hongze Cheng 已提交
81
typedef struct SQueryNode         SQueryNode;
H
refact  
Hongze Cheng 已提交
82

C
Cary Xu 已提交
83 84 85 86 87
#define VNODE_META_DIR  "meta"
#define VNODE_TSDB_DIR  "tsdb"
#define VNODE_TQ_DIR    "tq"
#define VNODE_WAL_DIR   "wal"
#define VNODE_TSMA_DIR  "tsma"
C
Cary Xu 已提交
88
#define VNODE_RSMA_DIR  "rsma"
C
Cary Xu 已提交
89
#define VNODE_RSMA0_DIR "tsdb"
C
Cary Xu 已提交
90 91
#define VNODE_RSMA1_DIR "rsma1"
#define VNODE_RSMA2_DIR "rsma2"
H
Hongze Cheng 已提交
92

H
Hongze Cheng 已提交
93 94
#define VNODE_BUFPOOL_SEGMENTS 3

H
Hongze Cheng 已提交
95
#define VND_INFO_FNAME "vnode.json"
H
Hongze Cheng 已提交
96

H
Hongze Cheng 已提交
97
// vnd.h
H
Hongze Cheng 已提交
98 99 100 101 102 103 104
typedef int32_t (*_query_reseek_func_t)(void* pQHandle);
struct SQueryNode {
  SQueryNode*          pNext;
  SQueryNode**         ppNext;
  void*                pQHandle;
  _query_reseek_func_t reseek;
};
105

106 107 108 109
#if 1  // refact APIs below (TODO)
typedef SVCreateTbReq   STbCfg;
typedef SVCreateTSmaReq SSmaCfg;

110 111 112 113 114 115
SMTbCursor* metaOpenTbCursor(void* pVnode);
void        metaCloseTbCursor(SMTbCursor* pTbCur);
void        metaPauseTbCursor(SMTbCursor* pTbCur);
void        metaResumeTbCursor(SMTbCursor* pTbCur, int8_t first);
int32_t     metaTbCursorNext(SMTbCursor* pTbCur, ETableType jumpTableType);
int32_t     metaTbCursorPrev(SMTbCursor* pTbCur, ETableType jumpTableType);
116 117 118

#endif

H
Hongze Cheng 已提交
119
void* vnodeBufPoolMalloc(SVBufPool* pPool, int size);
120
void* vnodeBufPoolMallocAligned(SVBufPool* pPool, int size);
H
Hongze Cheng 已提交
121
void  vnodeBufPoolFree(SVBufPool* pPool, void* p);
H
Hongze Cheng 已提交
122
void  vnodeBufPoolRef(SVBufPool* pPool);
H
Hongze Cheng 已提交
123
void  vnodeBufPoolUnRef(SVBufPool* pPool, bool proactive);
H
Hongze Cheng 已提交
124
int   vnodeDecodeInfo(uint8_t* pData, SVnodeInfo* pInfo);
H
Hongze Cheng 已提交
125

H
Hongze Cheng 已提交
126
int32_t vnodeBufPoolRegisterQuery(SVBufPool* pPool, SQueryNode* pQNode);
H
Hongze Cheng 已提交
127
void    vnodeBufPoolDeregisterQuery(SVBufPool* pPool, SQueryNode* pQNode, bool proactive);
H
Hongze Cheng 已提交
128

H
Hongze Cheng 已提交
129 130
// meta
typedef struct SMCtbCursor SMCtbCursor;
C
Cary Xu 已提交
131
typedef struct SMStbCursor SMStbCursor;
H
Hongze Cheng 已提交
132 133
typedef struct STbUidStore STbUidStore;

134 135 136 137
#define META_BEGIN_HEAP_BUFFERPOOL 0
#define META_BEGIN_HEAP_OS         1
#define META_BEGIN_HEAP_NIL        2

H
Hongze Cheng 已提交
138
int             metaOpen(SVnode* pVnode, SMeta** ppMeta, int8_t rollback);
139
int             metaClose(SMeta** pMeta);
140
int             metaBegin(SMeta* pMeta, int8_t fromSys);
141 142 143
TXN*            metaGetTxn(SMeta* pMeta);
int             metaCommit(SMeta* pMeta, TXN* txn);
int             metaFinishCommit(SMeta* pMeta, TXN* txn);
144
int             metaPrepareAsyncCommit(SMeta* pMeta);
145
int             metaAbort(SMeta* pMeta);
H
Hongze Cheng 已提交
146
int             metaCreateSTable(SMeta* pMeta, int64_t version, SVCreateStbReq* pReq);
H
Hongze Cheng 已提交
147
int             metaAlterSTable(SMeta* pMeta, int64_t version, SVCreateStbReq* pReq);
148
int             metaDropSTable(SMeta* pMeta, int64_t verison, SVDropStbReq* pReq, SArray* tbUidList);
L
Liu Jicong 已提交
149
int             metaCreateTable(SMeta* pMeta, int64_t version, SVCreateTbReq* pReq, STableMetaRsp** pMetaRsp);
H
Hongze Cheng 已提交
150
int             metaDropTable(SMeta* pMeta, int64_t version, SVDropTbReq* pReq, SArray* tbUids, int64_t* tbUid);
M
Minglei Jin 已提交
151
int32_t         metaTrimTables(SMeta* pMeta);
152
int             metaTtlDropTable(SMeta* pMeta, int64_t timePointMs, SArray* tbUids);
H
more  
Hongze Cheng 已提交
153
int             metaAlterTable(SMeta* pMeta, int64_t version, SVAlterTbReq* pReq, STableMetaRsp* pMetaRsp);
154
int             metaUpdateChangeTime(SMeta* pMeta, tb_uid_t uid, int64_t changeTimeMs);
155 156
SSchemaWrapper* metaGetTableSchema(SMeta* pMeta, tb_uid_t uid, int32_t sver, int lock);
STSchema*       metaGetTbTSchema(SMeta* pMeta, tb_uid_t uid, int32_t sver, int lock);
H
Hongze Cheng 已提交
157
int32_t         metaGetTbTSchemaEx(SMeta* pMeta, tb_uid_t suid, tb_uid_t uid, int32_t sver, STSchema** ppTSchema);
H
Hongze Cheng 已提交
158
int             metaGetTableEntryByName(SMetaReader* pReader, const char* name);
H
Hongze Cheng 已提交
159
int             metaAlterCache(SMeta* pMeta, int32_t nPage);
dengyihao's avatar
dengyihao 已提交
160

161 162
int32_t metaUidCacheClear(SMeta* pMeta, uint64_t suid);
int32_t metaTbGroupCacheClear(SMeta* pMeta, uint64_t suid);
163

dengyihao's avatar
dengyihao 已提交
164
int metaAddIndexToSTable(SMeta* pMeta, int64_t version, SVCreateStbReq* pReq);
dengyihao's avatar
dengyihao 已提交
165
int metaDropIndexFromSTable(SMeta* pMeta, int64_t version, SDropIndexReq* pReq);
dengyihao's avatar
dengyihao 已提交
166

dengyihao's avatar
dengyihao 已提交
167
int64_t       metaGetTimeSeriesNum(SMeta* pMeta);
168 169
SMCtbCursor*  metaOpenCtbCursor(SMeta* pMeta, tb_uid_t uid, int lock);
void          metaCloseCtbCursor(SMCtbCursor* pCtbCur, int lock);
dengyihao's avatar
dengyihao 已提交
170 171 172 173 174 175 176 177 178 179
tb_uid_t      metaCtbCursorNext(SMCtbCursor* pCtbCur);
SMStbCursor*  metaOpenStbCursor(SMeta* pMeta, tb_uid_t uid);
void          metaCloseStbCursor(SMStbCursor* pStbCur);
tb_uid_t      metaStbCursorNext(SMStbCursor* pStbCur);
STSma*        metaGetSmaInfoByIndex(SMeta* pMeta, int64_t indexUid);
STSmaWrapper* metaGetSmaInfoByTable(SMeta* pMeta, tb_uid_t uid, bool deepCopy);
SArray*       metaGetSmaIdsByTable(SMeta* pMeta, tb_uid_t uid);
SArray*       metaGetSmaTbUids(SMeta* pMeta);
void*         metaGetIdx(SMeta* pMeta);
void*         metaGetIvtIdx(SMeta* pMeta);
C
Cary Xu 已提交
180

181 182
int64_t       metaGetTbNum(SMeta *pMeta);
void          metaReaderDoInit(SMetaReader *pReader, SMeta *pMeta, int32_t flags);
183

184 185
int32_t metaCreateTSma(SMeta* pMeta, int64_t version, SSmaCfg* pCfg);
int32_t metaDropTSma(SMeta* pMeta, int64_t indexUid);
H
Hongze Cheng 已提交
186

H
Hongze Cheng 已提交
187 188 189 190 191 192
typedef struct SMetaInfo {
  int64_t uid;
  int64_t suid;
  int64_t version;
  int32_t skmVer;
} SMetaInfo;
193
int32_t metaGetInfo(SMeta* pMeta, int64_t uid, SMetaInfo* pInfo, SMetaReader* pReader);
H
Hongze Cheng 已提交
194

H
Hongze Cheng 已提交
195
// tsdb
196 197 198
int     tsdbOpen(SVnode* pVnode, STsdb** ppTsdb, const char* dir, STsdbKeepCfg* pKeepCfg, int8_t rollback);
int     tsdbClose(STsdb** pTsdb);
int32_t tsdbBegin(STsdb* pTsdb);
H
Hongze Cheng 已提交
199
int32_t tsdbPrepareCommit(STsdb* pTsdb);
H
Hongze Cheng 已提交
200
int32_t tsdbCommit(STsdb* pTsdb, SCommitInfo* pInfo);
201
int32_t tsdbCacheCommit(STsdb* pTsdb);
H
Hongze Cheng 已提交
202
int32_t tsdbCompact(STsdb* pTsdb, SCompactInfo* pInfo);
203 204
int32_t tsdbFinishCommit(STsdb* pTsdb);
int32_t tsdbRollbackCommit(STsdb* pTsdb);
205 206
int     tsdbScanAndConvertSubmitMsg(STsdb* pTsdb, SSubmitReq2* pMsg);
int     tsdbInsertData(STsdb* pTsdb, int64_t version, SSubmitReq2* pMsg, SSubmitRsp2* pRsp);
H
Hongze Cheng 已提交
207
int32_t tsdbInsertTableData(STsdb* pTsdb, int64_t version, SSubmitTbData* pSubmitTbData, int32_t* affectedRows);
208 209
int32_t tsdbDeleteTableData(STsdb* pTsdb, int64_t version, tb_uid_t suid, tb_uid_t uid, TSKEY sKey, TSKEY eKey);
int32_t tsdbSetKeepCfg(STsdb* pTsdb, STsdbCfg* pCfg);
H
Hongze Cheng 已提交
210 211

// tq
X
Xiaoyu Wang 已提交
212 213 214
int  tqInit();
void tqCleanUp();
STQ* tqOpen(const char* path, SVnode* pVnode);
H
Haojun Liao 已提交
215
void tqNotifyClose(STQ*);
X
Xiaoyu Wang 已提交
216 217
void tqClose(STQ*);
int  tqPushMsg(STQ*, void* msg, int32_t msgLen, tmsg_t msgType, int64_t ver);
218
int  tqRegisterPushHandle(STQ* pTq, void* handle, SRpcMsg* pMsg);
219
int  tqUnregisterPushHandle(STQ* pTq, void* pHandle);
220
int  tqStartStreamTasks(STQ* pTq);  // restore all stream tasks after vnode launching completed.
221
int  tqCheckStreamStatus(STQ* pTq);
222

H
Hongze Cheng 已提交
223
int     tqCommit(STQ*);
224
int32_t tqUpdateTbUidList(STQ* pTq, const SArray* tbUidList, bool isAdd);
L
Liu Jicong 已提交
225
int32_t tqCheckColModifiable(STQ* pTq, int64_t tbUid, int32_t colId);
226 227 228
// tq-mq
int32_t tqProcessAddCheckInfoReq(STQ* pTq, int64_t version, char* msg, int32_t msgLen);
int32_t tqProcessDelCheckInfoReq(STQ* pTq, int64_t version, char* msg, int32_t msgLen);
L
Liu Jicong 已提交
229 230
int32_t tqProcessSubscribeReq(STQ* pTq, int64_t version, char* msg, int32_t msgLen);
int32_t tqProcessDeleteSubReq(STQ* pTq, int64_t version, char* msg, int32_t msgLen);
231
int32_t tqProcessOffsetCommitReq(STQ* pTq, int64_t version, char* msg, int32_t msgLen);
232
int32_t tqProcessSeekReq(STQ* pTq, int64_t sversion, char* msg, int32_t msgLen);
L
Liu Jicong 已提交
233
int32_t tqProcessPollReq(STQ* pTq, SRpcMsg* pMsg);
234
int32_t tqProcessPollPush(STQ* pTq, SRpcMsg* pMsg);
235 236
int32_t tqProcessVgWalInfoReq(STQ* pTq, SRpcMsg* pMsg);

237 238 239
// tq-stream
int32_t tqProcessTaskDeployReq(STQ* pTq, int64_t version, char* msg, int32_t msgLen);
int32_t tqProcessTaskDropReq(STQ* pTq, int64_t version, char* msg, int32_t msgLen);
5
54liuyao 已提交
240 241
int32_t tqProcessTaskPauseReq(STQ* pTq, int64_t version, char* msg, int32_t msgLen);
int32_t tqProcessTaskResumeReq(STQ* pTq, int64_t version, char* msg, int32_t msgLen);
242
int32_t tqProcessStreamTaskCheckReq(STQ* pTq, SRpcMsg* pMsg);
243
int32_t tqProcessStreamTaskCheckRsp(STQ* pTq, int64_t version, SRpcMsg* pMsg);
L
Liu Jicong 已提交
244
int32_t tqProcessTaskRunReq(STQ* pTq, SRpcMsg* pMsg);
L
Liu Jicong 已提交
245
int32_t tqProcessTaskDispatchReq(STQ* pTq, SRpcMsg* pMsg, bool exec);
L
Liu Jicong 已提交
246
int32_t tqProcessTaskDispatchRsp(STQ* pTq, SRpcMsg* pMsg);
L
Liu Jicong 已提交
247 248
int32_t tqProcessTaskRetrieveReq(STQ* pTq, SRpcMsg* pMsg);
int32_t tqProcessTaskRetrieveRsp(STQ* pTq, SRpcMsg* pMsg);
249
int32_t tqProcessTaskScanHistory(STQ* pTq, SRpcMsg* pMsg);
H
Haojun Liao 已提交
250
int32_t tqProcessTaskTransferStateReq(STQ* pTq, int64_t version, char* msg, int32_t msgLen);
251
int32_t tqProcessStreamTaskScanHistoryFinishReq(STQ* pTq, SRpcMsg* pMsg);
L
Liu Jicong 已提交
252
int32_t tqProcessTaskRecoverFinishRsp(STQ* pTq, SRpcMsg* pMsg);
L
Liu Jicong 已提交
253
int32_t tqCheckLogInWal(STQ* pTq, int64_t version);
H
Hongze Cheng 已提交
254

C
Cary Xu 已提交
255
// sma
C
Cary Xu 已提交
256 257
int32_t smaInit();
void    smaCleanUp();
H
Hongze Cheng 已提交
258
int32_t smaOpen(SVnode* pVnode, int8_t rollback);
259
int32_t smaClose(SSma* pSma);
C
Cary Xu 已提交
260
int32_t smaBegin(SSma* pSma);
K
kailixu 已提交
261
int32_t smaPrepareAsyncCommit(SSma* pSma);
H
Hongze Cheng 已提交
262
int32_t smaCommit(SSma* pSma, SCommitInfo* pInfo);
C
Cary Xu 已提交
263
int32_t smaFinishCommit(SSma* pSma);
C
Cary Xu 已提交
264
int32_t smaPostCommit(SSma* pSma);
C
Cary Xu 已提交
265
int32_t smaDoRetention(SSma* pSma, int64_t now);
C
Cary Xu 已提交
266

C
Cary Xu 已提交
267
int32_t tdProcessTSmaCreate(SSma* pSma, int64_t version, const char* msg);
268 269
int32_t tdProcessTSmaInsert(SSma* pSma, int64_t indexUid, const char* msg);

270
int32_t tdProcessRSmaCreate(SSma* pSma, SVCreateStbReq* pReq);
K
kailixu 已提交
271
int32_t tdProcessRSmaSubmit(SSma* pSma, int64_t version, void* pReq, void* pMsg, int32_t len, int32_t inputType);
272
int32_t tdProcessRSmaDrop(SSma* pSma, SVDropStbReq* pReq);
273
int32_t tdFetchTbUidList(SSma* pSma, STbUidStore** ppStore, tb_uid_t suid, tb_uid_t uid);
274
int32_t tdUpdateTbUidList(SSma* pSma, STbUidStore* pUidStore, bool isAdd);
275 276
void*   tdUidStoreFree(STbUidStore* pStore);

H
Hongze Cheng 已提交
277 278 279
// SMetaSnapReader ========================================
int32_t metaSnapReaderOpen(SMeta* pMeta, int64_t sver, int64_t ever, SMetaSnapReader** ppReader);
int32_t metaSnapReaderClose(SMetaSnapReader** ppReader);
H
Hongze Cheng 已提交
280
int32_t metaSnapRead(SMetaSnapReader* pReader, uint8_t** ppData);
H
Hongze Cheng 已提交
281
// SMetaSnapWriter ========================================
H
Hongze Cheng 已提交
282 283 284
int32_t metaSnapWriterOpen(SMeta* pMeta, int64_t sver, int64_t ever, SMetaSnapWriter** ppWriter);
int32_t metaSnapWrite(SMetaSnapWriter* pWriter, uint8_t* pData, uint32_t nData);
int32_t metaSnapWriterClose(SMetaSnapWriter** ppWriter, int8_t rollback);
H
Hongze Cheng 已提交
285
// STsdbSnapReader ========================================
C
Cary Xu 已提交
286
int32_t tsdbSnapReaderOpen(STsdb* pTsdb, int64_t sver, int64_t ever, int8_t type, STsdbSnapReader** ppReader);
H
Hongze Cheng 已提交
287
int32_t tsdbSnapReaderClose(STsdbSnapReader** ppReader);
H
Hongze Cheng 已提交
288
int32_t tsdbSnapRead(STsdbSnapReader* pReader, uint8_t** ppData);
H
Hongze Cheng 已提交
289
// STsdbSnapWriter ========================================
H
Hongze Cheng 已提交
290
int32_t tsdbSnapWriterOpen(STsdb* pTsdb, int64_t sver, int64_t ever, STsdbSnapWriter** ppWriter);
H
Hongze Cheng 已提交
291
int32_t tsdbSnapWrite(STsdbSnapWriter* pWriter, SSnapDataHdr* pHdr);
H
Hongze Cheng 已提交
292
int32_t tsdbSnapWriterPrepareClose(STsdbSnapWriter* pWriter);
H
Hongze Cheng 已提交
293
int32_t tsdbSnapWriterClose(STsdbSnapWriter** ppWriter, int8_t rollback);
L
Liu Jicong 已提交
294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
// STqSnapshotReader ==
int32_t tqSnapReaderOpen(STQ* pTq, int64_t sver, int64_t ever, STqSnapReader** ppReader);
int32_t tqSnapReaderClose(STqSnapReader** ppReader);
int32_t tqSnapRead(STqSnapReader* pReader, uint8_t** ppData);
// STqSnapshotWriter ======================================
int32_t tqSnapWriterOpen(STQ* pTq, int64_t sver, int64_t ever, STqSnapWriter** ppWriter);
int32_t tqSnapWriterClose(STqSnapWriter** ppWriter, int8_t rollback);
int32_t tqSnapWrite(STqSnapWriter* pWriter, uint8_t* pData, uint32_t nData);
// STqOffsetReader ========================================
int32_t tqOffsetReaderOpen(STQ* pTq, int64_t sver, int64_t ever, STqOffsetReader** ppReader);
int32_t tqOffsetReaderClose(STqOffsetReader** ppReader);
int32_t tqOffsetSnapRead(STqOffsetReader* pReader, uint8_t** ppData);
// STqOffsetWriter ========================================
int32_t tqOffsetWriterOpen(STQ* pTq, int64_t sver, int64_t ever, STqOffsetWriter** ppWriter);
int32_t tqOffsetWriterClose(STqOffsetWriter** ppWriter, int8_t rollback);
int32_t tqOffsetSnapWrite(STqOffsetWriter* pWriter, uint8_t* pData, uint32_t nData);
// SStreamTaskWriter ======================================
// SStreamTaskReader ======================================
// SStreamStateWriter =====================================
// SStreamStateReader =====================================
314 315 316 317 318 319 320
// SRSmaSnapReader ========================================
int32_t rsmaSnapReaderOpen(SSma* pSma, int64_t sver, int64_t ever, SRSmaSnapReader** ppReader);
int32_t rsmaSnapReaderClose(SRSmaSnapReader** ppReader);
int32_t rsmaSnapRead(SRSmaSnapReader* pReader, uint8_t** ppData);
// SRSmaSnapWriter ========================================
int32_t rsmaSnapWriterOpen(SSma* pSma, int64_t sver, int64_t ever, SRSmaSnapWriter** ppWriter);
int32_t rsmaSnapWrite(SRSmaSnapWriter* pWriter, uint8_t* pData, uint32_t nData);
K
kailixu 已提交
321
int32_t rsmaSnapWriterPrepareClose(SRSmaSnapWriter* pWriter);
322
int32_t rsmaSnapWriterClose(SRSmaSnapWriter** ppWriter, int8_t rollback);
H
Hongze Cheng 已提交
323

L
Liu Jicong 已提交
324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
typedef struct {
  int8_t  streamType;  // sma or other
  int8_t  dstType;
  int16_t padding;
  int32_t smaId;
  int64_t tbUid;
  int64_t lastReceivedVer;
  int64_t lastCommittedVer;
} SStreamSinkInfo;

typedef struct {
  SVnode*   pVnode;
  SHashObj* pHash;  // streamId -> SStreamSinkInfo
} SSink;

H
refact  
Hongze Cheng 已提交
339 340 341 342
// SVState
struct SVState {
  int64_t committed;
  int64_t applied;
H
Hongze Cheng 已提交
343
  int64_t applyTerm;
H
Hongze Cheng 已提交
344
  int64_t commitID;
H
Hongze Cheng 已提交
345
  int64_t commitTerm;
H
refact  
Hongze Cheng 已提交
346 347
};

C
Cary Xu 已提交
348
struct SVStatis {
C
Cary Xu 已提交
349 350 351 352
  int64_t nInsert;              // delta
  int64_t nInsertSuccess;       // delta
  int64_t nBatchInsert;         // delta
  int64_t nBatchInsertSuccess;  // delta
C
Cary Xu 已提交
353 354
};

H
Hongze Cheng 已提交
355 356 357
struct SVnodeInfo {
  SVnodeCfg config;
  SVState   state;
C
Cary Xu 已提交
358
  SVStatis  statis;
H
Hongze Cheng 已提交
359 360
};

C
Cary Xu 已提交
361 362 363 364 365 366 367 368
typedef enum {
  TSDB_TYPE_TSDB = 0,     // TSDB
  TSDB_TYPE_TSMA = 1,     // TSMA
  TSDB_TYPE_RSMA_L0 = 2,  // RSMA Level 0
  TSDB_TYPE_RSMA_L1 = 3,  // RSMA Level 1
  TSDB_TYPE_RSMA_L2 = 4,  // RSMA Level 2
} ETsdbType;

L
Liu Jicong 已提交
369
struct STsdbKeepCfg {
C
Cary Xu 已提交
370 371 372 373 374
  int8_t  precision;  // precision always be used with below keep cfgs
  int32_t days;
  int32_t keep0;
  int32_t keep1;
  int32_t keep2;
375
};
C
Cary Xu 已提交
376

377 378 379 380 381
typedef struct SVCommitSched {
  int64_t commitMs;
  int64_t maxWaitMs;
} SVCommitSched;

H
save  
Hongze Cheng 已提交
382
struct SVnode {
H
Hongze Cheng 已提交
383 384 385 386 387 388 389 390
  char*     path;
  SVnodeCfg config;
  SVState   state;
  SVStatis  statis;
  STfs*     pTfs;
  SMsgCb    msgCb;

  // Buffer Pool
H
Hongze Cheng 已提交
391 392
  TdThreadMutex mutex;
  TdThreadCond  poolNotEmpty;
H
Hongze Cheng 已提交
393 394
  SVBufPool*    aBufPool[VNODE_BUFPOOL_SEGMENTS];
  SVBufPool*    freeList;
H
Hongze Cheng 已提交
395
  SVBufPool*    inUse;
H
Hongze Cheng 已提交
396 397 398
  SVBufPool*    onCommit;
  SVBufPool*    recycleHead;
  SVBufPool*    recycleTail;
H
Hongze Cheng 已提交
399
  SVBufPool*    onRecycle;
H
Hongze Cheng 已提交
400

H
Hongze Cheng 已提交
401 402 403 404 405 406 407 408
  SMeta*        pMeta;
  SSma*         pSma;
  STsdb*        pTsdb;
  SWal*         pWal;
  STQ*          pTq;
  SSink*        pSink;
  tsem_t        canCommit;
  int64_t       sync;
409
  TdThreadMutex lock;
410
  bool          blocked;
411
  bool          restored;
H
Hongze Cheng 已提交
412
  tsem_t        syncSem;
413 414
  int32_t       blockSec;
  int64_t       blockSeq;
H
Hongze Cheng 已提交
415
  SQHandle*     pQuery;
H
save  
Hongze Cheng 已提交
416 417
};

C
Cary Xu 已提交
418
#define TD_VID(PVNODE) ((PVNODE)->config.vgId)
419

C
Cary Xu 已提交
420 421
#define VND_TSDB(vnd)       ((vnd)->pTsdb)
#define VND_RSMA0(vnd)      ((vnd)->pTsdb)
C
Cary Xu 已提交
422 423
#define VND_RSMA1(vnd)      ((vnd)->pSma->pRSmaTsdb[TSDB_RETENTION_L0])
#define VND_RSMA2(vnd)      ((vnd)->pSma->pRSmaTsdb[TSDB_RETENTION_L1])
C
Cary Xu 已提交
424
#define VND_RETENTIONS(vnd) (&(vnd)->config.tsdbCfg.retentions)
C
Cary Xu 已提交
425 426
#define VND_IS_RSMA(v)      ((v)->config.isRsma == 1)
#define VND_IS_TSMA(v)      ((v)->config.isTsma == 1)
C
Cary Xu 已提交
427

428 429 430 431
#define TSDB_CACHE_NO(c)       ((c).cacheLast == 0)
#define TSDB_CACHE_LAST_ROW(c) (((c).cacheLast & 1) > 0)
#define TSDB_CACHE_LAST(c)     (((c).cacheLast & 2) > 0)

H
Hongze Cheng 已提交
432 433 434 435 436 437
struct STbUidStore {
  tb_uid_t  suid;
  SArray*   tbUids;
  SHashObj* uidHash;
};

438 439 440 441
struct SSma {
  bool          locked;
  TdThreadMutex mutex;
  SVnode*       pVnode;
C
Cary Xu 已提交
442
  STsdb*        pRSmaTsdb[TSDB_RETENTION_L2];
443 444 445 446 447 448
  void*         pTSmaEnv;
  void*         pRSmaEnv;
};

#define SMA_CFG(s)        (&(s)->pVnode->config)
#define SMA_TSDB_CFG(s)   (&(s)->pVnode->config.tsdbCfg)
H
Hongze Cheng 已提交
449
#define SMA_RETENTION(s)  ((SRetention*)&(s)->pVnode->config.tsdbCfg.retentions)
450 451 452 453 454 455 456
#define SMA_LOCKED(s)     ((s)->locked)
#define SMA_META(s)       ((s)->pVnode->pMeta)
#define SMA_VID(s)        TD_VID((s)->pVnode)
#define SMA_TFS(s)        ((s)->pVnode->pTfs)
#define SMA_TSMA_ENV(s)   ((s)->pTSmaEnv)
#define SMA_RSMA_ENV(s)   ((s)->pRSmaEnv)
#define SMA_RSMA_TSDB0(s) ((s)->pVnode->pTsdb)
C
Cary Xu 已提交
457 458
#define SMA_RSMA_TSDB1(s) ((s)->pRSmaTsdb[TSDB_RETENTION_L0])
#define SMA_RSMA_TSDB2(s) ((s)->pRSmaTsdb[TSDB_RETENTION_L1])
H
refact  
Hongze Cheng 已提交
459

L
Liu Jicong 已提交
460
// sma
L
Liu Jicong 已提交
461
void smaHandleRes(void* pVnode, int64_t smaId, const SArray* data);
L
Liu Jicong 已提交
462

C
Cary Xu 已提交
463
enum {
H
Hongze Cheng 已提交
464
  SNAP_DATA_CFG = 0,
C
Cary Xu 已提交
465 466 467 468 469 470 471 472 473 474
  SNAP_DATA_META = 1,
  SNAP_DATA_TSDB = 2,
  SNAP_DATA_DEL = 3,
  SNAP_DATA_RSMA1 = 4,
  SNAP_DATA_RSMA2 = 5,
  SNAP_DATA_QTASK = 6,
  SNAP_DATA_TQ_HANDLE = 7,
  SNAP_DATA_TQ_OFFSET = 8,
  SNAP_DATA_STREAM_TASK = 9,
  SNAP_DATA_STREAM_STATE = 10,
C
Cary Xu 已提交
475 476
};

H
Hongze Cheng 已提交
477 478
struct SSnapDataHdr {
  int8_t  type;
K
kailixu 已提交
479
  int8_t  flag;
H
Hongze Cheng 已提交
480
  int64_t index;
H
Hongze Cheng 已提交
481 482 483 484
  int64_t size;
  uint8_t data[];
};

H
Hongze Cheng 已提交
485 486 487
struct SCommitInfo {
  SVnodeInfo info;
  SVnode*    pVnode;
488
  TXN*       txn;
H
Hongze Cheng 已提交
489
};
H
Hongze Cheng 已提交
490

H
Hongze Cheng 已提交
491
struct SCompactInfo {
H
Hongze Cheng 已提交
492 493 494 495
  SVnode*     pVnode;
  int32_t     flag;
  int64_t     commitID;
  STimeWindow tw;
H
Hongze Cheng 已提交
496
};
H
Hongze Cheng 已提交
497

498 499
void initStorageAPI(SStorageAPI* pAPI);

H
save  
Hongze Cheng 已提交
500 501 502 503
#ifdef __cplusplus
}
#endif

L
Liu Jicong 已提交
504
#endif /*_TD_VNODE_DEF_H_*/