1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

AWSのDocumentDbにjsonファイルを使ってデータをインポートする

Last updated at Posted at 2020-06-05

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

ちゃんと入っていました。

1
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?