mndDef.h 13.9 KB
Newer Older
H
refact  
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/>.
 */

S
Shengliang Guan 已提交
16 17
#ifndef _TD_MND_DEF_H_
#define _TD_MND_DEF_H_
S
Shengliang Guan 已提交
18

19
#include "os.h"
S
Shengliang Guan 已提交
20 21

#include "cJSON.h"
L
Liu Jicong 已提交
22
#include "scheduler.h"
S
Shengliang Guan 已提交
23 24
#include "sync.h"
#include "thash.h"
L
Liu Jicong 已提交
25
#include "tlist.h"
S
Shengliang Guan 已提交
26
#include "tlog.h"
L
Liu Jicong 已提交
27
#include "tmsg.h"
S
Shengliang Guan 已提交
28
#include "trpc.h"
L
Liu Jicong 已提交
29
#include "tstream.h"
S
Shengliang Guan 已提交
30
#include "ttimer.h"
S
Shengliang Guan 已提交
31

S
Shengliang Guan 已提交
32
#include "mnode.h"
S
Shengliang Guan 已提交
33

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

S
Shengliang Guan 已提交
38
typedef enum {
39 40 41 42 43 44 45 46
  MND_AUTH_ACCT_START = 0,
  MND_AUTH_ACCT_USER,
  MND_AUTH_ACCT_DNODE,
  MND_AUTH_ACCT_MNODE,
  MND_AUTH_ACCT_DB,
  MND_AUTH_ACCT_TABLE,
  MND_AUTH_ACCT_MAX
} EAuthAcct;
S
Shengliang Guan 已提交
47 48

typedef enum {
49 50 51 52 53 54
  MND_AUTH_OP_START = 0,
  MND_AUTH_OP_CREATE_USER,
  MND_AUTH_OP_ALTER_USER,
  MND_AUTH_OP_DROP_USER,
  MND_AUTH_MAX
} EAuthOp;
S
Shengliang Guan 已提交
55

S
Shengliang Guan 已提交
56
typedef enum {
57 58 59 60
  TRN_CONFLICT_NOTHING = 0,
  TRN_CONFLICT_GLOBAL = 1,
  TRN_CONFLICT_DB = 2,
} ETrnConflct;
S
Shengliang Guan 已提交
61

S
Shengliang Guan 已提交
62
typedef enum {
63
  TRN_STAGE_PREPARE = 0,
64 65 66 67 68 69
  TRN_STAGE_REDO_ACTION = 1,
  TRN_STAGE_ROLLBACK = 2,
  TRN_STAGE_UNDO_ACTION = 3,
  TRN_STAGE_COMMIT = 4,
  TRN_STAGE_COMMIT_ACTION = 5,
  TRN_STAGE_FINISHED = 6
S
Shengliang Guan 已提交
70 71
} ETrnStage;

S
Shengliang Guan 已提交
72 73 74 75
typedef enum {
  TRN_POLICY_ROLLBACK = 0,
  TRN_POLICY_RETRY = 1,
} ETrnPolicy;
S
Shengliang Guan 已提交
76

77
typedef enum {
78 79 80
  TRN_EXEC_PRARLLEL = 0,
  TRN_EXEC_SERIAL = 1,
} ETrnExec;
81

S
Shengliang Guan 已提交
82 83 84 85 86 87 88 89 90 91 92 93 94 95
typedef enum {
  DND_REASON_ONLINE = 0,
  DND_REASON_STATUS_MSG_TIMEOUT,
  DND_REASON_STATUS_NOT_RECEIVED,
  DND_REASON_VERSION_NOT_MATCH,
  DND_REASON_DNODE_ID_NOT_MATCH,
  DND_REASON_CLUSTER_ID_NOT_MATCH,
  DND_REASON_STATUS_INTERVAL_NOT_MATCH,
  DND_REASON_TIME_ZONE_NOT_MATCH,
  DND_REASON_LOCALE_NOT_MATCH,
  DND_REASON_CHARSET_NOT_MATCH,
  DND_REASON_OTHERS
} EDndReason;

