如何使用PyMongo将索引从一个集合复制到另一个集合?

时间:2017-02-15 11:54:43

标签: python mongodb pymongo

在另一个问题(How do I copy a collection from one database to another database on the same server using PyMongo?)中,我想出了如何将一个MongoDB集合复制到同一服务器上的另一个数据库。但是,这不会复制源集合上的索引,那么如何复制它们呢?

2 个答案:

答案 0 :(得分:3)

所以使用简化的设置如下:

from pymongo import MongoClient
client = MongoClient()
client.db1.coll1.insert({'content':'hello world'})
client.db1.coll1.create_index(keys='content')

我们可以看到它有一个自定义索引:

>>> client.db1.coll1.index_information()
{u'_id_': {u'key': [(u'_id', 1)], u'ns': u'db1.coll1', u'v': 1},
 u'content_1': {u'key': [(u'content', 1)], u'ns': u'db1.coll1', u'v': 1}}

然后我通过复制数据创建第二个集合coll2,如下所示:

client.db1.coll1.aggregate([{'$out':'coll2'}])

以下似乎可用于复制索引:

for name, index_info in client.db1.coll1.index_information().iteritems():
    client.db1.coll2.create_index(keys=index_info['key'], name=name)

我担心由于coll2已经有一个主键索引'_id',这可能会导致错误,但它似乎就是这样:

>>> client.db1.coll2.index_information()
{u'_id_': {u'key': [(u'_id', 1)], u'ns': u'db1.coll2', u'v': 1},
 u'content_1': {u'key': [(u'content', 1)], u'ns': u'db1.coll2', u'v': 1}}

答案 1 :(得分:1)

template.php