减少mongodb查询(带有查询)的执行时间

时间:2018-10-18 11:50:44

标签: mongodb

大家好,

我正在与mongodb合作。我有一个集合名称预订,总共有19,000个文档。我的查询花了3秒钟的时间执行,我只希望每个查询只有20条记录。我在查询中有多个查询。

我添加了如下索引:


{ 
    status: 1, 
    end_date_timestamp: 1, 
    is_visible: 1, 
    arrival_date_time: 1 
} 

我的mongodb查询日志如下:


    { 
        aggregate: "bookings", 
            pipeline: [ 
                { $lookup: 
                    { 
                        localField: "uid", 
                        from: "users", 
                        foreignField: "_id", 
                        as: "customer_info" 
                    } 
                }, 
                { $unwind: "$customer_info" }, 
                { $lookup: 
                    { 
                        foreignField: "_id", 
                        as: "provider_info", 
                        localField: "provider_ids", 
                        from: "users" 
                    } 
                }, 
                { $match: 
                    { status: { $in: [ 0, 6, 7, 8 ] }, 
                    end_date_timestamp: { $gte: 1539839212 }, 
                    is_visible: true, 
                    customer_info.status: { $ne: 9 }, 
                    provider_info.status: { $ne: 9 } } 
                }, 
                { $lookup: 
                    { 
                        localField: "address_id", 
                        from: "user_addresses", 
                        foreignField: "_id", 
                        as: "address" 
                    } 
                }, { $unwind: "$address" }, 
                { $sort: { arrival_date_time: 1 } }, 
                { $skip: 0 }, 
                { $limit: 20 }, 
                { $project: 
                    { 
                        reminder_before_day_hour_time: 0, 
                        customer_info.apt_no: 0, 
                        customer_info.invitation_sent: 0, 
                        provider_info.password: 0, 
                    } 
                } 
            ], 
            cursor: {}, 
            $readPreference: 
            { mode: "secondaryPreferred" }, 
            $db: "ironetwork_bk_db" } 
            planSummary: IXSCAN 
            { 
                status: 1, 
                end_date_timestamp: 1, 
                is_visible: 1, 
                arrival_date_time: 1 
            } 
            keysExamined:16281 
            docsExamined:16277 
            hasSortStage:1 
            cursorExhausted:1 
            numYields:183 
            nreturned:20 
            reslen:102932 
            locks:{ 
                Global: 
                    { acquireCount: { r: 97909 } }, 
                Database: 
                    { acquireCount: { r: 97909 } }, 
                Collection: 
                    { acquireCount: { r: 97908 } } 
            } 
            protocol:op_query 3352ms

请建议我如何减少查询执行时间?

0 个答案:

没有答案
相关问题