S
Shengliang Guan 已提交
96 97 98 99 100 101 102 103 104
typedef enum {
  CONSUMER_UPDATE__TOUCH = 1,
  CONSUMER_UPDATE__ADD,
  CONSUMER_UPDATE__REMOVE,
  CONSUMER_UPDATE__LOST,
  CONSUMER_UPDATE__RECOVER,
  CONSUMER_UPDATE__MODIFY,
} ECsmUpdateType;

S
Shengliang Guan 已提交
105
typedef struct {
S
Shengliang Guan 已提交
106 107 108
  int32_t        id;
  ETrnStage      stage;
  ETrnPolicy     policy;
109 110
  ETrnConflct    conflict;
  ETrnExec       exec;
S
Shengliang Guan 已提交
111 112 113 114 115
  int32_t        code;
  int32_t        failedTimes;
  SRpcHandleInfo rpcInfo;
  void*          rpcRsp;
  int32_t        rpcRspLen;
116
  int32_t        redoActionPos;
S
Shengliang Guan 已提交
117 118
  SArray*        redoActions;
  SArray*        undoActions;
119
  SArray*        commitActions;
S
Shengliang Guan 已提交
120 121 122 123
  int64_t        createdTime;
  int64_t        lastExecTime;
  char           dbname[TSDB_DB_FNAME_LEN];
  char           lastError[TSDB_TRANS_ERROR_LEN];
124
  char           desc[TSDB_TRANS_DESC_LEN];
S
Shengliang Guan 已提交
125 126 127 128
  int32_t        startFunc;
  int32_t        stopFunc;
  int32_t        paramLen;
  void*          param;
S
Shengliang Guan 已提交
129
} STrans;
S
Shengliang Guan 已提交
130

S
Shengliang Guan 已提交
131
typedef struct {
132
  int64_t id;
S
Shengliang Guan 已提交
133
  char    name[TSDB_CLUSTER_ID_LEN];
S
Shengliang Guan 已提交
134 135 136 137
  int64_t createdTime;
  int64_t updateTime;
} SClusterObj;

S
Shengliang Guan 已提交
138
typedef struct {
S
Shengliang Guan 已提交
139 140 141 142
  int32_t    id;
  int64_t    createdTime;
  int64_t    updateTime;
  int64_t    rebootTime;
143
  int64_t    lastAccessTime;
S
Shengliang Guan 已提交
144
  int32_t    accessTimes;
S
Shengliang Guan 已提交
145
  int32_t    numOfVnodes;
S
Shengliang Guan 已提交
146 147
  int32_t    numOfSupportVnodes;
  int32_t    numOfCores;
S
Shengliang Guan 已提交
148 149 150 151
  EDndReason offlineReason;
  uint16_t   port;
  char       fqdn[TSDB_FQDN_LEN];
  char       ep[TSDB_EP_LEN];
S
Shengliang Guan 已提交
152 153
} SDnodeObj;

S
Shengliang Guan 已提交
154
typedef struct {
S
Shengliang Guan 已提交
155
  int32_t    id;
S
Shengliang Guan 已提交
156 157
  int64_t    createdTime;
  int64_t    updateTime;
158 159
  ESyncState state;
  int64_t    stateStartTime;
L
Liu Jicong 已提交
160
  SDnodeObj* pDnode;
S
Shengliang Guan 已提交
161 162
} SMnodeObj;

S
Shengliang Guan 已提交
163 164 165 166
typedef struct {
  int32_t    id;
  int64_t    createdTime;
  int64_t    updateTime;
L
Liu Jicong 已提交
167
  SDnodeObj* pDnode;
S
Shengliang Guan 已提交
168 169 170 171 172 173
} SQnodeObj;

typedef struct {
  int32_t    id;
  int64_t    createdTime;
  int64_t    updateTime;
L
Liu Jicong 已提交
174
  SDnodeObj* pDnode;
S
Shengliang Guan 已提交
175 176 177 178 179 180
} SSnodeObj;

typedef struct {
  int32_t    id;
  int64_t    createdTime;
  int64_t    updateTime;
L
Liu Jicong 已提交
181
  SDnodeObj* pDnode;
S
Shengliang Guan 已提交
182 183
} SBnodeObj;

