Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Set MongoDB Database quota (SIZE)

I want to allow my shared hosting sites to use MongoDB, however as they are all on the same VPS server I am able to get mongo to create databases, and asign them to users but I seem not to be able to limit the size of the database only the size of the collection. Which can be changed.

Is there away as an admin to limit the size of the database.

like image 255
RussellHarrower Avatar asked Mar 20 '12 00:03

RussellHarrower


1 Answers

MongoDB allocates database chunks, starting at 64MB (dbname.0), followed by 128MB (.1), 256, etc. up to 2GB, then each file is 2GB from there on out.

If you use --smallfiles in the mongod.exe commandline params, file allocation begins at 16MB instead of 64MB, and maxes out at 512MB instead of 2GB.

Combine this with --quotaFiles 1, and your database can't grow beyond one file, or... 16MB. I always use --quotaFiles in conjunction with --quota, per the help docs.

like image 195
David Makogon Avatar answered Nov 09 '22 13:11

David Makogon