vnodeInt.h 6.8 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 22
#include "filter.h"
#include "qworker.h"
#include "sync.h"
H
Hongze Cheng 已提交
23
#include "tchecksum.h"
H
more  
Hongze Cheng 已提交
24
#include "tcoding.h"
H
Hongze Cheng 已提交
25
#include "tcompression.h"
L
Liu Jicong 已提交
26
#include "tdatablock.h"
H
refact  
Hongze Cheng 已提交
27
#include "tfs.h"
H
Hongze Cheng 已提交
28
#include "tglobal.h"
H
Hongze Cheng 已提交
29
#include "tlist.h"
H
refact  
Hongze Cheng 已提交
30
#include "tlockfree.h"
H
Hongze Cheng 已提交
31
#include "tlosertree.h"
H
Hongze Cheng 已提交
32
#include "tmacro.h"
H
Hongze Cheng 已提交
33
#include "tmallocator.h"
H
Hongze Cheng 已提交
34
#include "tskiplist.h"
H
Hongze Cheng 已提交
35
#include "tstream.h"
H
Hongze Cheng 已提交
36
#include "ttime.h"
H
Hongze Cheng 已提交
37 38 39
#include "ttimer.h"
#include "vnode.h"
#include "wal.h"
H
save  
Hongze Cheng 已提交
40 41 42 43 44

