AWSのDocumentDbにjsonファイルを使ってデータをインポートする
mongoimport
というコマンドを使います。以下のコマンドを実行してください。
sudo yum install mongodb-org-tools
カレントディレクトリにjsonファイルを用意して、以下のコマンドを実行。
sudo mongoimport --ssl --host="your-host:27017" --collection=collection-name --db=db-name --file=your-json-file-name.json --sslCAFile rds-combined-ca-bundle.pem --jsonArray --username your-username --password your-password
もし、
Importing json from file into mongodb using mongoimport
というエラーがでたら、以下のページを参考にしてみてください。
https://stackoverflow.com/questions/30380751/importing-json-from-file-into-mongodb-using-mongoimport
rds-combined-ca-bundle.pem
をカレントディレクトリにダウンロードしておくこともお忘れなく。
rs0:PRIMARY> db.test-log.find({}).pretty()
2020-06-05T10:50:37.066+0000 E QUERY [thread1] ReferenceError: log is not defined :
mongodbではハイフンが入っているとこうなる。
以下のようにして。
rs0:PRIMARY> db['test-log'].find({}).count()
10
ちゃんと入っていました。
Author And Source
この問題について(AWSのDocumentDbにjsonファイルを使ってデータをインポートする), 我々は、より多くの情報をここで見つけました https://qiita.com/masalennon/items/048142f7f7c1d3f05c16著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .