From 01a7052a6f156632d10e7c30629cff52c67cb6ed Mon Sep 17 00:00:00 2001 From: wangmm0220 Date: Wed, 13 Mar 2024 22:06:35 +0800 Subject: [PATCH] fix:set tsStreamAggCnt big enough to disable multi agg operator --- source/common/src/tglobal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/common/src/tglobal.c b/source/common/src/tglobal.c index 271fa20c54..33ff3e1248 100644 --- a/source/common/src/tglobal.c +++ b/source/common/src/tglobal.c @@ -268,7 +268,7 @@ bool tsDisableStream = false; int64_t tsStreamBufferSize = 128 * 1024 * 1024; bool tsFilterScalarMode = false; int tsResolveFQDNRetryTime = 100; // seconds -int tsStreamAggCnt = 10; +int tsStreamAggCnt = 100000; char tsS3Endpoint[TSDB_FQDN_LEN] = ""; char tsS3AccessKey[TSDB_FQDN_LEN] = "";