TDengine/include/dnode/mgmt/dnode.h

90 lines
2.2 KiB
C
Raw Normal View History

/*
* 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/>.
*/
2021-11-20 16:13:35 +00:00
#ifndef _TD_DNODE_H_
#define _TD_DNODE_H_
2021-11-22 02:03:41 +00:00
#include "tdef.h"
#ifdef __cplusplus
extern "C" {
#endif
2022-01-12 02:46:52 +00:00
/* ------------------------ TYPES EXPOSED ---------------- */
2021-11-20 16:13:35 +00:00
typedef struct SDnode SDnode;
2022-01-12 02:46:52 +00:00
/* ------------------------ Environment ------------------ */
typedef struct {
int32_t sver;
int32_t numOfCores;
2022-01-12 03:44:42 +00:00
int16_t numOfCommitThreads;
2022-01-12 02:46:52 +00:00
int8_t enableTelem;
char timezone[TSDB_TIMEZONE_LEN];
char locale[TSDB_LOCALE_LEN];
char charset[TSDB_LOCALE_LEN];
char buildinfo[64];
char gitinfo[48];
} SDnodeEnvCfg;
/**
* @brief Initialize the environment
*
* @param pOption Option of the environment
* @return int32_t 0 for success and -1 for failure
*/
int32_t dndInit(const SDnodeEnvCfg *pCfg);
/**
* @brief clear the environment
*
*/
void dndCleanup();
/* ------------------------ SDnode ----------------------- */
2021-11-22 02:03:41 +00:00
typedef struct {
2022-01-12 02:46:52 +00:00
int32_t numOfSupportVnodes;
2021-11-30 11:42:51 +00:00
int32_t statusInterval;
float numOfThreadsPerCore;
float ratioOfQueryCores;
int32_t maxShellConns;
int32_t shellActivityTimer;
2021-11-22 02:03:41 +00:00
uint16_t serverPort;
2021-11-30 11:42:51 +00:00
char dataDir[TSDB_FILENAME_LEN];
char localEp[TSDB_EP_LEN];
char localFqdn[TSDB_FQDN_LEN];
char firstEp[TSDB_EP_LEN];
2022-01-12 02:46:52 +00:00
} SDnodeObjCfg;
2021-11-22 02:03:41 +00:00
2021-11-20 16:13:35 +00:00
/**
* @brief Initialize and start the dnode.
*
2022-01-12 02:46:52 +00:00
* @param pCfg Config of the dnode.
2021-11-20 16:13:35 +00:00
* @return SDnode* The dnode object.
*/
2022-01-12 02:46:52 +00:00
SDnode *dndCreate(SDnodeObjCfg *pCfg);
2021-11-20 16:13:35 +00:00
/**
* @brief Stop and cleanup the dnode.
2021-11-20 16:13:35 +00:00
*
* @param pDnode The dnode object to close.
2021-11-20 16:13:35 +00:00
*/
2022-01-12 02:46:52 +00:00
void dndClose(SDnode *pDnode);
2021-11-05 07:42:19 +00:00
#ifdef __cplusplus
}
#endif
2021-11-20 16:13:35 +00:00
#endif /*_TD_DNODE_H_*/