mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-28 14:35:27 +08:00
enhance: Change RootCoord default port to non-ephemeral port (#46256)
Related to #46255 Change RootCoord default gRPC port from 53100 to 22125 to avoid conflicts with ephemeral port range. The previous port 53100 falls within the Linux ephemeral port range (32768-60999), which could cause conflicts with other connections including Milvus's own outbound connections. Port 22125 is outside the ephemeral range and provides more reliable service binding. Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
This commit is contained in:
parent
f32f2694bc
commit
416113d11a
@ -301,7 +301,7 @@ rootCoord:
|
||||
maxGeneralCapacity: 65536 # upper limit for the sum of of product of partitionNumber and shardNumber
|
||||
gracefulStopTimeout: 5 # seconds. force stop node without graceful stop
|
||||
ip: # TCP/IP address of rootCoord. If not specified, use the first unicastable address
|
||||
port: 53100 # TCP port of rootCoord
|
||||
port: 22125 # TCP port of rootCoord
|
||||
grpc:
|
||||
serverMaxSendSize: 536870912 # The maximum size of each RPC request that the rootCoord can send, unit: byte
|
||||
serverMaxRecvSize: 268435456 # The maximum size of each RPC request that the rootCoord can receive, unit: byte
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user