2

dump/enronディレクトリのmessages.bsonおよびmessages.medata.jsonフィールド。120,477個のドキュメントを復元する必要があります。そこからデータを復元したい。コマンドを入力します:

mongorestore -v --db enron --drop  dump/enron

コマンドが終了すると、メッセージが表示されます。見つかった120477オブジェクトは、ファイル[dump / enron/messages.metadata.json]をどう処理するかわかりません。

しかし、コレクションメッセージには、次を使用した112196のドキュメントが表示されます。

db.messages.count()

何が問題なのか教えていただけますか?コマンドの出力:

c:\mongodb\mongodb-win32-i386-2.0.5\bin>mongorestore -v  dump/enron/
Tue Dec 11 14:17:39 creating new connection to:127.0.0.1
Tue Dec 11 14:17:39 BackgroundJob starting: ConnectBG
Tue Dec 11 14:17:39 connected connection!
connected to: 127.0.0.1
Tue Dec 11 14:17:39 dump/enron/messages.bson
Tue Dec 11 14:17:39      going into namespace [enron.messages]
Tue Dec 11 14:17:39      file size: 396236668
                126878231/396236668     32%
                270206614/396236668     68%
                375698921/396236668     94%
                381433738/396236668     96%
                387378348/396236668     97%
                394626836/396236668     99%
120477 objects found
don't know what to do with file [dump/enron/messages.metadata.json]

「ファイル[dump/enron / messages.metadata.json]をどうするかわからない」というメッセージはどういう意味ですか?

4

2 に答える 2

4

これはうまくいくはずです:

ssharma$ mongorestore -d enron --collection messages /dump/enron/messages.bson
connected to: 127.0.0.1
Thu Mar  7 13:05:05 /dump/enron/messages.bson
Thu Mar  7 13:05:05     going into namespace [enron.messages]
Thu Mar  7 13:05:09         74234213/396236668  18% (bytes)
Thu Mar  7 13:05:12         126614885/396236668 31% (bytes)
Thu Mar  7 13:05:15         192098158/396236668 48% (bytes)
Thu Mar  7 13:05:18         208083274/396236668 52% (bytes)
Thu Mar  7 13:05:21         231816712/396236668 58% (bytes)
Thu Mar  7 13:05:24         293564538/396236668 74% (bytes)
Thu Mar  7 13:05:27         356071219/396236668 89% (bytes)
Thu Mar  7 13:05:30         379387449/396236668 95% (bytes)
120477 objects found
Thu Mar  7 13:05:32     Creating index: { key: { _id: 1 }, ns: "enron.messages", name: "_id_" }
ssharma$ ./mongo
MongoDB shell version: 2.2.2
connecting to: test
> use enron
switched to db enron
> db.messages.count()
120477
于 2013-03-07T21:12:15.740 に答える
1

bson ファイルを復元するときは、データベースとコレクションを指定する必要があります。

それは私にとっては次のように機能します:

$ mongodump -d mark --collection coll 
connected to: 127.0.0.1
DATABASE: mark   to     dump/mark
    mark.coll to dump/mark/coll.bson
         1000 objects

  $ mongorestore -d mark --collection newcoll dump/mark/
    connected to: 127.0.0.1
    Wed Aug 29 11:48:39 dump/mark/coll.bson
    Wed Aug 29 11:48:39      going into namespace [mark.newcoll]
    1000 objects found

試してみませんか -

mongorestore -d enron --collection messages /dump/enron/
于 2012-12-11T10:59:15.603 に答える