S
Shengliang Guan 已提交
184 185 186
typedef struct {
  int32_t maxUsers;
  int32_t maxDbs;
S
Shengliang Guan 已提交
187 188
  int32_t maxStbs;
  int32_t maxTbs;
S
Shengliang Guan 已提交
189 190
  int32_t maxTimeSeries;
  int32_t maxStreams;
S
Shengliang Guan 已提交
191 192 193 194
  int32_t maxFuncs;
  int32_t maxConsumers;
  int32_t maxConns;
  int32_t maxTopics;
195
  int64_t maxStorage;
S
Shengliang Guan 已提交
196
  int32_t accessState;  // Configured only by command
S
Shengliang Guan 已提交
197 198 199 200 201 202 203
} SAcctCfg;

typedef struct {
  int32_t numOfUsers;
  int32_t numOfDbs;
  int32_t numOfTimeSeries;
  int32_t numOfStreams;
S
Shengliang Guan 已提交
204 205
  int64_t totalStorage;  // Total storage wrtten from this account
  int64_t compStorage;   // Compressed storage on disk
S
Shengliang Guan 已提交
206 207
} SAcctInfo;

S
Shengliang Guan 已提交
208
typedef struct {
S
Shengliang Guan 已提交
209 210 211 212
  char      acct[TSDB_USER_LEN];
  int64_t   createdTime;
  int64_t   updateTime;
  int32_t   acctId;
S
Shengliang Guan 已提交
213
  int32_t   status;
S
Shengliang Guan 已提交
214 215 216 217
  SAcctCfg  cfg;
  SAcctInfo info;
} SAcctObj;

S
Shengliang Guan 已提交
218
typedef struct {
S
Shengliang Guan 已提交
219
  char      user[TSDB_USER_LEN];
220
  char      pass[TSDB_PASSWORD_LEN];
S
Shengliang Guan 已提交
221 222 223
  char      acct[TSDB_USER_LEN];
  int64_t   createdTime;
  int64_t   updateTime;
224
  int8_t    superUser;
S
Shengliang Guan 已提交
225
  int32_t   acctId;
D
dapan 已提交
226
  int32_t   authVersion;
227 228
  SHashObj* readDbs;
  SHashObj* writeDbs;
S
Shengliang Guan 已提交
229
  SRWLatch  lock;
S
Shengliang Guan 已提交
230 231 232
} SUserObj;

typedef struct {
233
  int32_t numOfVgroups;
S
Shengliang Guan 已提交
234 235 236 237
  int32_t numOfStables;
  int32_t buffer;
  int32_t pageSize;
  int32_t pages;
S
Shengliang Guan 已提交
238 239 240 241
  int32_t daysPerFile;
  int32_t daysToKeep0;
  int32_t daysToKeep1;
  int32_t daysToKeep2;
S
Shengliang Guan 已提交
242 243
  int32_t minRows;
  int32_t maxRows;
S
Shengliang Guan 已提交
244
  int32_t fsyncPeriod;
S
Shengliang Guan 已提交
245
  int8_t  walLevel;
S
Shengliang Guan 已提交
246 247 248
  int8_t  precision;
  int8_t  compression;
  int8_t  replications;
S
Shengliang Guan 已提交
249
  int8_t  strict;
S
Shengliang Guan 已提交
250
  int8_t  cacheLastRow;
S
Shengliang Guan 已提交
251
  int8_t  hashMethod;  // default is 1
S
sma  
Shengliang Guan 已提交
252 253
  int32_t numOfRetensions;
  SArray* pRetensions;
S
Shengliang Guan 已提交
254 255
} SDbCfg;

S
Shengliang Guan 已提交
256
typedef struct {
257 258 259 260 261 262 263 264 265 266
  char     name[TSDB_DB_FNAME_LEN];
  char     acct[TSDB_USER_LEN];
  char     createUser[TSDB_USER_LEN];
  int64_t  createdTime;
  int64_t  updateTime;
  int64_t  uid;
  int32_t  cfgVersion;
  int32_t  vgVersion;
  SDbCfg   cfg;
  SRWLatch lock;
S
Shengliang Guan 已提交
267 268 269 270
} SDbObj;

