Uploading Master Data in MongoDB Atlas
Read this short tutorial that includes informational pictures in order to learn more about how to efficiently upload master data into MongoDB Atlas.
Join the DZone community and get the full member experience.
Join For FreeWe hope you already have a MongoDB Atlas instance and you need to import master data in your collections.
Before you can import data, you need to whitelist your IP and create a user that has read/write permissions through the security tab.
MongoImport
MongoImport can be used to import data from json , csv, or tsv file.
To fire MongoImport command, traverse to the path where you have installed MongoDB on local:
Command to Be Used on windows:
C:\Program Files\MongoDB\Server\3.4\bin>mongoimport --host dzone-shard-00-00-abcde.mongodb.net:27017 --ssl --authenticationDatabase admin --username <userName> --password <password> --db testDB --collection Test --file C:\DZone\Test.json --jsonArray
Note : Please replace host , userName , password , db, and collection.
MongoFiles
The MongoFiles utility makes it possible to manipulate files stored in your MongoDB instance in GridFS objects from the command line. It is particularly useful as it provides an interface between objects stored in your file system and GridFS.
Command to Be Used on Windows:
C:\Program Files\MongoDB\Server\3.4\bin>mongofiles --host dzone-shard-00-00-abcde.mongodb.net:27017 --ssl --authenticationDatabase admin --username <userName> --password <password> --db <DB> -l C:\DZone\Test.pdf put Test.pdf
Note : Please replace host , userName , password , db, and collection.
If you enjoyed this article and want to learn more about MongoDB, check out this collection of tutorials and articles on all things MongoDB.
Opinions expressed by DZone contributors are their own.
Trending
-
Which Is Better for IoT: Azure RTOS or FreeRTOS?
-
Building a Robust Data Engineering Pipeline in the Streaming Media Industry: An Insider’s Perspective
-
13 Impressive Ways To Improve the Developer’s Experience by Using AI
-
How Web3 Is Driving Social and Financial Empowerment
Comments