tglobal.h 6.0 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 19 20 21 22

#ifdef __cplusplus
extern "C" {
#endif

S
Shengliang Guan 已提交
23 24 25 26 27
// cluster
extern char     tsFirst[];
extern char     tsSecond[];
extern char     tsLocalFqdn[];
extern char     tsLocalEp[];
J
jtao1735 已提交
28
extern uint16_t tsServerPort;
S
slguan 已提交
29
extern uint16_t tsDnodeShellPort;
J
jtao1735 已提交
30
extern uint16_t tsDnodeDnodePort;
S
slguan 已提交
31
extern uint16_t tsSyncPort;
H
Hui Li 已提交
32
extern uint16_t tsArbitratorPort;
S
Shengliang Guan 已提交
33 34
extern int32_t  tsStatusInterval;
extern int32_t  tsNumOfMnodes;
H
Hui Li 已提交
35
extern int32_t  tsEnableVnodeBak;
B
Bomin Zhang 已提交
36
extern int32_t  tsEnableTelemetryReporting;
H
Hui Li 已提交
37
extern char     tsEmail[];
S
Shengliang Guan 已提交
38 39 40 41 42 43 44 45 46

// common
extern int      tsRpcTimer;
extern int      tsRpcMaxTime;
extern int32_t  tsMaxConnections;
extern int32_t  tsMaxShellConns;
extern int32_t  tsShellActivityTimer;
extern uint32_t tsMaxTmrCtrl;
extern float    tsNumOfThreadsPerCore;
S
TD-2067  
Shengliang Guan 已提交
47
extern int32_t  tsNumOfCommitThreads;
H
Haojun Liao 已提交
48
extern float    tsRatioOfQueryThreads;  // todo remove it
S
Shengliang Guan 已提交
49
extern int8_t   tsDaylight;
S
Shengliang Guan 已提交
50 51
extern char     tsTimezone[];
extern char     tsLocale[];
H
Haojun Liao 已提交
52
extern char     tsCharset[];            // default encode string
S
Shengliang Guan 已提交
53 54
extern int32_t  tsEnableCoreFile;
extern int32_t  tsCompressMsgSize;
55
extern char     tsTempDir[];
S
Shengliang Guan 已提交
56

H
Haojun Liao 已提交
57 58
//query buffer management
extern int32_t  tsQueryBufferSize;      // maximum allowed usage buffer for each data node during query processing
59
extern int32_t  tsHalfCoresForQuery;         // only 50% will be used in query processing
H
Haojun Liao 已提交
60

S
Shengliang Guan 已提交
61 62 63 64 65 66 67 68 69 70 71 72 73
// client
extern int32_t tsTableMetaKeepTimer;
extern int32_t tsMaxSQLStringLen;
extern int32_t tsTscEnableRecordSql;
extern int32_t tsMaxNumOfOrderedResults;
extern int32_t tsMinSlidingTime;
extern int32_t tsMinIntervalTime;
extern int32_t tsMaxStreamComputDelay;
extern int32_t tsStreamCompStartDelay;
extern int32_t tsStreamCompRetryDelay;
extern float   tsStreamComputDelayRatio;  // the delayed computing ration of the whole time window
extern int32_t tsProjectExecInterval;
extern int64_t tsMaxRetentWindow;
H
hzcheng 已提交
74

S
Shengliang Guan 已提交
75
// db parameters in client
S
slguan 已提交
76
extern int32_t tsCacheBlockSize;
H
hjxilinx 已提交
77
extern int32_t tsBlocksPerVnode;
78
extern int32_t tsMinTablePerVnode;
H
hjxilinx 已提交
79
extern int32_t tsMaxTablePerVnode;
80
extern int32_t tsTableIncStepPerVnode;
81
extern int32_t tsMaxVgroupsPerDb;
S
slguan 已提交
82 83
extern int16_t tsDaysPerFile;
extern int32_t tsDaysToKeep;
S
slguan 已提交
84 85
extern int32_t tsMinRowsInFileBlock;
extern int32_t tsMaxRowsInFileBlock;
S
slguan 已提交
86 87 88
extern int16_t tsCommitTime;  // seconds
extern int32_t tsTimePrecision;
extern int16_t tsCompression;
H
hjxilinx 已提交
89
extern int16_t tsWAL;
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
90
extern int32_t tsFsyncPeriod;
S
slguan 已提交
91
extern int32_t tsReplications;
92
extern int32_t tsQuorum;
S
Shengliang Guan 已提交
93
extern int32_t tsUpdate;
S
slguan 已提交
94

S
Shengliang Guan 已提交
95 96 97
// balance
extern int32_t tsEnableBalance;
extern int32_t tsAlternativeRole;
S
slguan 已提交
98
extern int32_t tsBalanceInterval;
S
slguan 已提交
99
extern int32_t tsOfflineThreshold;
100
extern int32_t tsMnodeEqualVnodeNum;
S
Shengliang Guan 已提交
101
extern int32_t tsFlowCtrl;
S
slguan 已提交
102

S
Shengliang Guan 已提交
103 104 105
// restful
extern int32_t  tsEnableHttpModule;
extern int32_t  tsRestRowLimit;
L
lihui 已提交
106
extern uint16_t tsHttpPort;
S
slguan 已提交
107 108 109 110 111 112 113
extern int32_t  tsHttpCacheSessions;
extern int32_t  tsHttpSessionExpire;
extern int32_t  tsHttpMaxThreads;
extern int32_t  tsHttpEnableCompress;
extern int32_t  tsHttpEnableRecordSql;
extern int32_t  tsTelegrafUseFieldNum;

S
Shengliang Guan 已提交
114 115
// mqtt
extern int32_t tsEnableMqttModule;
S
TD-1310  
Shengliang Guan 已提交
116 117 118 119 120 121
extern char tsMqttHostName[];
extern char tsMqttPort[];
extern char tsMqttUser[];
extern char tsMqttPass[];
extern char tsMqttClientId[];
extern char tsMqttTopic[];
S
Shengliang Guan 已提交
122 123 124 125 126 127 128

// monitor
extern int32_t tsEnableMonitorModule;
extern char    tsMonitorDbName[];
extern char    tsInternalPass[];
extern int32_t tsMonitorInterval;

129 130 131
// stream
extern int32_t tsEnableStream;

S
Shengliang Guan 已提交
132
// internal
133
extern int32_t tsPrintAuth;
S
Shengliang Guan 已提交
134 135 136 137 138 139 140 141 142
extern int32_t tscEmbedded;
extern char    configDir[];
extern char    tsVnodeDir[];
extern char    tsDnodeDir[];
extern char    tsMnodeDir[];
extern char    tsDataDir[];
extern char    tsLogDir[];
extern char    tsScriptDir[];
extern int64_t tsMsPerDay[3];
H
Hui Li 已提交
143
extern char    tsVnodeBakDir[];
S
Shengliang Guan 已提交
144 145 146 147 148 149 150 151 152 153 154

// 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 已提交
155
extern float   tsAvailTmpDirectorySpace;
S
Shengliang Guan 已提交
156 157
extern float   tsAvailDataDirGB;
extern float   tsMinimalLogDirGB;
H
Haojun Liao 已提交
158
extern float   tsReservedTmpDirectorySpace;
S
Shengliang Guan 已提交
159 160 161
extern float   tsMinimalDataDirGB;
extern int32_t tsTotalMemoryMB;
extern int32_t tsVersion;
S
slguan 已提交
162

S
Shengliang Guan 已提交
163 164 165 166 167 168
// build info
extern char version[];
extern char compatible_version[];
extern char gitinfo[];
extern char gitinfoOfInternal[];
extern char buildinfo[];
S
slguan 已提交
169

S
Shengliang Guan 已提交
170
// log
S
slguan 已提交
171 172
extern int32_t tsAsyncLog;
extern int32_t tsNumOfLogLines;
173
extern int32_t tsLogKeepDays;
174 175
extern int32_t dDebugFlag;
extern int32_t vDebugFlag;
guanshengliang's avatar
guanshengliang 已提交
176 177 178
extern int32_t mDebugFlag;
extern int32_t cDebugFlag;
extern int32_t jniDebugFlag;
S
slguan 已提交
179 180 181
extern int32_t tmrDebugFlag;
extern int32_t sdbDebugFlag;
extern int32_t httpDebugFlag;
182
extern int32_t mqttDebugFlag;
S
Shengliang Guan 已提交
183
extern int32_t monDebugFlag;
S
slguan 已提交
184 185
extern int32_t uDebugFlag;
extern int32_t rpcDebugFlag;
guanshengliang's avatar
guanshengliang 已提交
186 187
extern int32_t odbcDebugFlag;
extern int32_t qDebugFlag;
S
Shengliang Guan 已提交
188
extern int32_t wDebugFlag;
S
TD-1520  
Shengliang Guan 已提交
189
extern int32_t cqDebugFlag;
190
extern int32_t debugFlag;
H
hzcheng 已提交
191

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

S
TD-1663  
Shengliang Guan 已提交
194 195 196 197 198 199 200
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);

H
hzcheng 已提交
201 202 203 204
#ifdef __cplusplus
}
#endif

S
slguan 已提交
205
#endif