Mongodb查询挂系统

时间:2017-01-16 07:25:41

标签: java mongodb mongodb-query aggregation-framework spring-data-mongodb

我使用的是MongoDB 2.6版。

我有大约300万个数据。 当我触发下面的查询时,它会挂起我的整个Java应用程序。

(我正在使用Mongodb connector从那里检索数据。)

db.collection_name.find{
    "client_id.event.currentDate": {
        $gte: "2016-12-18",
        $lte: "2017-01-17"
    },
     "client_id.event.name": "SEARCH HOTELS SUCCESS",
    _id: {
        $lt: ObjectId('5856428ce4b0f530cc74c090')
    }
}

检索此类大数据的最佳方法是什么?

修改 1:

我的收藏品上有索引

{"client_id.event.name" : 1 ,"_id" :1 ,"client_id.event.currentDate" :1} 

编辑2:

来自数据库的示例文档:

{
        "_id" : ObjectId("57a316a60cf26576defb7837"),
        "client_id" : {
                "clientIp" : "50.23.117.45",
                "event" : {
                        "installationId" : "us2zv39vti5v",
                        "action" : "END",
                        "client_us_lastCommunicatedAt" : "2016-08-01T10:23:38.502Z",
                        "duration" : 60,
                        "client_us_userUpdatedOn" : null,
                        "name" : "APPSESSION",
                        "appId" : 3,
                        "userName" : "us2zv39vti5v",
                        "currentDate" : "2016-08-01T10:24:38.502Z",
                        "superProperties" : {
                                "client_us_installAt" : "2016-08-01T10:23:38.502Z",
                                "client_us_cookieEnabled" : true,
                                "client_us_referrer" : "Self",
                                "client_us_screen_width" : 768,
                                "client_us_counter" : 1,
                                "client_us_screen_height" : 1360,
                                "client_us_brand" : "Google",
                                "client_us_browser_version" : "23.32.12.20",
                                "client_us_screen_dpi" : 96,
                                "client_us_os" : "Windows",
                                "client_us_screen_colourDepth" : 24,
                                "client_us_os_version" : "10",
                                "client_us_flashVersion" : "no check",
                                "client_us_lastCommunicatedAt" : "2016-08-01T10:23:38.502Z",
                                "browser" : "Chrome",
                                "client_us_screen_pixelDepth" : 0,
                                "client_us_referring_domain" : "Self",
                                "client_us_css_pixel" : 1,
                                "client_us_mobile" : false
                        },
                        "userProperties" : {
                                "duration" : 60,
                                "Country" : "IN"
                        },
                        "installProperties" : {
                                "email" : "us2zv39vti5v@gmail.com"
                        }
                }
        }
}

1 个答案:

答案 0 :(得分:0)

您有300万个数据,每个数据至少包含4个Date字段。 现在当spring-mongo-data从mongo请求所有这些时,它必须将日期的字符串值(这是一种json字符串日期格式= Java String)转换为12个日期的java Date对象。所以需要一段时间。