mirror of https://github.com/milvus-io/milvus.git
Change proxy default rpc transfer limitation (#12351)
Signed-off-by: yhmo <yihua.mo@zilliz.com>pull/12466/head
parent
2a0d646196
commit
a4f11c9da5
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue