From a4f11c9da5fafec7f477c7ed2b90aeb430c078d2 Mon Sep 17 00:00:00 2001 From: groot Date: Tue, 30 Nov 2021 15:44:19 +0800 Subject: [PATCH] Change proxy default rpc transfer limitation (#12351) Signed-off-by: yhmo --- configs/milvus.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configs/milvus.yaml b/configs/milvus.yaml index ea7ba68885..fc4b4c7308 100644 --- a/configs/milvus.yaml +++ b/configs/milvus.yaml @@ -70,8 +70,8 @@ proxy: port: 19530 grpc: - serverMaxRecvSize: 2147483647 # math.MaxInt32 - serverMaxSendSize: 2147483647 # math.MaxInt32 + serverMaxRecvSize: 536870912 # 512 MB, 100 * 1024 * 1024 + serverMaxSendSize: 536870912 # 512 MB, 100 * 1024 * 1024 clientMaxRecvSize: 104857600 # 100 MB, 100 * 1024 * 1024 clientMaxSendSize: 104857600 # 100 MB, 100 * 1024 * 1024