typedef struct {
  int32_t    dnodeId;
S
Shengliang Guan 已提交
271
  ESyncState role;
S
Shengliang Guan 已提交
272 273
} SVnodeGid;

S
Shengliang Guan 已提交
274
typedef struct {
S
Shengliang Guan 已提交
275
  int32_t   vgId;
S
Shengliang Guan 已提交
276 277
  int64_t   createdTime;
  int64_t   updateTime;
S
Shengliang Guan 已提交
278
  int32_t   version;
S
Shengliang Guan 已提交
279 280
  uint32_t  hashBegin;
  uint32_t  hashEnd;
281
  char      dbName[TSDB_DB_FNAME_LEN];
S
Shengliang Guan 已提交
282
  int64_t   dbUid;
S
Shengliang Guan 已提交
283 284
  int64_t   numOfTables;
  int64_t   numOfTimeSeries;
S
Shengliang Guan 已提交
285 286 287
  int64_t   totalStorage;
  int64_t   compStorage;
  int64_t   pointsWritten;
S
Shengliang Guan 已提交
288
  int8_t    compact;
S
Shengliang Guan 已提交
289
  int8_t    isTsma;
S
Shengliang Guan 已提交
290 291
  int8_t    replica;
  SVnodeGid vnodeGid[TSDB_MAX_REPLICA];
S
Shengliang Guan 已提交
292 293
} SVgObj;

S
Shengliang Guan 已提交
294
typedef struct {
S
Shengliang Guan 已提交
295
  char    name[TSDB_TABLE_FNAME_LEN];
S
sma  
Shengliang Guan 已提交
296 297
  char    stb[TSDB_TABLE_FNAME_LEN];
  char    db[TSDB_DB_FNAME_LEN];
S
Shengliang Guan 已提交
298 299 300
  int64_t createdTime;
  int64_t uid;
  int64_t stbUid;
S
sma  
Shengliang Guan 已提交
301
  int64_t dbUid;
S
Shengliang Guan 已提交
302 303 304
  int8_t  intervalUnit;
  int8_t  slidingUnit;
  int8_t  timezone;
S
sma  
Shengliang Guan 已提交
305
  int32_t dstVgId;  // for stream
S
Shengliang Guan 已提交
306 307 308
  int64_t interval;
  int64_t offset;
  int64_t sliding;
S
sma  
Shengliang Guan 已提交
309
  int32_t exprLen;  // strlen + 1
S
Shengliang Guan 已提交
310
  int32_t tagsFilterLen;
S
sma  
Shengliang Guan 已提交
311 312
  int32_t sqlLen;
  int32_t astLen;
S
Shengliang Guan 已提交
313 314
  char*   expr;
  char*   tagsFilter;
S
sma  
Shengliang Guan 已提交
315 316
  char*   sql;
  char*   ast;
S
Shengliang Guan 已提交
317 318
} SSmaObj;

S
Shengliang Guan 已提交
319
typedef struct {
S
Shengliang Guan 已提交
320
  char     name[TSDB_TABLE_FNAME_LEN];
321
  char     db[TSDB_DB_FNAME_LEN];
322 323
  int64_t  createdTime;
  int64_t  updateTime;
L
Liu Jicong 已提交
324 325
  int64_t  uid;
  int64_t  dbUid;
326 327
  int32_t  tagVer;
  int32_t  colVer;
S
Shengliang Guan 已提交
328
  int32_t  nextColId;
S
sma  
Shengliang Guan 已提交
329 330
  float    xFilesFactor;
  int32_t  delay;
S
sma  
Shengliang Guan 已提交
331
  int32_t  ttl;
S
Shengliang Guan 已提交
332 333
  int32_t  numOfColumns;
  int32_t  numOfTags;
S
sma  
Shengliang Guan 已提交
334
  int32_t  commentLen;
335 336
  int32_t  ast1Len;
  int32_t  ast2Len;
S
Shengliang Guan 已提交
337
  SSchema* pColumns;
S
Shengliang Guan 已提交
338
  SSchema* pTags;
S
sma  
Shengliang Guan 已提交
339
  char*    comment;
340 341
  char*    pAst1;
  char*    pAst2;
S
Shengliang Guan 已提交
342
  SRWLatch lock;
S
Shengliang Guan 已提交
343
} SStbObj;
S
Shengliang Guan 已提交
344

