top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

MongoDb with cloud

0 votes
152 views

I want to store my mongoDbdata remotely.
Do I need only mongoDb server or any specific server that serve as mongoDb dedicated server.Storage data can be 5-7Gb per month.

Any suggestion would be helpful?

posted Jul 20, 2015 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

Yes I think you should use a dedicated mongoDB server for better management and use MongoHQ and MongoLAB. Here is a blog link and after reading this,I am sure you will use a dedicated server for MongoDB.
Read this blog:
http://blog.mongodb.org/post/**********/processing-2-billion-documents-a-day-and-30tb-a

answer Feb 26, 2016 by Shivam Kumar Pandey
Similar Questions
0 votes

Can Google cloud disk snapshots give consistent MongoDB backups? I am using WiredTiger engine with journalling enabled, both data and journal files are on the same disk.

0 votes

My collection is like this, but I want to update a nested object with {"env":"qa"} in my updated collection with java-driver:

{ "_id" : ObjectId("5b052eeff9290437b217b1ed"), "app" : "hike", "group" : [ { "env" : "prod" }, { "env" : "test" } ]}{ "_id" : ObjectId("5b052f36f9290437b217b1ee"), "app" : "viber", "group" : [ { "env" : "prod" }, { "env" : "test" } ]}

...