Hi,
I have a few questions about using connection pools with mongoose.
- If the poolSize is 5, which is the default, does that mean that a maximum of 5 connections will be open from the app to the db?
- If we are seeing 1000's of connections from the app to the db, even to the point of overloading the server with connections, what does that indicate? that pools aren't being used, or maybe that the pool setting was misconfigured?
- for capacity planning on a busy site with 10000's of end-users connecting, what might be an optimal poolSize, and how many connection would that cause? does poolsize=# of observed connections?
Thanks.