S
Shengliang Guan 已提交
345
typedef struct {
S
Shengliang Guan 已提交
346 347
  char    name[TSDB_FUNC_NAME_LEN];
  int64_t createdTime;
S
Shengliang Guan 已提交
348 349 350 351 352 353
  int8_t  funcType;
  int8_t  scriptType;
  int8_t  align;
  int8_t  outputType;
  int32_t outputLen;
  int32_t bufSize;
S
Shengliang 已提交
354
  int64_t signature;
S
Shengliang Guan 已提交
355 356
  int32_t commentSize;
  int32_t codeSize;
L
Liu Jicong 已提交
357 358
  char*   pComment;
  char*   pCode;
S
Shengliang Guan 已提交
359 360
} SFuncObj;

S
Shengliang Guan 已提交
361
typedef struct {
L
Liu Jicong 已提交
362 363 364 365 366 367 368
  int64_t        id;
  int8_t         type;
  int8_t         replica;
  int16_t        numOfColumns;
  int32_t        numOfRows;
  void*          pIter;
  SMnode*        pMnode;
369
  STableMetaRsp* pMeta;
L
Liu Jicong 已提交
370 371
  bool           sysDbRsp;
  char           db[TSDB_DB_FNAME_LEN];
S
Shengliang Guan 已提交
372 373
} SShowObj;

374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390
typedef struct {
  int64_t id;
  int8_t  type;
  int8_t  replica;
  int16_t numOfColumns;
  int32_t rowSize;
  int32_t numOfRows;
  int32_t numOfReads;
  int32_t payloadLen;
  void*   pIter;
  SMnode* pMnode;
  char    db[TSDB_DB_FNAME_LEN];
  int16_t offset[TSDB_MAX_COLUMNS];
  int32_t bytes[TSDB_MAX_COLUMNS];
  char    payload[];
} SSysTableRetrieveObj;

L
Liu Jicong 已提交
391 392
typedef struct {
  char    key[TSDB_PARTITION_KEY_LEN];
L
Liu Jicong 已提交
393
  int64_t dbUid;
L
Liu Jicong 已提交
394 395 396
  int64_t offset;
} SMqOffsetObj;

S
Shengliang Guan 已提交
397 398
int32_t tEncodeSMqOffsetObj(void** buf, const SMqOffsetObj* pOffset);
void*   tDecodeSMqOffsetObj(void* buf, SMqOffsetObj* pOffset);
L
Liu Jicong 已提交
399

L
Liu Jicong 已提交
400
typedef struct {
L
Liu Jicong 已提交
401 402 403 404 405
  char           name[TSDB_TOPIC_FNAME_LEN];
  char           db[TSDB_DB_FNAME_LEN];
  int64_t        createTime;
  int64_t        updateTime;
  int64_t        uid;
L
Liu Jicong 已提交
406 407
  int64_t        dbUid;
  int32_t        version;
L
Liu Jicong 已提交
408 409 410 411
  int8_t         subType;  // db or table
  int8_t         withTbName;
  int8_t         withSchema;
  int8_t         withTag;
L
Liu Jicong 已提交
412
  SRWLatch       lock;
L
Liu Jicong 已提交
413
  int32_t        consumerCnt;
L
Liu Jicong 已提交
414
  int32_t        sqlLen;
L
Liu Jicong 已提交
415
  int32_t        astLen;
L
Liu Jicong 已提交
416
  char*          sql;
L
Liu Jicong 已提交
417
  char*          ast;
L
Liu Jicong 已提交
418 419
  char*          physicalPlan;
  SSchemaWrapper schema;
L
Liu Jicong 已提交
420
  // int32_t        refConsumerCnt;
L
Liu Jicong 已提交
421 422
} SMqTopicObj;

