Set MongoDB Database quota (SIZE)

后端 未结 2 809
遥遥无期
遥遥无期 2021-01-02 23:50

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 bu

相关标签:
2条回答
  • 2021-01-03 00:43

    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.

    0 讨论(0)
  • 2021-01-03 00:51

    I dont believe this can be done with MongoDB. If at all possible, you might want to create volumes on your server that have quota's set on them, and spin up multiple instances of mongod

    You should keep in mind, however, that MongoDB attempts to keep as much data as possible in memory. This could pose performance issues for customers when their data gets swapped to disk in exchange for someone else's data.

    0 讨论(0)
提交回复
热议问题