mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-04 09:52:30 +08:00
11 lines
222 B
Go
11 lines
222 B
Go
package grpcconfigs
|
|
|
|
import "math"
|
|
|
|
const (
|
|
DefaultServerMaxSendSize = math.MaxInt32
|
|
DefaultServerMaxRecvSize = math.MaxInt32
|
|
DefaultClientMaxSendSize = 100 * 1024 * 1024
|
|
DefaultClientMaxRecvSize = 100 * 1024 * 1024
|
|
)
|