L
Liu Jicong 已提交
423
typedef struct {
S
Shengliang Guan 已提交
424 425
  int64_t  consumerId;
  char     cgroup[TSDB_CGROUP_LEN];
L
Liu Jicong 已提交
426
  char     clientId[256];
S
Shengliang Guan 已提交
427 428 429 430 431
  int8_t   updateType;  // used only for update
  int32_t  epoch;
  int32_t  status;
  int32_t  hbStatus;          // hbStatus is not applicable to serialization
  SRWLatch lock;              // lock is used for topics update
L
Liu Jicong 已提交
432 433 434
  SArray*  currentTopics;     // SArray<char*>
  SArray*  rebNewTopics;      // SArray<char*>
  SArray*  rebRemovedTopics;  // SArray<char*>
L
Liu Jicong 已提交
435

L
Liu Jicong 已提交
436 437 438
  // subscribed by user
  SArray* assignedTopics;  // SArray<char*>

L
Liu Jicong 已提交
439 440 441 442 443 444
  // data for display
  int32_t pid;
  SEpSet  ep;
  int64_t upTime;
  int64_t subscribeTime;
  int64_t rebalanceTime;
L
Liu Jicong 已提交
445 446
} SMqConsumerObj;

447 448 449 450
SMqConsumerObj* tNewSMqConsumerObj(int64_t consumerId, char cgroup[TSDB_CGROUP_LEN]);
void            tDeleteSMqConsumerObj(SMqConsumerObj* pConsumer);
int32_t         tEncodeSMqConsumerObj(void** buf, const SMqConsumerObj* pConsumer);
void*           tDecodeSMqConsumerObj(const void* buf, SMqConsumerObj* pConsumer);
L
Liu Jicong 已提交
451

452 453 454
typedef struct {
  int32_t vgId;
  char*   qmsg;
L
Liu Jicong 已提交
455
  SEpSet  epSet;
456 457 458 459 460 461 462 463 464 465
} SMqVgEp;

SMqVgEp* tCloneSMqVgEp(const SMqVgEp* pVgEp);
void     tDeleteSMqVgEp(SMqVgEp* pVgEp);
int32_t  tEncodeSMqVgEp(void** buf, const SMqVgEp* pVgEp);
void*    tDecodeSMqVgEp(const void* buf, SMqVgEp* pVgEp);

typedef struct {
  int64_t consumerId;  // -1 for unassigned
  SArray* vgs;         // SArray<SMqVgEp*>
466
} SMqConsumerEp;
467

468 469 470 471
SMqConsumerEp* tCloneSMqConsumerEp(const SMqConsumerEp* pEp);
void           tDeleteSMqConsumerEp(SMqConsumerEp* pEp);
int32_t        tEncodeSMqConsumerEp(void** buf, const SMqConsumerEp* pEp);
void*          tDecodeSMqConsumerEp(const void* buf, SMqConsumerEp* pEp);
472 473 474 475

typedef struct {
  char      key[TSDB_SUBSCRIBE_KEY_LEN];
  SRWLatch  lock;
L
Liu Jicong 已提交
476
  int64_t   dbUid;
477
  int32_t   vgNum;
L
Liu Jicong 已提交
478 479 480 481
  int8_t    subType;
  int8_t    withTbName;
  int8_t    withSchema;
  int8_t    withTag;
482 483
  SHashObj* consumerHash;   // consumerId -> SMqConsumerEp
  SArray*   unassignedVgs;  // SArray<SMqVgEp*>
484 485 486 487 488 489 490 491 492 493
} SMqSubscribeObj;

SMqSubscribeObj* tNewSubscribeObj(const char key[TSDB_SUBSCRIBE_KEY_LEN]);
SMqSubscribeObj* tCloneSubscribeObj(const SMqSubscribeObj* pSub);
void             tDeleteSubscribeObj(SMqSubscribeObj* pSub);
int32_t          tEncodeSubscribeObj(void** buf, const SMqSubscribeObj* pSub);
void*            tDecodeSubscribeObj(const void* buf, SMqSubscribeObj* pSub);

