bump max connections number to 900

This commit is contained in:
Anton Kaliaev 2018-06-22 22:48:20 +04:00
parent 936a655990
commit f5b8849106
No known key found for this signature in database
GPG Key ID: 7B6881D965918214
1 changed files with 3 additions and 4 deletions

View File

@ -251,10 +251,9 @@ func DefaultRPCConfig() *RPCConfig {
GRPCMaxOpenConnections: 900, // no ipv4
Unsafe: false,
// should be < ({ulimit -Sn} - {MaxNumPeers} - {N of wal, db and other open files}) / 2
// divided by 2 because 1 fd for ipv4, 1 fd - ipv6
// 1024 - 50 - 50 = 924 / 2 = ~450
MaxOpenConnections: 450,
// should be < {ulimit -Sn} - {MaxNumPeers} - {N of wal, db and other open files}
// 1024 - 50 - 50 = 924 = ~900
MaxOpenConnections: 900,
}
}