tglobal.h 5.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/>.
 */

16 17
#ifndef _TD_COMMON_GLOBAL_H_
#define _TD_COMMON_GLOBAL_H_
H
Hongze Cheng 已提交
18

H
hzcheng 已提交
19 20 21 22
#ifdef __cplusplus
extern "C" {
#endif

23 24
#include "tdef.h"

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
Shengliang Guan 已提交
31 32
extern int32_t  tsStatusInterval;
extern int32_t  tsNumOfMnodes;
S
Shengliang Guan 已提交
33 34
extern int8_t   tsEnableVnodeBak;
extern int8_t   tsEnableTelemetryReporting;
S
TD-2324  
Shengliang Guan 已提交
35
extern char     tsArbitrator[];
S
TD-2680  
Shengliang Guan 已提交
36
extern int8_t   tsArbOnline;
37
extern int64_t  tsArbOnlineTimestamp;
S
Shengliang Guan 已提交
38 39 40 41

// common
extern int      tsRpcTimer;
extern int      tsRpcMaxTime;
张宏权 已提交
42
extern int      tsRpcForceTcp; // all commands go to tcp protocol if this is enabled
S
Shengliang Guan 已提交
43 44 45 46 47
extern int32_t  tsMaxConnections;
extern int32_t  tsMaxShellConns;
extern int32_t  tsShellActivityTimer;
extern uint32_t tsMaxTmrCtrl;
extern float    tsNumOfThreadsPerCore;
S
TD-2067  
Shengliang Guan 已提交
48
extern int32_t  tsNumOfCommitThreads;
49
extern float    tsRatioOfQueryCores;
S
Shengliang Guan 已提交
50
extern int8_t   tsDaylight;
S
Shengliang Guan 已提交
51
extern int8_t   tsEnableCoreFile;
S
Shengliang Guan 已提交
52
extern int32_t  tsCompressMsgSize;
53
extern int32_t  tsCompressColData;
54
extern int32_t  tsMaxNumOfDistinctResults;
55
extern char     tsTempDir[];
56
extern int64_t  tsMaxVnodeQueuedBytes;
57
extern int      tsCompatibleModel;     // 2.0 compatible model
S
Shengliang Guan 已提交
58

H
Haojun Liao 已提交
59
//query buffer management
60 61
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
62 63
extern int32_t  tsRetrieveBlockingModel;// retrieve threads will be blocked

S
Shengliang Guan 已提交
64
extern int8_t   tsKeepOriginalColumnName;
H
Haojun Liao 已提交
65

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

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

Y
yihaoDeng 已提交
103 104 105
//tsdb 
extern bool tsdbForceKeepFile;

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 117
// restful
extern int32_t  tsRestRowLimit;
S
Shengliang Guan 已提交
118
extern int8_t   tsTelegrafUseFieldNum;
S
slguan 已提交
119

S
Shengliang Guan 已提交
120
// mqtt
S
Shengliang Guan 已提交
121 122 123 124 125 126 127
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 已提交
128 129

// monitor
S
Shengliang Guan 已提交
130
extern int8_t  tsEnableMonitorModule;
S
Shengliang Guan 已提交
131 132 133 134
extern char    tsMonitorDbName[];
extern char    tsInternalPass[];
extern int32_t tsMonitorInterval;

135
// stream
S
Shengliang Guan 已提交
136
extern int8_t tsEnableStream;
137

S
Shengliang Guan 已提交
138
// internal
S
Shengliang Guan 已提交
139
extern int8_t  tsPrintAuth;
S
Shengliang Guan 已提交
140 141
extern char    tsVnodeDir[];
extern char    tsMnodeDir[];
142
extern int64_t tsTickPerDay[3];
143
extern int32_t tsTopicBianryLen;
S
Shengliang Guan 已提交
144 145 146 147 148 149

// system info
extern float   tsTotalLogDirGB;
extern float   tsTotalTmpDirGB;
extern float   tsTotalDataDirGB;
extern float   tsAvailLogDirGB;
H
Haojun Liao 已提交
150
extern float   tsAvailTmpDirectorySpace;
S
Shengliang Guan 已提交
151
extern float   tsAvailDataDirGB;
152
extern float   tsUsedDataDirGB;
S
Shengliang Guan 已提交
153
extern float   tsMinimalLogDirGB;
H
Haojun Liao 已提交
154
extern float   tsReservedTmpDirectorySpace;
S
Shengliang Guan 已提交
155
extern float   tsMinimalDataDirGB;
156
extern uint32_t tsVersion;
S
slguan 已提交
157

S
Shengliang Guan 已提交
158 159 160 161 162 163
// build info
extern char version[];
extern char compatible_version[];
extern char gitinfo[];
extern char gitinfoOfInternal[];
extern char buildinfo[];
S
slguan 已提交
164

T
tickduan 已提交
165
#ifdef TD_TSZ
T
tickduan 已提交
166 167 168 169
// lossy 
extern char lossyColumns[];
extern double fPrecision;
extern double dPrecision;
T
tickduan 已提交
170
extern uint32_t maxRange;
T
tickduan 已提交
171
extern uint32_t curRange;
T
tickduan 已提交
172
extern char Compressor[];
173
#endif
174
// long query 
175
extern int8_t tsDeadLockKillQuery;
T
tickduan 已提交
176

S
TD-1767  
Shengliang Guan 已提交
177
typedef struct {
178
  char dir[TSDB_FILENAME_LEN];
S
TD-1767  
Shengliang Guan 已提交
179 180 181 182 183 184
  int  level;
  int  primary;
} SDiskCfg;
extern int32_t  tsDiskCfgNum;
extern SDiskCfg tsDiskCfg[];

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

H
Hongze Cheng 已提交
187 188
void    taosInitGlobalCfg();
int32_t taosCheckGlobalCfg();
S
Shengliang Guan 已提交
189
int32_t taosCfgDynamicOptions(char *msg);
H
Hongze Cheng 已提交
190 191 192 193
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 已提交
194

H
hzcheng 已提交
195 196 197 198
#ifdef __cplusplus
}
#endif

199
#endif /*_TD_COMMON_GLOBAL_H_*/