Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Maximum number of databases supported by MongoDB

Tags:

mongodb

I would like to create a database for each customer. But before, I would like to know how many databases can be created in a single instance of MongoDB ?

like image 752
Maxence Avatar asked Feb 07 '11 15:02

Maxence


People also ask

What is the maximum number of collection in MongoDB?

Database size: 5.2 GB. Index size: 1.07 GB. Total Collections: 365.

How many free databases can you have on MongoDB?

M0 free clusters and M2/M5 shared clusters can have a maximum of 100 databases and 500 collections total.

Can MongoDB have multiple databases?

mongoDB database : Each database gets its own set of files on the file system. A single MongoDB server typically has multiple databases.

Can MongoDB handle millions of data?

Working with MongoDB and ElasticSearch is an accurate decision to process millions of records in real-time. These structures and concepts could be applied to larger datasets and will work extremely well too.


1 Answers

There's no explicit limit, but there are probably some implicit limits due to max number of open file handles / files in a directory on the host OS/filesystem.

see: http://groups.google.com/group/mongodb-user/browse_thread/thread/01727e1af681985a?fwc=2

like image 144
John K. Avatar answered Oct 09 '22 15:10

John K.