global range conflict
This commit is contained in:
parent
bf8c64d3da
commit
a9958dc5b8
|
@ -211,7 +211,7 @@ extern char lossyColumns[];
|
|||
extern double fPrecision;
|
||||
extern double dPrecision;
|
||||
extern uint32_t maxRange;
|
||||
extern uint32_t range;
|
||||
extern uint32_t curRange;
|
||||
extern char Compressor[];
|
||||
#endif
|
||||
|
||||
|
|
|
@ -252,8 +252,8 @@ char lossyColumns[32] = ""; // "float|double" means all float and double column
|
|||
// below option can take effect when tsLossyColumns not empty
|
||||
double fPrecision = 1E-8; // float column precision
|
||||
double dPrecision = 1E-16; // double column precision
|
||||
uint32_t maxRange = 500; // max range
|
||||
uint32_t range = 100; // range
|
||||
uint32_t maxRange = 500; // max range
|
||||
uint32_t curRange = 100; // range
|
||||
char Compressor[32] = "ZSTD_COMPRESSOR"; // ZSTD_COMPRESSOR or GZIP_COMPRESSOR
|
||||
#endif
|
||||
|
||||
|
@ -312,7 +312,6 @@ bool taosCfgDynamicOptions(char *msg) {
|
|||
|
||||
int32_t cfgLen = (int32_t)strlen(cfg->option);
|
||||
if (cfgLen != olen) continue;
|
||||
y
|
||||
if (strncasecmp(cfg->option, "monitor", olen) == 0) {
|
||||
if (1 == vint) {
|
||||
if (monStartSystemFp) {
|
||||
|
@ -1570,7 +1569,7 @@ static void doInitGlobalConfig(void) {
|
|||
taosInitConfigOption(cfg);
|
||||
|
||||
cfg.option = "range";
|
||||
cfg.ptr = ⦥
|
||||
cfg.ptr = &curRange;
|
||||
cfg.valType = TAOS_CFG_VTYPE_INT32;
|
||||
cfg.cfgType = TSDB_CFG_CTYPE_B_CONFIG;
|
||||
cfg.minValue = 0;
|
||||
|
|
|
@ -85,7 +85,7 @@ int tsCompressInit(){
|
|||
if(lossyFloat == false && lossyDouble == false)
|
||||
return 0;
|
||||
|
||||
tdszInit(fPrecision, dPrecision, maxRange, range, Compressor);
|
||||
tdszInit(fPrecision, dPrecision, maxRange, curRange, Compressor);
|
||||
if(lossyFloat)
|
||||
uInfo("lossy compression float is opened. ");
|
||||
if(lossyDouble)
|
||||
|
|
Loading…
Reference in New Issue