MongoDB将所有现有索引迁移到新数据库 [英] MongoDB Migrate all existing indexes to new database

查看:0
本文介绍了MongoDB将所有现有索引迁移到新数据库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个MongoDB开发集群,作为开发改进的一部分,我会在其中创建索引。在测试/生产MongoDB集群时,我也希望维护相同的索引。

如何获取现有集合的所有索引并在新数据库上创建相同的集合索引?

推荐答案

从Mongo Shell切换到要从中收集索引的数据库

第1步:切换到现有数据库并在脚本下运行

> use my_existing_db

下面的脚本循环遍历所有集合,并为每个集合构造run command

var database = ‘my_new_db' // SHOULD ALWAYS MATCH DESTINATION DB NAME
db.getCollectionNames().forEach(function(collection){    
    var command = {}
    var indexes = []    
    idxs = db.getCollection(collection).getIndexes()        
    if(idxs.length>1){
        idxs.forEach(function(idoc){
            if(idoc.name!='_id_'){
                var ns = database+"."+idoc.ns.substr(idoc.ns.indexOf('.') + 1 )
                idoc.ns = ns
                indexes.push(idoc)
            }
        })        
        command['createIndexes'] = collection
        command['indexes'] = indexes         
        print('db.runCommand(')
        printjson(command)     
        print(')')
    }
})

脚本为每个集合输出runCommand

第二步:切换到新的数据库并执行runCommands。好了,干杯!

> use my_new_db

运行指挥部将是这样的。您可以一次运行所有命令。

db.runCommand(
{
    "createIndexes" : "foo",
    "indexes" : [
        {
            "v" : 2,
            "key" : {
                "xy_point" : "2d"
            },
            "name" : "xy_point_2d",
            "ns" : "my_new_db.foo",
            "min" : -99999,
            "max" : 99999
        },
        {
            "v" : 2,
            "key" : {
                "last_seen" : 1
            },
            "name" : "last_seen_1",
            "ns" : "my_new_db.foo",
            "expireAfterSeconds" : 86400
        },
        {
            "v" : 2,
            "key" : {
                "point" : "2dsphere"
            },
            "name" : "point_2dsphere",
            "ns" : "my_new_db.foo",
            "background" : false,
            "2dsphereIndexVersion" : 3
        }
    ]
}
)
db.runCommand(
{
    "createIndexes" : "bar",
    "indexes" : [
        {
            "v" : 2,
            "unique" : true,
            "key" : {
                "date" : 1,
                "name" : 1,
                "age" : 1,
                "gender" : 1
            },
            "name" : "date_1_name_1_age_1_gender_1",
            "ns" : "my_new_db.bar"
        }
    ]
}
)

这篇关于MongoDB将所有现有索引迁移到新数据库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