typedef struct {
  int32_t epoch;
494
  SArray* consumers;  // SArray<SMqConsumerEp*>
495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512
} SMqSubActionLogEntry;

SMqSubActionLogEntry* tCloneSMqSubActionLogEntry(SMqSubActionLogEntry* pEntry);
void                  tDeleteSMqSubActionLogEntry(SMqSubActionLogEntry* pEntry);
int32_t               tEncodeSMqSubActionLogEntry(void** buf, const SMqSubActionLogEntry* pEntry);
void*                 tDecodeSMqSubActionLogEntry(const void* buf, SMqSubActionLogEntry* pEntry);

typedef struct {
  char    key[TSDB_SUBSCRIBE_KEY_LEN];
  SArray* logs;  // SArray<SMqSubActionLogEntry*>
} SMqSubActionLogObj;

SMqSubActionLogObj* tCloneSMqSubActionLogObj(SMqSubActionLogObj* pLog);
void                tDeleteSMqSubActionLogObj(SMqSubActionLogObj* pLog);
int32_t             tEncodeSMqSubActionLogObj(void** buf, const SMqSubActionLogObj* pLog);
void*               tDecodeSMqSubActionLogObj(const void* buf, SMqSubActionLogObj* pLog);

typedef struct {
L
Liu Jicong 已提交
513 514
  int32_t           oldConsumerNum;
  const SMqRebInfo* pRebInfo;
515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530
} SMqRebInputObj;

typedef struct {
  int64_t  oldConsumerId;
  int64_t  newConsumerId;
  SMqVgEp* pVgEp;
} SMqRebOutputVg;

typedef struct {
  SArray*               rebVgs;            // SArray<SMqRebOutputVg>
  SArray*               newConsumers;      // SArray<int64_t>
  SArray*               removedConsumers;  // SArray<int64_t>
  SArray*               touchedConsumers;  // SArray<int64_t>
  SMqSubscribeObj*      pSub;
  SMqSubActionLogEntry* pLogEntry;
} SMqRebOutputObj;
L
Liu Jicong 已提交
531

L
Liu Jicong 已提交
532
typedef struct {
S
Shengliang Guan 已提交
533 534 535 536
  char           name[TSDB_TOPIC_FNAME_LEN];
  char           sourceDb[TSDB_DB_FNAME_LEN];
  char           targetDb[TSDB_DB_FNAME_LEN];
  char           targetSTbName[TSDB_TABLE_FNAME_LEN];
L
Liu Jicong 已提交
537
  int64_t        targetStbUid;
S
Shengliang Guan 已提交
538 539 540 541 542 543 544 545
  int64_t        createTime;
  int64_t        updateTime;
  int64_t        uid;
  int64_t        dbUid;
  int32_t        version;
  int32_t        vgNum;
  SRWLatch       lock;
  int8_t         status;
L
Liu Jicong 已提交
546 547
  int8_t         createdBy;      // STREAM_CREATED_BY__USER or SMA
  int32_t        fixedSinkVgId;  // 0 for shuffle
L
Liu Jicong 已提交
548 549
  SVgObj         fixedSinkVg;
  int64_t        smaId;  // 0 for unused
L
fix  
Liu Jicong 已提交
550 551 552
  int8_t         trigger;
  int32_t        triggerParam;
  int64_t        waterMark;
L
Liu Jicong 已提交
553 554 555 556
  char*          sql;
  char*          physicalPlan;
  SArray*        tasks;  // SArray<SArray<SStreamTask>>
  SSchemaWrapper outputSchema;
L
Liu Jicong 已提交
557 558
} SStreamObj;

H
Hongze Cheng 已提交
559 560
int32_t tEncodeSStreamObj(SEncoder* pEncoder, const SStreamObj* pObj);
int32_t tDecodeSStreamObj(SDecoder* pDecoder, SStreamObj* pObj);
L
Liu Jicong 已提交
561

S
Shengliang Guan 已提交
562 563 564
#ifdef __cplusplus
}
#endif
S
Shengliang Guan 已提交
565

S
Shengliang Guan 已提交
566
#endif /*_TD_MND_DEF_H_*/