tglobal.h 7.9 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;
44
extern int64_t  tsDnodeStartTime;
45
extern int8_t   tsDnodeNopLoop;
46 47
extern int32_t  tsTcpConnTimeout;
extern int32_t  tsSyncCheckInterval;
S
Shengliang Guan 已提交
48 49 50 51

// common
extern int      tsRpcTimer;
extern int      tsRpcMaxTime;
52
extern int      tsRpcForceTcp;  // all commands go to tcp protocol if this is enabled
S
Shengliang Guan 已提交
53 54 55 56 57
extern int32_t  tsMaxConnections;
extern int32_t  tsMaxShellConns;
extern int32_t  tsShellActivityTimer;
extern uint32_t tsMaxTmrCtrl;
extern float    tsNumOfThreadsPerCore;
S
TD-2067  
Shengliang Guan 已提交
58
extern int32_t  tsNumOfCommitThreads;
59
extern float    tsRatioOfQueryCores;
S
Shengliang Guan 已提交
60
extern int8_t   tsDaylight;
S
Shengliang Guan 已提交
61 62
extern char     tsTimezone[];
extern char     tsLocale[];
63
extern char     tsCharset[];  // default encode string
S
Shengliang Guan 已提交
64
extern int8_t   tsEnableCoreFile;
S
Shengliang Guan 已提交
65
extern int32_t  tsCompressMsgSize;
66
extern int32_t  tsCompressColData;
67
extern int32_t  tsMaxNumOfDistinctResults;
68
extern char     tsTempDir[];
69
extern int32_t  tsShortcutFlag;
70 71
extern int32_t  tsMaxSqlGroups;
extern int8_t   tsSortWhenGroupBy;
S
Shengliang Guan 已提交
72

73 74 75 76 77
// query buffer management
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
extern int32_t tsRetrieveBlockingModel;  // retrieve threads will be blocked
78

79
extern int8_t tsKeepOriginalColumnName;
H
Haojun Liao 已提交
80

S
Shengliang Guan 已提交
81 82
// client
extern int32_t tsMaxSQLStringLen;
83
extern int32_t tsMaxWildCardsLen;
84
extern int32_t tsMaxRegexStringLen;
S
Shengliang Guan 已提交
85
extern int8_t  tsTscEnableRecordSql;
S
Shengliang Guan 已提交
86 87 88 89
extern int32_t tsMaxNumOfOrderedResults;
extern int32_t tsMinSlidingTime;
extern int32_t tsMinIntervalTime;
extern int32_t tsMaxStreamComputDelay;
90
extern int32_t tsFirstLaunchDelay;
91
extern int32_t tsRetryStreamCompDelay;
S
Shengliang Guan 已提交
92 93 94
extern float   tsStreamComputDelayRatio;  // the delayed computing ration of the whole time window
extern int32_t tsProjectExecInterval;
extern int64_t tsMaxRetentWindow;
95
extern bool    tsAsyncBatchEnable;
96
extern bool    tsAsyncBatchThreadLocal;
97
extern int32_t tsAsyncBatchSize;
98
extern int32_t tsAsyncBatchTimeout;
H
hzcheng 已提交
99

S
Shengliang Guan 已提交
100
// db parameters in client
S
slguan 已提交
101
extern int32_t tsCacheBlockSize;
H
hjxilinx 已提交
102
extern int32_t tsBlocksPerVnode;
103
extern int32_t tsMinTablePerVnode;
H
hjxilinx 已提交
104
extern int32_t tsMaxTablePerVnode;
105
extern int32_t tsTableIncStepPerVnode;
106
extern int32_t tsMaxVgroupsPerDb;
S
slguan 已提交
107 108
extern int16_t tsDaysPerFile;
extern int32_t tsDaysToKeep;
S
slguan 已提交
109 110
extern int32_t tsMinRowsInFileBlock;
extern int32_t tsMaxRowsInFileBlock;
S
slguan 已提交
111 112
extern int16_t tsCommitTime;  // seconds
extern int32_t tsTimePrecision;
S
TD-1207  
Shengliang Guan 已提交
113 114
extern int8_t  tsCompression;
extern int8_t  tsWAL;
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
115
extern int32_t tsFsyncPeriod;
S
slguan 已提交
116
extern int32_t tsReplications;
S
Shengliang Guan 已提交
117
extern int16_t tsPartitons;
118
extern int32_t tsQuorum;
S
Shengliang Guan 已提交
119
extern int8_t  tsUpdate;
S
Shengliang Guan 已提交
120
extern int8_t  tsCacheLastRow;
S
slguan 已提交
121

122
// tsdb
C
Cary Xu 已提交
123
extern bool    tsdbForceKeepFile;
124
extern bool    tsdbForceCompactFile;
C
Cary Xu 已提交
125
extern int32_t tsdbWalFlushSize;
Y
yihaoDeng 已提交
126

S
Shengliang Guan 已提交
127
// balance
S
Shengliang Guan 已提交
128 129
extern int8_t  tsEnableBalance;
extern int8_t  tsAlternativeRole;
S
slguan 已提交
130
extern int32_t tsBalanceInterval;
131
extern int32_t tsOfflineInterval;
S
slguan 已提交
132
extern int32_t tsOfflineThreshold;
133
extern int32_t tsMnodeEqualVnodeNum;
S
Shengliang Guan 已提交
134 135 136
extern int8_t  tsEnableFlowCtrl;
extern int8_t  tsEnableSlaveQuery;
extern int8_t  tsEnableAdjustMaster;
S
slguan 已提交
137

