limitlessriver
limitlessriver

Reputation: 791

Azure Data Migration Tool

I am trying to migrate my mongoDB from mLab to Azure DocumentDB (with protocol support for mongoDB) using the data migration tool that Microsoft asks us to use, here is the link -https://www.microsoft.com/en-us/download/details.aspx?id=46436. The mlab mongoDb is trial version.

The connection string for mlab mongoDb is mongodb://dbuser:dbpassword@host:port/dbname

But the tool does not accept the connection string for the mLab mongoDB but accepts the one for my local mongoDB.

Has anyone else had this problem?

Upvotes: 0

Views: 675

Answers (1)

stephbaron
stephbaron

Reputation: 51

The data migration tool is designed to migrate to standard DocumentDB accounts. For migrating from MongoDB to a DocumentDB account with protocol support for MongoDB, I recommend standard MongoDB utilities such as mongoexport/mongoimport or mongodump/mongorestore.

Upvotes: 0

Related Questions