I'm working with a system that requires multiple databases for multiple organisation. A monolithic node Js server connects to these databases. The challenge is I may have 5000 organisation.
I wanted to know is there any limit for creating databases in a single mongodb cluster ?
If so what is the maximum number of databases that are allowed ?
If the cluster can handle as many databases as I add, is there any issue for scalability with this design ?
Assuming I have 5000 databases and 50 collections on each database, can a cluster handle this setup efficiently or is it even possible?
I went through some of the mongodb docs and tried to find limitations for different features of mongodb unfortunately I didn't find enough information on this topic .