Hi @Derek_Cox
The full log output suggests the recommended value for the configured system. Check the log or use db.adminCommand({getLog: 'startupWarnings'}).log.forEach(l => printjson(l))
If the Operations Checklist, UNIX ulimit Settings and Production Notes were followed then this value should be 102400.
This is derived from net.maxIncomingConnections * 2
The default net.maxIncomingConnections per the below should be 64000 * 0.8
64000 from the ulimit set(this is usually done in the mongod.service file for RPM and deb installs)
net.maxIncomingConnectionsType: integer
Default (Windows): 1,000,000
Default (Linux): (RLIMIT_NOFILE) * 0.8
size_t requiredMapCount = 2 * maxConns;