Hi all,
I am doing performance testing of a rest API with more than 100 concurrent users.
Apparently, mongodb does not create more than 103 connection, and throwing errors.
I am using mongodb community version on Windows 10 and running mongod via CMD.
Let me know if there is way to create more connection when concurrent users are increased.
Below is the output of connections:
db.serverStatus().connections
{
“current” : 103,
“available” : 999897,
“totalCreated” : 103,
“active” : 78,
“exhaustIsMaster” : 1,
“exhaustHello” : 0,
“awaitingTopologyChanges” : 1
}