#ifdef __cplusplus
extern "C" {
#endif

L
Liu Jicong 已提交
45 46
typedef struct STQ STQ;

H
Hongze Cheng 已提交
47 48 49
typedef struct SVState      SVState;
typedef struct SVBufPool    SVBufPool;
typedef struct SQWorkerMgmt SQHandle;
H
refact  
Hongze Cheng 已提交
50

H
Hongze Cheng 已提交
51 52 53 54 55 56 57 58 59
typedef struct SVnodeTask {
  TD_DLIST_NODE(SVnodeTask);
  void* arg;
  int (*execute)(void*);
} SVnodeTask;

typedef struct SVnodeMgr {
  td_mode_flag_t vnodeInitFlag;
  // For commit
S
shm  
Shengliang Guan 已提交
60 61 62
  bool          stop;
  uint16_t      nthreads;
  TdThread*     threads;
wafwerar's avatar
wafwerar 已提交
63 64
  TdThreadMutex mutex;
  TdThreadCond  hasTask;
H
Hongze Cheng 已提交
65 66 67
  TD_DLIST(SVnodeTask) queue;
} SVnodeMgr;

L
Liu Jicong 已提交
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
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
Hongze Cheng 已提交
83 84
extern SVnodeMgr vnodeMgr;

H
refact  
Hongze Cheng 已提交
85 86 87 88 89 90 91
// SVState
struct SVState {
  int64_t processed;
  int64_t committed;
  int64_t applied;
};

H
save  
Hongze Cheng 已提交
92
struct SVnode {
H
refact  
Hongze Cheng 已提交
93 94 95 96 97 98 99 100
  int32_t    vgId;
  char*      path;
  SVnodeCfg  config;
  SVState    state;
  SVBufPool* pBufPool;
  SMeta*     pMeta;
  STsdb*     pTsdb;
  SWal*      pWal;
L
Liu Jicong 已提交
101 102
  STQ*       pTq;
  SSink*     pSink;
H
refact  
Hongze Cheng 已提交
103 104
  tsem_t     canCommit;
  SQHandle*  pQuery;
S
Shengliang Guan 已提交
105
  SMsgCb     msgCb;
S
Shengliang Guan 已提交
106
  STfs*      pTfs;
H
save  
Hongze Cheng 已提交
107 108
};

H
Hongze Cheng 已提交
109 110 111
int  vnodeScheduleTask(SVnodeTask* task);
int  vnodeQueryOpen(SVnode* pVnode);
void vnodeQueryClose(SVnode* pVnode);
H
Hongze Cheng 已提交
112

113 114 115 116 117
#define vFatal(...)                                              \
  do {                                                           \
    if (vDebugFlag & DEBUG_FATAL) {                              \
      taosPrintLog("VND FATAL ", DEBUG_FATAL, 255, __VA_ARGS__); \
    }                                                            \
H
refact  
Hongze Cheng 已提交
118
  } while (0)
119 120 121 122 123
#define vError(...)                                              \
  do {                                                           \
    if (vDebugFlag & DEBUG_ERROR) {                              \
      taosPrintLog("VND ERROR ", DEBUG_ERROR, 255, __VA_ARGS__); \
    }                                                            \
H
refact  
Hongze Cheng 已提交
124
  } while (0)
125 126 127 128 129
#define vWarn(...)                                             \
  do {                                                         \
    if (vDebugFlag & DEBUG_WARN) {                             \
      taosPrintLog("VND WARN ", DEBUG_WARN, 255, __VA_ARGS__); \
    }                                                          \
H
refact  
Hongze Cheng 已提交
130
  } while (0)
131 132 133 134 135
#define vInfo(...)                                        \
  do {                                                    \
    if (vDebugFlag & DEBUG_INFO) {                        \
      taosPrintLog("VND ", DEBUG_INFO, 255, __VA_ARGS__); \
    }                                                     \
H
refact  
Hongze Cheng 已提交
136
  } while (0)
137 138 139 140 141
#define vDebug(...)                                                  \
  do {                                                               \
    if (vDebugFlag & DEBUG_DEBUG) {                                  \
      taosPrintLog("VND ", DEBUG_DEBUG, tsdbDebugFlag, __VA_ARGS__); \
    }                                                                \
H
refact  
Hongze Cheng 已提交
142
  } while (0)
143 144 145 146 147
#define vTrace(...)                                                  \
  do {                                                               \
    if (vDebugFlag & DEBUG_TRACE) {                                  \
      taosPrintLog("VND ", DEBUG_TRACE, tsdbDebugFlag, __VA_ARGS__); \
    }                                                                \
H
refact  
Hongze Cheng 已提交
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
  } while (0)

// vnodeCfg.h
extern const SVnodeCfg defaultVnodeOptions;

int  vnodeValidateOptions(const SVnodeCfg*);
void vnodeOptionsCopy(SVnodeCfg* pDest, const SVnodeCfg* pSrc);

// For commit
#define vnodeShouldCommit vnodeBufPoolIsFull
int vnodeSyncCommit(SVnode* pVnode);
int vnodeAsyncCommit(SVnode* pVnode);

// SVBufPool

int   vnodeOpenBufPool(SVnode* pVnode);
void  vnodeCloseBufPool(SVnode* pVnode);
int   vnodeBufPoolSwitch(SVnode* pVnode);
int   vnodeBufPoolRecycle(SVnode* pVnode);
void* vnodeMalloc(SVnode* pVnode, uint64_t size);
bool  vnodeBufPoolIsFull(SVnode* pVnode);

SMemAllocatorFactory* vBufPoolGetMAF(SVnode* pVnode);

// SVMemAllocator
typedef struct SVArenaNode {
  TD_SLIST_NODE(SVArenaNode);
  uint64_t size;  // current node size
  void*    ptr;
  char     data[];
} SVArenaNode;

typedef struct SVMemAllocator {
  T_REF_DECLARE()
  TD_DLIST_NODE(SVMemAllocator);
  uint64_t     capacity;
  uint64_t     ssize;
  uint64_t     lsize;
  SVArenaNode* pNode;
  TD_SLIST(SVArenaNode) nlist;
} SVMemAllocator;

SVMemAllocator* vmaCreate(uint64_t capacity, uint64_t ssize, uint64_t lsize);
void            vmaDestroy(SVMemAllocator* pVMA);
void            vmaReset(SVMemAllocator* pVMA);
void*           vmaMalloc(SVMemAllocator* pVMA, uint64_t size);
void            vmaFree(SVMemAllocator* pVMA, void* ptr);
bool            vmaIsFull(SVMemAllocator* pVMA);

L
Liu Jicong 已提交
197 198 199 200 201
// init once
int  tqInit();
void tqCleanUp();

// open in each vnode
L
Liu Jicong 已提交
202 203
STQ* tqOpen(const char* path, SVnode* pVnode, SWal* pWal, SMeta* pMeta, STqCfg* tqConfig,
            SMemAllocatorFactory* allocFac);
L
Liu Jicong 已提交
204 205 206
void tqClose(STQ*);

// required by vnode
L
Liu Jicong 已提交
207
int tqPushMsg(STQ*, void* msg, int32_t msgLen, tmsg_t msgType, int64_t version);
L
Liu Jicong 已提交
208 209
int tqCommit(STQ*);

L
fix  
Liu Jicong 已提交
210
int32_t tqProcessPollReq(STQ* pTq, SRpcMsg* pMsg, int32_t workerId);
L
Liu Jicong 已提交
211 212
int32_t tqProcessSetConnReq(STQ* pTq, char* msg);
int32_t tqProcessRebReq(STQ* pTq, char* msg);
L
Liu Jicong 已提交
213
int32_t tqProcessCancelConnReq(STQ* pTq, char* msg);
L
Liu Jicong 已提交
214
int32_t tqProcessTaskExec(STQ* pTq, char* msg, int32_t msgLen, int32_t workerId);
L
Liu Jicong 已提交
215
int32_t tqProcessTaskDeploy(STQ* pTq, char* msg, int32_t msgLen);
L
Liu Jicong 已提交
216
int32_t tqProcessStreamTrigger(STQ* pTq, void* data, int32_t dataLen, int32_t workerId);
L
Liu Jicong 已提交
217

L
Liu Jicong 已提交
218
// sma
L
Liu Jicong 已提交
219
void smaHandleRes(void* pVnode, int64_t smaId, const SArray* data);
L
Liu Jicong 已提交
220

H
Hongze Cheng 已提交
221 222 223 224 225 226
#include "meta.h"

#include "tsdb.h"

#include "tq.h"

C
Cary Xu 已提交
227 228
#include "tsdbSma.h"

H
save  
Hongze Cheng 已提交
229 230 231 232
#ifdef __cplusplus
}
#endif

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