dragondriver ad77a6e0d4
Fix #6859, increase the MaxCallRecvMsgSize and MaxCallSendMsgSize of grpc client (#6861)
Signed-off-by: dragondriver <jiquan.long@zilliz.com>
2021-08-04 13:03:24 +08:00

11 lines
222 B
Go

package grpcconfigs
import "math"
const (
DefaultServerMaxSendSize = math.MaxInt32
DefaultServerMaxRecvSize = math.MaxInt32
DefaultClientMaxSendSize = 100 * 1024 * 1024
DefaultClientMaxRecvSize = 100 * 1024 * 1024
)