From 1cd857c669677b2a7ec52ecdf2a7cf9285427973 Mon Sep 17 00:00:00 2001 From: dapan1121 <89396746@qq.com> Date: Tue, 27 Apr 2021 15:17:57 +0800 Subject: [PATCH] disable rpc compress --- src/common/src/tglobal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/src/tglobal.c b/src/common/src/tglobal.c index 690b3ca680..1524f15b7d 100644 --- a/src/common/src/tglobal.c +++ b/src/common/src/tglobal.c @@ -69,7 +69,7 @@ int32_t tsMaxBinaryDisplayWidth = 30; * -1: all data are not compressed * other values: if the message payload size is greater than the tsCompressMsgSize, the message will be compressed. */ -int32_t tsCompressMsgSize = 16 * 1048576; +int32_t tsCompressMsgSize = -1; // client int32_t tsMaxSQLStringLen = TSDB_MAX_ALLOWED_SQL_LEN; -- GitLab