Reputation: 513
I am new to MongoDB, and I am trying to develop using MEAN stack. I came across this question when designing APIs. I am also wondering which approach is better to save cost.
So, if I choose a plan in MongoDB atlas, how does MongoDB atlas calculate the cost to charge me? Is it by
how many time you call a query to the database
or
How much data is transfer from the database
Badly need your advice
Upvotes: 2
Views: 15572
Reputation: 552
You might have already solved this, but Mongo Atlas works very similar to an on demand host provider, in fact they use AWS, Google Cloud and Azure to host the DB servers you get with them, so they charge an amount per hour according to the size of the server you get, that way you could have the DB active only for half a month and pay for that, or have it for a long time and pay a full month each month. This link might be useful to select a tier and get a price per hour https://www.mongodb.com/cloud/atlas/pricing. Also, I think there is a free tier, not sure though.
Upvotes: 2