2021-09-29 11:38:37 +00:00
|
|
|
/*
|
|
|
|
|
* 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-09-29 11:38:37 +00:00
|
|
|
|
2021-11-22 02:03:41 +00:00
|
|
|
#include "tdef.h"
|
|
|
|
|
|
2021-09-29 11:38:37 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2021-11-20 16:13:35 +00:00
|
|
|
/* ------------------------ TYPES EXPOSED ------------------------ */
|
|
|
|
|
typedef struct SDnode SDnode;
|
2021-09-29 11:38:37 +00:00
|
|
|
|
2021-11-22 02:03:41 +00:00
|
|
|
typedef struct {
|
2021-11-30 11:42:51 +00:00
|
|
|
int32_t sver;
|
|
|
|
|
int16_t numOfCores;
|
|
|
|
|
int16_t numOfSupportVnodes;
|
2021-12-27 10:43:27 +00:00
|
|
|
int16_t numOfCommitThreads;
|
2021-12-06 11:57:13 +00:00
|
|
|
int8_t enableTelem;
|
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];
|
|
|
|
|
char timezone[TSDB_TIMEZONE_LEN];
|
|
|
|
|
char locale[TSDB_LOCALE_LEN];
|
|
|
|
|
char charset[TSDB_LOCALE_LEN];
|
2021-12-06 11:57:13 +00:00
|
|
|
char buildinfo[64];
|
|
|
|
|
char gitinfo[48];
|
2021-11-22 02:03:41 +00:00
|
|
|
} SDnodeOpt;
|
|
|
|
|
|
2021-11-20 16:13:35 +00:00
|
|
|
/* ------------------------ SDnode ------------------------ */
|
|
|
|
|
/**
|
|
|
|
|
* @brief Initialize and start the dnode.
|
|
|
|
|
*
|
2021-11-26 08:28:38 +00:00
|
|
|
* @param pOption Option of the dnode.
|
2021-11-20 16:13:35 +00:00
|
|
|
* @return SDnode* The dnode object.
|
|
|
|
|
*/
|
2021-11-26 08:28:38 +00:00
|
|
|
SDnode *dndInit(SDnodeOpt *pOption);
|
2021-11-20 16:13:35 +00:00
|
|
|
|
|
|
|
|
/**
|
2021-11-23 11:54:17 +00:00
|
|
|
* @brief Stop and cleanup the dnode.
|
2021-11-20 16:13:35 +00:00
|
|
|
*
|
2021-11-23 11:54:17 +00:00
|
|
|
* @param pDnode The dnode object to close.
|
2021-11-20 16:13:35 +00:00
|
|
|
*/
|
2021-11-23 11:54:17 +00:00
|
|
|
void dndCleanup(SDnode *pDnode);
|
2021-11-05 07:42:19 +00:00
|
|
|
|
2021-09-29 11:38:37 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2021-11-20 16:13:35 +00:00
|
|
|
#endif /*_TD_DNODE_H_*/
|