我有一个托管 250+ 百万个文档的 MongoDB Sharded Cluster。
文件结构如下:
{
"app_id": "whatever",
"created": ISODate("2018-05-06T12:13:45.000Z"),
"latest_transaction": ISODate("2019-03-06T11:11:40.000Z"),
"anotherField1": "Str", "anotherField2": "Str", ...otherfields
}
{
"app_id": "whatever",
"created": ISODate("2018-04-06T12:13:45.000Z"),
"latest_transaction": ISODate("2019-03-06T11:11:40.000Z"),
"uninstalled": ISODate("2019-03-07T11:11:40.000Z"),
"anotherField1": "Str", "anotherField2": "Str", ...otherfields
}
所以基本上有些文件已经卸载了该字段,有些则没有。
以下是对集合的查询(这是pymongo的解释,对不起datetime.datetime s):
{
'$and': [
{'app_id': {'$eq': 'whatever'}},
{'created': {'$lt': datetime.datetime(2019, 3, 7, 0, 0)}},
{'latest_transaction': {'$gt': datetime.datetime(2019, 2, 5, 0, 0)}},
{'$nor': [{'uninstalled': {'$lt': datetime.datetime(2019, 3, 7, 0, 0)}}]}
]
}
这是我收集的两个相关索引:
Index1: {"created": 1, "latest_transaction": -1, "uninstalled": -1, "app_id": 1}
Index2: {'app_id': 1, 'anotherField1': 1, 'anotherField2': 1}
现在的问题是,MongoDb 查询计划器似乎永远不会选择我在集合中拥有的Index1用于完全相同的目的!
我最初的印象是查询将使用一个覆盖索引,就像我构建索引的方式一样[因此,非常快],但对我来说很奇怪,mongodb 使用的是Index2,而且一切都太慢了,有时需要 10 分钟以上,通常在150 万个文档的结果集需要 6 分钟[即匹配的 app_id 大约有 150 万个文档]。
这是查询中解释的输出,显示使用“Index1”被拒绝的计划
{
'inputStage': {
'inputStage': {
'direction': 'forward',
'indexBounds': {
'app_id': ['["whatever", "whatever"]'],
'created': ['(true, new Date(1551916800000))'],
'latest_transaction': ['[new Date(9223372036854775807), new Date(1549324800000))'],
'uninstalled': ['[MaxKey, new Date(1551916800000)]', '[true, MinKey]']
},
'indexName': 'created_1_latest_transaction_-1_uninstalled_-1_app_id_1',
'indexVersion': 2,
'isMultiKey': False,
'isPartial': False,
'isSparse': False,
'isUnique': False,
'keyPattern': {
'app_id': 1.0,
'created': 1.0,
'latest_transaction': -1.0,
'uninstalled': -1.0
},
'multiKeyPaths': {'app_id': [], 'created': [], 'latest_transaction': [], 'uninstalled': []},
'stage': 'IXSCAN'},
'stage': 'FETCH'},
'stage': 'SHARDING_FILTER'
}
以下是使用无关的、未发现的 Index2的获胜计划:
{'inputStage': {
'inputStage': {'direction': 'forward',
'indexBounds': {
'app_id': ['["whatever", "whatever"]'],
'anotherField1': ['[MinKey, MaxKey]'],
'anotherField2': ['[MinKey, MaxKey]']},
'indexName': 'app_id_1_anotherField2_1_anotherField1_1',
'indexVersion': 2,
'isMultiKey': False,
'isPartial': False,
'isSparse': False,
'isUnique': False,
'keyPattern': {'app_id': 1, 'anotherField1': 1, 'anotherField2': 1},
'multiKeyPaths': {'app_id': [], 'anotherField1': [], 'anotherField2': []},
'stage': 'IXSCAN'},
'stage': 'FETCH'},
'stage': 'SHARDING_FILTER'
}
- 关于为什么 mongodb 不能正确使用我的索引的任何想法?
- 是因为某些文档中可能不存在已卸载的内容吗?
- 在进行复合日期查询时对索引方向的一些解释也将不胜感激,也许原因是索引方向?
(1, -1, -1, 1)
谢谢!:)
------------编辑--------------
解释的完整结果有点长,所以我把它贴在这里,它解释了 queryPlanner 对索引 (Index2) 的选择。
同样关于 shard_key,它与这里查询的内容完全不同,这就是为什么我只为这个查询定义一个单独的特定索引。(分片键是 (app_id, android_id, some_other_field_not_in_query) 上的复合索引。