I have an Android that uses firebase for authentication and MongoDb as a backend, I'm currently on the M0 cluster where the connection limit is 500. I use the Stitch API. When I use app from my device the number of connections increases from 4 to 8. I think initial 4 connections are by default so I don't mind that but I'm really concerned about such a jump in number of connections from a single device. PS. I tried having StitchAppClient and RemoteMongoClient in common class, so that there would be a single instance, but that too didn't work.
Asked
Active
Viewed 90 times
1
-
2What connections are being counted? An application connected to a 3 node replica set deployment uses a minimum of 4 connections, 1 monitoring connection per node + at least 1 connection for queries/writes. – D. SM Aug 18 '20 at 17:04
-
1So that means I would have 4 connections per user (of my app)? – elchicho44 Aug 18 '20 at 18:05
-
1Per running application process. – D. SM Aug 18 '20 at 19:05