Ank*_*kar 8 mongodb mongodb-query aggregation-framework
我在ubuntu机器上使用mongo v3.0.1.我收集了3亿行.我已根据查询首选项创建了两个索引.
当我尝试使用explain进行聚合时,它会使用效率低下的索引,这就是为什么它需要花费20-25秒的时间.有没有办法放置$hint
,以便我的聚合查询使用适当的索引.
$match
是我的第一个管道阶段.我有两个索引:
"HOST_-1_SiteType_-1"
"VisitTime_-1_AccountId_-1_Host_-1_SiteType_-1_Extension_-1_LifeTime_-1"
我的$match
管道就像:
{ "$match" : {
"AccountId": accID,
"VisitTime": { "$lte" : today, "$gte" : last365Days },
"$or": [
{ "$and": [
{ "Extension":{ "$in": ["chrome_0","firefox_0"] }},
{ "LifeTime": 0 }
]},
{ "LifeTime": { "$gt": 1000 }}
],
"Host": { "$ne": "localhost" },
"SiteType" : { "$exists": true },
}
Run Code Online (Sandbox Code Playgroud)
它使用的是第一个索引,而不是第二个索引.以及第一个指数在50秒内所花费的时间,而使用第二个指数只需要18秒.
这是我的一个文档示例:
{
"_id" : "2bc1143c-07e4-4c37-a020-a7485b2802a3",
"CreatedDate" : ISODate("2015-07-22T04:05:06.802+0000"),
"UpdatedDate" : ISODate("2015-07-22T05:28:26.469+0000"),
"AccountId" : accID,
"Url" : "http://www.test.com/test.html",
"Host" : "test.com",
"VisitTime" : ISODate("2014-08-12T18:08:25.813+0000"),
"LifeTime" : 789546.01,
"Status" : "closed",
"LocalTime" : ISODate("2014-08-12T18:08:25.813+0000"),
"DeviceId" : "123456789",
"Extension" : "firefox_0",
"SubSiteType" : "TestSubSite",
"SiteType" : "TestSite",
"Flag" : "1"
}
Run Code Online (Sandbox Code Playgroud)
这是我的汇总解释:
{
"stages" : [
{
"$cursor" : {
"query" : {
"AccountId" : "accID",
"VisitTime" : {
"$lte" : "2015-07-25T18:30:00Z",
"$gte" : "2014-07-25T18:30:00Z"
},
"Host" : {
"$ne" : "localhost"
},
"SiteType" : {
"$exists" : true
},
"$or" : [
{
"$and" : [
{
"Extension" : {
"$in" : [
"chrome_0",
"firefox_0"
]
}
},
{
"LifeTime" : 0
}
]
},
{
"LifeTime" : {
"$gt" : 1000
}
}
]
},
"fields" : {
"Host" : 1,
"_id" : 0
},
"queryPlanner" : {
"plannerVersion" : 1,
"namespace" : "Test",
"indexFilterSet" : false,
"parsedQuery" : {
"$and" : [
{
"$or" : [
{
"$and" : [
{
"LifeTime" : {
"$eq" : 0
}
},
{
"Extension" : {
"$in" : [
"chrome_0",
"firefox_0"
]
}
}
]
},
{
"LifeTime" : {
"$gt" : 1000
}
}
]
},
{
"$not" : {
"Host" : {
"$eq" : "localhost"
}
}
},
{
"VisitTime" : {
"$lte" : "2015-07-25T18:30:00Z"
}
},
{
"AccountId" : {
"$eq" : "accID"
}
},
{
"VisitTime" :"2014-07-25T18:30:00Z"
},
{
"SiteType" : {
"$exists" : true
}
}
]
},
"winningPlan" : {
"stage" : "FETCH",
"filter" : {
"$and" : [
{
"SiteType" : {
"$exists" : true
}
},
{
"$or" : [
{
"$and" : [
{
"LifeTime" : {
"$eq" : 0
}
},
{
"Extension" : {
"$in" : [
"chrome_0",
"firefox_0"
]
}
}
]
},
{
"LifeTime" : {
"$gt" : 1000
}
}
]
},
{
"VisitTime" : {
"$lte" : "2015-07-25T18:30:00Z"
}
},
{
"AccountId" : {
"$eq" : "accID"
}
},
{
"VisitTime" : {
"$gte" : "2014-07-25T18:30:00Z"
}
}
]
},
"inputStage" : {
"stage" : "IXSCAN",
"keyPattern" : {
"Host" : -1,
"SiteType" : -1
},
"indexName" : "Host_-1_SiteType_-1",
"isMultiKey" : false,
"direction" : "forward",
"indexBounds" : {
"Host" : [
"[MaxKey, \"localhost\")",
"(\"localhost\", MinKey]"
],
"SiteType" : [
"[MaxKey, MinKey]"
]
}
}
},
"rejectedPlans" : [
{
"stage" : "FETCH",
"filter" : {
"$and" : [
{
"SiteType" : {
"$exists" : true
}
},
{
"$or" : [
{
"$and" : [
{
"LifeTime" : {
"$eq" : 0
}
},
{
"Extension" : {
"$in" : [
"chrome_0",
"firefox_0"
]
}
}
]
},
{
"LifeTime" : {
"$gt" : 1000
}
}
]
}
]
},
"inputStage" : {
"stage" : "IXSCAN",
"keyPattern" : {
"VisitTime" : -1,
"AccountId" : -1,
"Host" : -1,
"SiteType" : -1,
"Extension" : -1,
"LifeTime" : -1
},
"indexName" : "VisitTime_-1_AccountId_-1_Host_-1_SiteType_-1_Extension_-1_LifeTime_-1",
"isMultiKey" : false,
"direction" : "forward",
"indexBounds" : {
"VisitTime" : [
"[new Date(1437849000000), new Date(1406313000000)]"
],
"AccountId" : [
"[\"accID\", \"accID\"]"
],
"Host" : [
"[MaxKey, \"localhost\")",
"(\"localhost\", MinKey]"
],
"SiteType" : [
"[MaxKey, MinKey]"
],
"Extension" : [
"[MaxKey, MinKey]"
],
"LifeTime" : [
"[MaxKey, MinKey]"
]
}
}
}
]
}
}
},
{
"$group" : {
"_id" : "$Host",
"Count" : {
"$sum" : {
"$const" : 1
}
}
}
},
{
"$sort" : {
"sortKey" : {
"Count" : -1
},
"limit" : 5
}
},
{
"$project" : {
"_id" : false,
"Host" : "$_id",
"TotalVisit" : "$Count"
}
}
],
"ok" : 1
}
Run Code Online (Sandbox Code Playgroud)
bud*_*yan 23
2019 答案
从 MongoDB 3.6 版开始
从文档中,您可以通过以下方式添加带有聚合的提示:
db.collection.aggregate(pipeline, {hint: "index_name"})
Run Code Online (Sandbox Code Playgroud)
如果您想查看解释,只需像不添加解释一样添加解释 hint
索引定义可能是非常主观的,您不能随便说“索引此东西”,然后希望达到最佳效果。实际上,它需要对其应用的搜索过程进行一些思考。
您的查询似乎由这些主要元素组成,主要是“帐户”和“生命周期”值。当然,那里肯定还有其他东西,例如“ VisitTime”,但是以旧的库和卡索引为类比,然后考虑一下该过程。
因此,当您穿过图书馆的门时,会看到两个卡片索引系统:
按作者的创作日期将它们包含在库中,使您可以根据日期选择指向这些书的卡片
包含书籍作者的姓名以及图书馆中的位置。
现在考虑到您知道要查找过去十年中撰写的作者的书籍,那么您选择哪种索引系统?那么,您是否浏览了10年的日期并寻找其中包含的作者?还是您宁愿先查找作者,然后再缩小过去十年中写过哪些书?
过去10年中,单身作者的内容可能会更多。因此2是更好的选择,因为一旦您拥有该作者的所有书籍,然后翻阅卡片以在10年内找到那些书应该是一个小得多的任务。
这就是为什么索引中键的顺序对您使用的查询模式很重要的原因。显然,“帐户”应该是最缩小选择范围的内容,然后是其他细节以帮助进一步缩小选择范围。
在此之前放置“ VisitTime”之类的东西意味着您需要先筛选该时段内您可能不想要的所有东西,然后才能真正找到所需的东西。
排序很重要,您需要始终在索引设计中考虑这一点。
归档时间: |
|
查看次数: |
6720 次 |
最近记录: |