mongodb查询需要很长时间

时间:2018-01-05 05:27:06

标签: python mongodb pymongo

我的mongodb系列中有以下文档:

{'name' : 'abc-1','parent':'abc', 'price': 10}
{'name' : 'abc-2','parent':'abc', 'price': 5}
{'name' : 'abc-3','parent':'abc', 'price': 9}
{'name' : 'abc-4','parent':'abc', 'price': 11}

{'name' : 'efg', 'parent':'', 'price': 10}
{'name' : 'efg-1','parent':'efg', 'price': 5}
{'name' : 'abc-2','parent':'efg','price': 9}
{'name' : 'abc-3','parent':'efg','price': 11}

我想执行以下操作:

a. Group By distinct parent
b. Sort all the groups based on price
c. For each group select a document with minimum price
  i. check each record's parent sku exists as a record in name field
  ii. If the name exists, do nothing
  iii. If the record does not exists, insert a document with parent as empty and other values as the  value of the record selected previously (minimum value).

我厌倦了如下使用:

db.file.find().sort([("price", 1)]).forEach(function(doc){
          cnt = db.file.count({"sku": {"$eq": doc.parent}});
          if (cnt < 1){
               newdoc = doc;
               newdoc.name = doc.parent;
               newdoc.parent = "";
              delete newdoc["_id"];
              db.file.insertOne(newdoc);
          }
});

问题在于需要花费太多时间。这有什么不对?如何优化?聚合管道是否是一个很好的解决方案,如果是的话怎么办呢?

1 个答案:

答案 0 :(得分:1)

  1. 检索一组产品名称✔

    def product_names():
        for product in db.file.aggregate([{$group: {_id: "$name"}}]):
            yield product['_id']

    product_names = set(product_names())

  2. 以最少的价格检索产品 团体价格✔

    result_set = db.file.aggregate([
        {
            '$sort': {
                'price': 1,
            }
        }, 
        {
            '$group': {
                '_id': '$parent',
                'name': {
                    '$first': '$name',
                }, 
                'price': {
                    '$min': '$price',
                }
            }
        }, 
        {
            '$sort': {
                'price': 1,
            }
        }
    ])
    

  3. 如果名称不在集合中,则插入在2中检索的产品 在1.✔

    中检索的产品名称
    from pymongo.operations import InsertOne
    
    def insert_request(product):
        return InsertOne({
            name: product['name'],
            price: product['price'],
            parent: ''
        })
    
    requests = (
        insert_request(product)
        for product in result_set
        if product['name'] not in product_names
    )
    db.file.bulk_write(list(requests))
    
  4. 步骤2和3可以在aggregation渠道中实施。

    db.file.aggregate([
        {
            '$sort': {'price': 1}
        }, 
        {
            '$group': {
                '_id': '$parent',
                'name': {
                    '$first': '$name'
                }, 
                'price': {
                    '$min': '$price'
                },
            }
        }, 
        {
            '$sort': {
                'price': 1
            }
        }, 
        {
            '$project': {
                'name': 1, 
                'price': 1,
                '_id': 0, 
                'parent':''
            }
        }, 
        {
            '$match': {
                'name': {
                    '$nin': list(product_names())
                }
            }
        }, 
        {
            '$out': 'file'
        }
    ])