Change proxy default rpc transfer limitation (#12351)

Signed-off-by: yhmo <yihua.mo@zilliz.com>
pull/12466/head
groot 2021-11-30 15:44:19 +08:00 committed by GitHub
parent 2a0d646196
commit a4f11c9da5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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