Is it possible to run more than one instance of MongoDB in Azure? I need (in the future) partition database to many node.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can run multiple instances if you use a replica set, as you can then use internal endpoints for inter-node communication. If you only have standalone instances, they won’t be able to communicate with each other and won’t share data.
I’ve been presenting this at various Mongodb conferences (DC, Silicon Valley), and you can watch the Silicon Valley video recording of my presentation here.
EDIT: 10gen has now published a .NET project that launches a replicaset, improving upon the original work I did, and may be downloaded here, with docs here.