S
Shengliang Guan 已提交
138
// restful
S
Shengliang Guan 已提交
139
extern int8_t   tsEnableHttpModule;
S
Shengliang Guan 已提交
140
extern int32_t  tsRestRowLimit;
L
lihui 已提交
141
extern uint16_t tsHttpPort;
S
slguan 已提交
142 143 144
extern int32_t  tsHttpCacheSessions;
extern int32_t  tsHttpSessionExpire;
extern int32_t  tsHttpMaxThreads;
S
Shengliang Guan 已提交
145 146 147
extern int8_t   tsHttpEnableCompress;
extern int8_t   tsHttpEnableRecordSql;
extern int8_t   tsTelegrafUseFieldNum;
148
extern int8_t   tsHttpDbNameMandatory;
149
extern int32_t  tsHttpKeepAlive;
S
slguan 已提交
150

S
Shengliang Guan 已提交
151
// monitor
S
Shengliang Guan 已提交
152
extern int8_t  tsEnableMonitorModule;
G
Ganlin Zhao 已提交
153
extern int8_t  tsMonitorReplica;
S
Shengliang Guan 已提交
154 155 156 157
extern char    tsMonitorDbName[];
extern char    tsInternalPass[];
extern int32_t tsMonitorInterval;

158
// stream
S
Shengliang Guan 已提交
159
extern int8_t tsEnableStream;
160

S
Shengliang Guan 已提交
161
// internal
162
extern int8_t  tsCompactMnodeWal;
S
Shengliang Guan 已提交
163 164
extern int8_t  tsPrintAuth;
extern int8_t  tscEmbedded;
S
Shengliang Guan 已提交
165 166 167 168
extern char    configDir[];
extern char    tsVnodeDir[];
extern char    tsDnodeDir[];
extern char    tsMnodeDir[];
169 170
extern char    tsMnodeBakDir[];
extern char    tsMnodeTmpDir[];
S
Shengliang Guan 已提交
171 172 173
extern char    tsDataDir[];
extern char    tsLogDir[];
extern char    tsScriptDir[];
174
extern int64_t tsTickPerDay[3];
175
extern int32_t tsTopicBianryLen;
S
Shengliang Guan 已提交
176 177

// system info
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
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;
extern float    tsAvailTmpDirectorySpace;
extern float    tsAvailDataDirGB;
extern float    tsUsedDataDirGB;
extern float    tsMinimalLogDirGB;
extern float    tsReservedTmpDirectorySpace;
extern float    tsMinimalDataDirGB;
extern int32_t  tsTotalMemoryMB;
194
extern uint32_t tsVersion;
5
54liuyao 已提交
195
extern int32_t  tsKeepTimeOffset;
S
slguan 已提交
196

S
Shengliang Guan 已提交
197 198 199 200 201 202
// build info
extern char version[];
extern char compatible_version[];
extern char gitinfo[];
extern char gitinfoOfInternal[];
extern char buildinfo[];
S
slguan 已提交
203

S
Shengliang Guan 已提交
204
// log
205 206 207 208 209 210
extern int8_t   tsAsyncLog;
extern int32_t  tsNumOfLogLines;
extern int32_t  tsLogKeepDays;
extern int32_t  dDebugFlag;
extern int32_t  vDebugFlag;
extern int32_t  mDebugFlag;
H
Haojun Liao 已提交
211
extern uint32_t cDebugFlag;
212 213 214 215 216 217 218 219
extern int32_t  jniDebugFlag;
extern int32_t  tmrDebugFlag;
extern int32_t  sdbDebugFlag;
extern int32_t  httpDebugFlag;
extern int32_t  monDebugFlag;
extern int32_t  uDebugFlag;
extern int32_t  rpcDebugFlag;
extern int32_t  odbcDebugFlag;
220
extern uint32_t qDebugFlag;
221 222 223
extern int32_t  wDebugFlag;
extern int32_t  cqDebugFlag;
extern int32_t  debugFlag;
H
hzcheng 已提交
224

A
AlexDuan 已提交
225
extern int8_t tsClientMerge;
H
hzcheng 已提交
226

227 228 229
// probe alive connection
extern int32_t tsProbeSeconds;
extern int32_t tsProbeKillSeconds;
A
Alex Duan 已提交
230
extern int32_t tsProbeInterval;
231

T
tickduan 已提交
232
#ifdef TD_TSZ
233
// lossy
234 235 236
extern char     lossyColumns[];
extern double   fPrecision;
extern double   dPrecision;
T
tickduan 已提交
237
extern uint32_t maxRange;
T
tickduan 已提交
238
extern uint32_t curRange;
239
extern char     Compressor[];
240
#endif
241
// long query
242
extern int8_t tsDeadLockKillQuery;
T
tickduan 已提交
243

244
// schemaless
245
extern char tsDefaultJSONStrType[];
246
extern char tsSmlChildTableName[];
247
extern char tsSmlTagNullName[];
248

249

S
TD-1767  
Shengliang Guan 已提交
250 251 252 253 254 255 256 257
typedef struct {
  char dir[TSDB_FILENAME_LEN];
  int  level;
  int  primary;
} SDiskCfg;
extern int32_t  tsDiskCfgNum;
extern SDiskCfg tsDiskCfg[];

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

H
Hongze Cheng 已提交
260 261 262 263 264 265 266 267 268
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 已提交
269

H
hzcheng 已提交
270 271 272 273
#ifdef __cplusplus
}
#endif

S
slguan 已提交
274
#endif