mnodeDnode.h 2.6 KB
Newer Older
S
slguan 已提交
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/>.
 */

16 17
#ifndef TDENGINE_MNODE_DNODE_H
#define TDENGINE_MNODE_DNODE_H
S
slguan 已提交
18 19 20 21

#ifdef __cplusplus
extern "C" {
#endif
S
slguan 已提交
22

S
slguan 已提交
23
typedef enum {
S
slguan 已提交
24 25 26 27
  TAOS_DN_STATUS_OFFLINE,
  TAOS_DN_STATUS_DROPPING,
  TAOS_DN_STATUS_BALANCING,
  TAOS_DN_STATUS_READY
S
slguan 已提交
28
} EDnodeStatus;
S
slguan 已提交
29

30 31 32 33 34 35
typedef enum {
  TAOS_DN_ALTERNATIVE_ROLE_ANY,
  TAOS_DN_ALTERNATIVE_ROLE_MNODE,
  TAOS_DN_ALTERNATIVE_ROLE_VNODE
} EDnodeAlternativeRole;

S
TD-1473  
Shengliang Guan 已提交
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
typedef enum EDnodeOfflineReason {
  TAOS_DN_OFF_ONLINE = 0,
  TAOS_DN_OFF_STATUS_MSG_TIMEOUT,
  TAOS_DN_OFF_STATUS_NOT_RECEIVED,
  TAOS_DN_OFF_RESET_BY_MNODE,
  TAOS_DN_OFF_VERSION_NOT_MATCH,
  TAOS_DN_OFF_DNODE_ID_NOT_MATCH,
  TAOS_DN_OFF_CLUSTER_ID_NOT_MATCH,
  TAOS_DN_OFF_NUM_OF_MNODES_NOT_MATCH,
  TAOS_DN_OFF_ENABLE_BALANCE_NOT_MATCH,
  TAOS_DN_OFF_MN_EQUAL_VN_NOT_MATCH,
  TAOS_DN_OFF_OFFLINE_THRESHOLD_NOT_MATCH,
  TAOS_DN_OFF_STATUS_INTERVAL_NOT_MATCH,
  TAOS_DN_OFF_MAX_TAB_PER_VN_NOT_MATCH,
  TAOS_DN_OFF_MAX_VG_PER_DB_NOT_MATCH,
  TAOS_DN_OFF_ARBITRATOR_NOT_MATCH,
  TAOS_DN_OFF_TIME_ZONE_NOT_MATCH,
  TAOS_DN_OFF_LOCALE_NOT_MATCH,
  TAOS_DN_OFF_CHARSET_NOT_MATCH,
S
Shengliang Guan 已提交
55 56 57
  TAOS_DN_OFF_FLOW_CTRL_NOT_MATCH,
  TAOS_DN_OFF_SLAVE_QUERY_NOT_MATCH,
  TAOS_DN_OFF_ADJUST_MASTER_NOT_MATCH,
S
TD-1473  
Shengliang Guan 已提交
58 59 60
  TAOS_DN_OFF_OTHERS
} EDnodeOfflineReason;

S
TD-2270  
Shengliang Guan 已提交
61 62 63
extern char* dnodeStatus[];
extern char* dnodeRoles[];

64
int32_t mnodeInitDnodes();
S
Shengliang Guan 已提交
65
void    mnodeCleanupDnodes();
S
slguan 已提交
66

67
int32_t mnodeGetDnodesNum();
68
int32_t mnodeGetOnlinDnodesCpuCoreNum();
69
int32_t mnodeGetOnlineDnodesNum();
70
void    mnodeGetOnlineAndTotalDnodesNum(int32_t *onlineNum, int32_t *totalNum);
71
void *  mnodeGetNextDnode(void *pIter, SDnodeObj **pDnode);
S
Shengliang Guan 已提交
72
void    mnodeCancelGetNextDnode(void *pIter);
73 74 75 76 77
void    mnodeIncDnodeRef(SDnodeObj *pDnode);
void    mnodeDecDnodeRef(SDnodeObj *pDnode);
void *  mnodeGetDnode(int32_t dnodeId);
void *  mnodeGetDnodeByEp(char *ep);
void    mnodeUpdateDnode(SDnodeObj *pDnode);
78
int32_t mnodeDropDnode(SDnodeObj *pDnode, void *pMsg);
S
slguan 已提交
79

80
int32_t mnodeCompactDnodes();
81
extern int64_t tsAccessSquence;
S
slguan 已提交
82

S
slguan 已提交
83 84 85 86 87
#ifdef __cplusplus
}
#endif

#endif