mongorestore metadata.json文件

时间:2016-02-06 19:02:50

标签: mongodb mongodump mongorestore

我有一个来自MongoDB转储的.bson文件。转储还会生成一个似乎包含索引定义的.metadata.json文件。

{
    "options": {},
    "indexes": [
        {
            "v": 1,
            "key": {
                "_id": 1
            },
            "name": "_id_",
            "ns": "test.oneMillionDocuments"
        }
    ]
}

我假设从.bson文件恢复并不包含索引。

  • 如何使用.metadata.json文件?我需要单独恢复吗?

我的恢复完成了以下几行:

2016-02-06T19:18:56.397+0000    [#######################.]  test2.oneMillionRecordsRestore  9.7 GB/9.7 GB  (99.5%)
2016-02-06T19:18:58.475+0000    restoring indexes for collection test2.oneMillionRecordsRestore from metadata
2016-02-06T19:18:58.485+0000    finished restoring test2.oneMillionRecordsRestore (1000000 documents)
2016-02-06T19:18:58.488+0000    done

有一条线说它正在恢复索引,但具体是引用.metadata.json文件。

1 个答案:

答案 0 :(得分:9)

您无需对metadata.json文件执行任何操作:只需运行mongorestore,它将与.bson文件一起读取,前提是它位于同一目录中。您将在输出中看到一行,您可以从中推断它是否已被读取:

2016-02-06T20:22:08.652+0100    reading metadata for mydb.message from dump/mydb/message.metadata.json

但是,我认为有些情况会被忽略(例如冲突的索引定义)。导入不会失败,但是您会在日志中看到一行告诉您元数据(或部分元素)被忽略。