tglobal.h 6.8 KB
Newer Older
H
hzcheng 已提交
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
slguan 已提交
16 17
#ifndef TDENGINE_COMMON_GLOBAL_H
#define TDENGINE_COMMON_GLOBAL_H
H
hzcheng 已提交
18

H
Hongze Cheng 已提交
19 20
#include "taosdef.h"

H
hzcheng 已提交
21 22 23 24
#ifdef __cplusplus
extern "C" {
#endif

S
Shengliang Guan 已提交
25 26 27 28 29
// cluster
extern char     tsFirst[];
extern char     tsSecond[];
extern char     tsLocalFqdn[];
extern char     tsLocalEp[];
J
jtao1735 已提交
30
extern uint16_t tsServerPort;
S
slguan 已提交
31
extern uint16_t tsDnodeShellPort;
J
jtao1735 已提交
32
extern uint16_t tsDnodeDnodePort;
S
slguan 已提交
33
extern uint16_t tsSyncPort;
H
Hui Li 已提交
34
extern uint16_t tsArbitratorPort;
S
Shengliang Guan 已提交
35 36
extern int32_t  tsStatusInterval;
extern int32_t  tsNumOfMnodes;
S
Shengliang Guan 已提交
37 38
extern int8_t   tsEnableVnodeBak;
extern int8_t   tsEnableTelemetryReporting;
H
Hui Li 已提交
39
extern char     tsEmail[];
S
TD-2324  
Shengliang Guan 已提交
40
extern char     tsArbitrator[];
S
TD-2680  
Shengliang Guan 已提交
41
extern int8_t   tsArbOnline;
42
extern int64_t  tsArbOnlineTimestamp;
D
dapan1121 已提交
43
extern int32_t  tsDnodeId;
S
Shengliang Guan 已提交
44 45 46 47

// common
extern int      tsRpcTimer;
extern int      tsRpcMaxTime;
张宏权 已提交
48
extern int      tsRpcForceTcp; // all commands go to tcp protocol if this is enabled
S
Shengliang Guan 已提交
49 50 51 52 53
extern int32_t  tsMaxConnections;
extern int32_t  tsMaxShellConns;
extern int32_t  tsShellActivityTimer;
extern uint32_t tsMaxTmrCtrl;
extern float    tsNumOfThreadsPerCore;
S
TD-2067  
Shengliang Guan 已提交
54
extern int32_t  tsNumOfCommitThreads;
55
extern float    tsRatioOfQueryCores;
S
Shengliang Guan 已提交
56
extern int8_t   tsDaylight;
S
Shengliang Guan 已提交
57 58
extern char     tsTimezone[];
extern char     tsLocale[];
H
Haojun Liao 已提交
59
extern char     tsCharset[];            // default encode string
S
Shengliang Guan 已提交
60
extern int8_t   tsEnableCoreFile;
S
Shengliang Guan 已提交
61
extern int32_t  tsCompressMsgSize;
62
extern char     tsTempDir[];
S
Shengliang Guan 已提交
63

H
Haojun Liao 已提交
64
//query buffer management
65 66
extern int32_t  tsQueryBufferSize;      // maximum allowed usage buffer size in MB for each data node during query processing
extern int64_t  tsQueryBufferSizeBytes; // maximum allowed usage buffer size in byte for each data node during query processing
67 68
extern int32_t  tsRetrieveBlockingModel;// retrieve threads will be blocked

S
Shengliang Guan 已提交
69
extern int8_t   tsKeepOriginalColumnName;
H
Haojun Liao 已提交
70

S
Shengliang Guan 已提交
71 72
// client
extern int32_t tsMaxSQLStringLen;
S
Shengliang Guan 已提交
73
extern int8_t  tsTscEnableRecordSql;
S
Shengliang Guan 已提交
74 75 76 77 78
extern int32_t tsMaxNumOfOrderedResults;
extern int32_t tsMinSlidingTime;
extern int32_t tsMinIntervalTime;
extern int32_t tsMaxStreamComputDelay;
extern int32_t tsStreamCompStartDelay;
79
extern int32_t tsRetryStreamCompDelay;
S
Shengliang Guan 已提交
80 81 82
extern float   tsStreamComputDelayRatio;  // the delayed computing ration of the whole time window
extern int32_t tsProjectExecInterval;
extern int64_t tsMaxRetentWindow;
H
hzcheng 已提交
83

S
Shengliang Guan 已提交
84
// db parameters in client
S
slguan 已提交
85
extern int32_t tsCacheBlockSize;
H
hjxilinx 已提交
86
extern int32_t tsBlocksPerVnode;
87
extern int32_t tsMinTablePerVnode;
H
hjxilinx 已提交
88
extern int32_t tsMaxTablePerVnode;
89
extern int32_t tsTableIncStepPerVnode;
90
extern int32_t tsMaxVgroupsPerDb;
S
slguan 已提交
91 92
extern int16_t tsDaysPerFile;
extern int32_t tsDaysToKeep;
S
slguan 已提交
93 94
extern int32_t tsMinRowsInFileBlock;
extern int32_t tsMaxRowsInFileBlock;
S
slguan 已提交
95 96
extern int16_t tsCommitTime;  // seconds
extern int32_t tsTimePrecision;
S
TD-1207  
Shengliang Guan 已提交
97 98
extern int8_t  tsCompression;
extern int8_t  tsWAL;
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
99
extern int32_t tsFsyncPeriod;
S
slguan 已提交
100
extern int32_t tsReplications;
S
Shengliang Guan 已提交
101
extern int16_t tsPartitons;
102
extern int32_t tsQuorum;
S
Shengliang Guan 已提交
103
extern int8_t  tsUpdate;
S
Shengliang Guan 已提交
104
extern int8_t  tsCacheLastRow;
S
slguan 已提交
105

S
Shengliang Guan 已提交
106
// balance
S
Shengliang Guan 已提交
107 108
extern int8_t  tsEnableBalance;
extern int8_t  tsAlternativeRole;
S
slguan 已提交
109
extern int32_t tsBalanceInterval;
S
slguan 已提交
110
extern int32_t tsOfflineThreshold;
111
extern int32_t tsMnodeEqualVnodeNum;
S
Shengliang Guan 已提交
112 113 114
extern int8_t  tsEnableFlowCtrl;
extern int8_t  tsEnableSlaveQuery;
extern int8_t  tsEnableAdjustMaster;
S
slguan 已提交
115

S
Shengliang Guan 已提交
116
// restful
S
Shengliang Guan 已提交
117
extern int8_t   tsEnableHttpModule;
S
Shengliang Guan 已提交
118
extern int32_t  tsRestRowLimit;
L
lihui 已提交
119
extern uint16_t tsHttpPort;
S
slguan 已提交
120 121 122
extern int32_t  tsHttpCacheSessions;
extern int32_t  tsHttpSessionExpire;
extern int32_t  tsHttpMaxThreads;
S
Shengliang Guan 已提交
123 124 125
extern int8_t   tsHttpEnableCompress;
extern int8_t   tsHttpEnableRecordSql;
extern int8_t   tsTelegrafUseFieldNum;
S
slguan 已提交
126

S
Shengliang Guan 已提交
127
// mqtt
S
Shengliang Guan 已提交
128 129 130 131 132 133 134
extern int8_t tsEnableMqttModule;
extern char   tsMqttHostName[];
extern char   tsMqttPort[];
extern char   tsMqttUser[];
extern char   tsMqttPass[];
extern char   tsMqttClientId[];
extern char   tsMqttTopic[];
S
Shengliang Guan 已提交
135 136

// monitor
S
Shengliang Guan 已提交
137
extern int8_t  tsEnableMonitorModule;
S
Shengliang Guan 已提交
138 139 140 141
extern char    tsMonitorDbName[];
extern char    tsInternalPass[];
extern int32_t tsMonitorInterval;

142
// stream
S
Shengliang Guan 已提交
143
extern int8_t tsEnableStream;
144

S
Shengliang Guan 已提交
145
// internal
146
extern int8_t  tsCompactMnodeWal;
S
Shengliang Guan 已提交
147 148
extern int8_t  tsPrintAuth;
extern int8_t  tscEmbedded;
S
Shengliang Guan 已提交
149 150 151 152
extern char    configDir[];
extern char    tsVnodeDir[];
extern char    tsDnodeDir[];
extern char    tsMnodeDir[];
153 154
extern char    tsMnodeBakDir[];
extern char    tsMnodeTmpDir[];
S
Shengliang Guan 已提交
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
extern char    tsDataDir[];
extern char    tsLogDir[];
extern char    tsScriptDir[];
extern int64_t tsMsPerDay[3];

// system info
extern char    tsOsName[];
extern int64_t tsPageSize;
extern int64_t tsOpenMax;
extern int64_t tsStreamMax;
extern int32_t tsNumOfCores;
extern float   tsTotalLogDirGB;
extern float   tsTotalTmpDirGB;
extern float   tsTotalDataDirGB;
extern float   tsAvailLogDirGB;
H
Haojun Liao 已提交
170
extern float   tsAvailTmpDirectorySpace;
S
Shengliang Guan 已提交
171
extern float   tsAvailDataDirGB;
172
extern float   tsUsedDataDirGB;
S
Shengliang Guan 已提交
173
extern float   tsMinimalLogDirGB;
H
Haojun Liao 已提交
174
extern float   tsReservedTmpDirectorySpace;
S
Shengliang Guan 已提交
175 176
extern float   tsMinimalDataDirGB;
extern int32_t tsTotalMemoryMB;
177
extern uint32_t tsVersion;
S
slguan 已提交
178

S
Shengliang Guan 已提交
179 180 181 182 183 184
// build info
extern char version[];
extern char compatible_version[];
extern char gitinfo[];
extern char gitinfoOfInternal[];
extern char buildinfo[];
S
slguan 已提交
185

S
Shengliang Guan 已提交
186
// log
S
Shengliang Guan 已提交
187
extern int8_t  tsAsyncLog;
S
slguan 已提交
188
extern int32_t tsNumOfLogLines;
189
extern int32_t tsLogKeepDays;
190 191
extern int32_t dDebugFlag;
extern int32_t vDebugFlag;
guanshengliang's avatar
guanshengliang 已提交
192
extern int32_t mDebugFlag;
H
Haojun Liao 已提交
193
extern uint32_t cDebugFlag;
guanshengliang's avatar
guanshengliang 已提交
194
extern int32_t jniDebugFlag;
S
slguan 已提交
195 196 197
extern int32_t tmrDebugFlag;
extern int32_t sdbDebugFlag;
extern int32_t httpDebugFlag;
198
extern int32_t mqttDebugFlag;
S
Shengliang Guan 已提交
199
extern int32_t monDebugFlag;
S
slguan 已提交
200 201
extern int32_t uDebugFlag;
extern int32_t rpcDebugFlag;
guanshengliang's avatar
guanshengliang 已提交
202
extern int32_t odbcDebugFlag;
203
extern uint32_t qDebugFlag;
S
Shengliang Guan 已提交
204
extern int32_t wDebugFlag;
S
TD-1520  
Shengliang Guan 已提交
205
extern int32_t cqDebugFlag;
206
extern int32_t debugFlag;
H
hzcheng 已提交
207

S
TD-1767  
Shengliang Guan 已提交
208 209 210 211 212 213 214 215
typedef struct {
  char dir[TSDB_FILENAME_LEN];
  int  level;
  int  primary;
} SDiskCfg;
extern int32_t  tsDiskCfgNum;
extern SDiskCfg tsDiskCfg[];

H
hjxilinx 已提交
216 217
#define NEEDTO_COMPRESSS_MSG(size) (tsCompressMsgSize != -1 && (size) > tsCompressMsgSize)

H
Hongze Cheng 已提交
218 219 220 221 222 223 224 225 226
void    taosInitGlobalCfg();
int32_t taosCheckGlobalCfg();
void    taosSetAllDebugFlag();
bool    taosCfgDynamicOptions(char *msg);
int     taosGetFqdnPortFromEp(const char *ep, char *fqdn, uint16_t *port);
bool    taosCheckBalanceCfgOptions(const char *option, int32_t *vnodeId, int32_t *dnodeId);
void    taosAddDataDir(int index, char *v1, int level, int primary);
void    taosReadDataDirCfg(char *v1, char *v2, char *v3);
void    taosPrintDataDirCfg();
S
TD-1767  
Shengliang Guan 已提交
227

H
hzcheng 已提交
228 229 230 231
#ifdef __cplusplus
}
#endif

S
slguan 已提交
232
#endif