当前位置: 代码网 > it编程>数据库>Nosql > Mongodb通配符索引签名和使用限制问题记录

Mongodb通配符索引签名和使用限制问题记录

2024年07月26日 Nosql 我要评论
学习mongodb,体会mongodb的每一个使用细节,欢迎阅读威赞的文章。这是威赞发布的第98篇mongodb技术文章,欢迎浏览本专栏威赞发布的其他文章。如果您认为我的文章对您有帮助或者解决您的问题

学习mongodb,体会mongodb的每一个使用细节,欢迎阅读威赞的文章。这是威赞发布的第98篇mongodb技术文章,欢迎浏览本专栏威赞发布的其他文章。如果您认为我的文章对您有帮助或者解决您的问题,欢迎在文章下面点个赞,或者关注威赞。谢谢。威赞文章都是结合官方文档,翻译整理而来,并对每个知识点的描述都认真思考和实践,对难以理解的地方,使用简单容易理解的方式进行阐述。

mongodb的通配符索引,为灵活的数据结构,提供了便利,但使用上有哪些限制?本文结合mongodb的官方文档,总结了mongodb通配符索引的使用和限制。

索引签名

自mongodb5.0开始,通配符索引的wildcardprojection也会被包含到索引签名当中。索引签名,是识别索引唯一性的标志,包含了构建索引的各种参数。将通配符索引的wildcardprojection包含到索引当中,用户可以建立带有相同索引键但wildcardprojection不同的索引。如为集合books创建两个通配符索引。

db.books.createindex({"$**": 1},{
    wildcardprojection: {
        "author.name": 1,
        "author.website": 1
    },
    name: "authorwildcard"
})
db.books.createindex({"$**": 1},{
    wildcardprojection: {
        "publisher.name": 1
    },
    name: "publisherwildcard"
})

查看索引

db.books.getindexes()
[
  {
    "v": 2,
    "key": {
      "_id": 1
    },
    "name": "_id_"
  },
  {
    "v": 2,
    "key": {
      "$**": 1
    },
    "name": "authorwildcard",
    "wildcardprojection": {
      "author.name": 1,
      "author.website": 1
    }
  },
  {
    "v": 2,
    "key": {
      "$**": 1
    },
    "name": "publisherwildcard",
    "wildcardprojection": {
      "publisher.name": 1
    }
  }
]

两个索引都创建成功

通配符索引限制

复合通配符索引限制 一个复合通配符索引只能包含一个通配符表达式,使用下面的表达式构建,是不可以的

{userid: 1, "object1.$**":1, "object2.$**":1}
  • 复合通配符索引当中,非通配符索引键不能使用多键索引键
  • 使用wildcardprojection选项时,构建索引的通配符只能时$**, 不能使用带有特殊路径的通配符表达式。下面的表达式是合法的
{
  key: { "$**:1"},
  name: "index_all_with_projection",
  wildcardprojection: {
    "somefields.name": 1,
    "otherfields.values": 1
  }
}

而带有字段的路径是不合法的

{
  key: { "somefields.$**:1"},
  name: "index_all_with_projection",
  wildcardprojection: {
    "somefields.name": 1,
    "otherfields.values": 1
  }
}

_id字段默认没有包含在通配符索引当中,如果用户构建的通配符索引需要包含_id字段,使用wildcardprojection指定包含_id字段。

db.studentgrades.createindex({"$**": 1}, {
    wildcardprojection: {
        "grades": 1,
        "_id": 1
    }
})

唯一索引和过期时间

添加通配符索引时,不可指定唯一索引或索引过期时间。

空间索引与哈希

不能将通配符索引与空间索引和哈希索引合并创建通配符索引。

分片数据集

不能将通配符索引用来分片键当中。

通配符索引不支持的查询

数组字段不等于空的查询不支持

如在inventory集合中,字段production_attributes上构建了通配符索引。该通配符索引不支持数组字段的空值不等查询。如下面的查询,mongodb编排查询计划时,不会使用通配符索引

db.inventory.find({$ne: ["product_attributes.tags", null]})
db.inventory.aggregate([
  {
    $match: { $ne: ["product_attributes.tags", null]}
  }
])

针对嵌入式文档和数组的精确查询

在构建通配符索引时,mongodb将嵌入式文档和数组进行解析,将解析后的基本数据类型和其对应的字段路径加入到通配符索引当中,而不是将嵌入式文档和数组放入到通配符索引的结构当中。因此通配符索引,无法支持基于嵌入式文档和数组的精确查询。如针对inventory集合的查询,mongodb在编排查询计划时,不会选择通配符索引。

db.inventory.find(
  {
    "product_attributes": {"price": 29.99}
  }
)
db.inventory.find(
  {
    "product_attributes.tags": ["waterproof", "fireproof"]
  }
)

当然,通配符索引也不能够支持到嵌入式文档和数组的不等查询。

判断字段是否存在

通配符索引是稀疏的。当通配符索引指定的字段值在文档当中不存在时,文档数据不会加入到通配符索引当中。因此通配符索引不支持带有判断字段是否存在的查询。

如通配符索引不支持下面的几个查询

db.inventory.find(
  {
    "product_attributes":  {$exists: false}
  }
)
db.inventory.aggregate([
  {
    $match:  {
      "product_attributes": { $exists: false}
    }
  }
])

多字段查询

mongodb不能使用非通配符索引来支持查询谓词的一部分而使用通配符索引来支持另一部分。

mongodb不能在同一个查询中使用多个通配符索引来支持不同的谓词。

在一个通配符索引可以支持多个查询字段的情况下,mongodb只能使用通配符索引来支持其中一个查询字段。mongodb会根据对应的通配符索引路径自动选择通配符索引支持的字段。

db.inventory.find(
  {
    "product_attributes.price": {$gt: 20},
    "product_attributes.material": "silk",
    "product_attributes.size": "large"
  }
)

mongodb通配符索引只能够支持查询条件中的一个条件。而选择哪个条件来使用通配符索引则与通配符索引的路径有关。

查看上面查询的执行计划

{
  "explainversion": "2",
  "queryplanner": {
    "namespace": "test.inventory",
    "indexfilterset": false,
    "parsedquery": {
      "$and": [
        {
          "product_attributes.material": {
            "$eq": "silk"
          }
        },
        {
          "product_attributes.size": {
            "$eq": "large"
          }
        },
        {
          "product_attributes.price": {
            "$gt": 20
          }
        }
      ]
    },
    "queryhash": "03951c4c",
    "plancachekey": "bc3202f5",
    "maxindexedorsolutionsreached": false,
    "maxindexedandsolutionsreached": false,
    "maxscanstoexplodereached": false,
    "winningplan": {
      "queryplan": {
        "stage": "fetch",
        "plannodeid": 2,
        "filter": {
          "$and": [
            {
              "product_attributes.price": {
                "$gt": 20
              }
            },
            {
              "product_attributes.size": {
                "$eq": "large"
              }
            }
          ]
        },
        "inputstage": {
          "stage": "ixscan",
          "plannodeid": 1,
          "keypattern": {
            "$_path": 1,
            "product_attributes.material": 1
          },
          "indexname": "product_attributes.$**_1",
          "ismultikey": false,
          "multikeypaths": {
            "$_path": [],
            "product_attributes.material": []
          },
          "isunique": false,
          "issparse": true,
          "ispartial": false,
          "indexversion": 2,
          "direction": "forward",
          "indexbounds": {
            "$_path": [
              "[\"product_attributes.material\", \"product_attributes.material\"]"
            ],
            "product_attributes.material": [
              "[\"silk\", \"silk\"]"
            ]
          }
        }
      },
      "slotbasedplan": {
        "slots": "$$result=s11 env: { s14 = 20, s1 = timezonedatabase(america/argentina/la_rioja...asia/ashkhabad) (timezonedb), s10 = {\"$_path\" : 1, \"product_attributes.material\" : 1}, s6 = ks(3c70726f647563745f617474726962757465732e6d6174657269616c003c73696c6b00fe04), s15 = \"large\", s3 = 1721879566202 (now), s2 = nothing (search_meta), s5 = ks(3c70726f647563745f617474726962757465732e6d6174657269616c003c73696c6b000104) }",
        "stages": "[2] filter {(traversef(s13, lambda(l1.0) { traversef(getfield(l1.0, \"price\"), lambda(l2.0) { ((l2.0 > s14) ?: false) }, false) }, false) && traversef(s13, lambda(l3.0) { traversef(getfield(l3.0, \"size\"), lambda(l4.0) { ((l4.0 == s15) ?: false) }, false) }, false))} \n[2] nlj inner [] [s4, s7, s8, s9, s10] \n    left \n        [1] cfilter {(exists(s5) && exists(s6))} \n        [1] ixseek s5 s6 s9 s4 s7 s8 [] @\"259baef3-1faf-4703-8a12-870b2c7e1f55\" @\"product_attributes.$**_1\" true \n    right \n        [2] limit 1 \n        [2] seek s4 s11 s12 s7 s8 s9 s10 [s13 = product_attributes] @\"259baef3-1faf-4703-8a12-870b2c7e1f55\" true false \n"
      }
    },
    "rejectedplans": [
      {
        "queryplan": {
          "stage": "fetch",
          "plannodeid": 2,
          "filter": {
            "$and": [
              {
                "product_attributes.material": {
                  "$eq": "silk"
                }
              },
              {
                "product_attributes.size": {
                  "$eq": "large"
                }
              }
            ]
          },
          "inputstage": {
            "stage": "ixscan",
            "plannodeid": 1,
            "keypattern": {
              "$_path": 1,
              "product_attributes.price": 1
            },
            "indexname": "product_attributes.$**_1",
            "ismultikey": false,
            "multikeypaths": {
              "$_path": [],
              "product_attributes.price": []
            },
            "isunique": false,
            "issparse": true,
            "ispartial": false,
            "indexversion": 2,
            "direction": "forward",
            "indexbounds": {
              "$_path": [
                "[\"product_attributes.price\", \"product_attributes.price\"]"
              ],
              "product_attributes.price": [
                "(20, inf.0]"
              ]
            }
          }
        },
        "slotbasedplan": {
          "slots": "$$result=s11 env: { s14 = \"silk\", s10 = {\"$_path\" : 1, \"product_attributes.price\" : 1}, s1 = timezonedatabase(america/argentina/la_rioja...asia/ashkhabad) (timezonedb), s15 = \"large\", s6 = ks(3c70726f647563745f617474726962757465732e70726963650033fffffffffffffffffe04), s3 = 1721879566202 (now), s5 = ks(3c70726f647563745f617474726962757465732e7072696365002b28fe04), s2 = nothing (search_meta) }",
          "stages": "[2] filter {(traversef(s13, lambda(l1.0) { traversef(getfield(l1.0, \"material\"), lambda(l2.0) { ((l2.0 == s14) ?: false) }, false) }, false) && traversef(s13, lambda(l3.0) { traversef(getfield(l3.0, \"size\"), lambda(l4.0) { ((l4.0 == s15) ?: false) }, false) }, false))} \n[2] nlj inner [] [s4, s7, s8, s9, s10] \n    left \n        [1] cfilter {(exists(s5) && exists(s6))} \n        [1] ixseek s5 s6 s9 s4 s7 s8 [] @\"259baef3-1faf-4703-8a12-870b2c7e1f55\" @\"product_attributes.$**_1\" true \n    right \n        [2] limit 1 \n        [2] seek s4 s11 s12 s7 s8 s9 s10 [s13 = product_attributes] @\"259baef3-1faf-4703-8a12-870b2c7e1f55\" true false \n"
        }
      },
      {
        "queryplan": {
          "stage": "fetch",
          "plannodeid": 2,
          "filter": {
            "$and": [
              {
                "product_attributes.material": {
                  "$eq": "silk"
                }
              },
              {
                "product_attributes.price": {
                  "$gt": 20
                }
              }
            ]
          },
          "inputstage": {
            "stage": "ixscan",
            "plannodeid": 1,
            "keypattern": {
              "$_path": 1,
              "product_attributes.size": 1
            },
            "indexname": "product_attributes.$**_1",
            "ismultikey": false,
            "multikeypaths": {
              "$_path": [],
              "product_attributes.size": []
            },
            "isunique": false,
            "issparse": true,
            "ispartial": false,
            "indexversion": 2,
            "direction": "forward",
            "indexbounds": {
              "$_path": [
                "[\"product_attributes.size\", \"product_attributes.size\"]"
              ],
              "product_attributes.size": [
                "[\"large\", \"large\"]"
              ]
            }
          }
        },
        "slotbasedplan": {
          "slots": "$$result=s11 env: { s14 = \"silk\", s10 = {\"$_path\" : 1, \"product_attributes.size\" : 1}, s1 = timezonedatabase(america/argentina/la_rioja...asia/ashkhabad) (timezonedb), s15 = 20, s6 = ks(3c70726f647563745f617474726962757465732e73697a65003c6c6172676500fe04), s3 = 1721879566202 (now), s5 = ks(3c70726f647563745f617474726962757465732e73697a65003c6c61726765000104), s2 = nothing (search_meta) }",
          "stages": "[2] filter {(traversef(s13, lambda(l1.0) { traversef(getfield(l1.0, \"material\"), lambda(l2.0) { ((l2.0 == s14) ?: false) }, false) }, false) && traversef(s13, lambda(l3.0) { traversef(getfield(l3.0, \"price\"), lambda(l4.0) { ((l4.0 > s15) ?: false) }, false) }, false))} \n[2] nlj inner [] [s4, s7, s8, s9, s10] \n    left \n        [1] cfilter {(exists(s5) && exists(s6))} \n        [1] ixseek s5 s6 s9 s4 s7 s8 [] @\"259baef3-1faf-4703-8a12-870b2c7e1f55\" @\"product_attributes.$**_1\" true \n    right \n        [2] limit 1 \n        [2] seek s4 s11 s12 s7 s8 s9 s10 [s13 = product_attributes] @\"259baef3-1faf-4703-8a12-870b2c7e1f55\" true false \n"
        }
      }
    ]
  },
  "command": {
    "find": "inventory",
    "filter": {
      "product_attributes.price": {
        "$gt": 20
      },
      "product_attributes.material": "silk",
      "product_attributes.size": "large"
    },
    "$db": "test"
  },
  "serverinfo": {
    "host": "test-w11",
    "port": 27017,
    "version": "7.0.4",
    "gitversion": "38f3e37057a43d2e9f41a39142681a76062d582e"
  },
  "serverparameters": {
    "internalqueryfacetbuffersizebytes": 104857600,
    "internalqueryfacetmaxoutputdocsizebytes": 104857600,
    "internallookupstageintermediatedocumentmaxsizebytes": 104857600,
    "internaldocumentsourcegroupmaxmemorybytes": 104857600,
    "internalquerymaxblockingsortmemoryusagebytes": 104857600,
    "internalqueryprohibitblockingmergeonmongos": 0,
    "internalquerymaxaddtosetbytes": 104857600,
    "internaldocumentsourcesetwindowfieldsmaxmemorybytes": 104857600,
    "internalqueryframeworkcontrol": "trysbeengine"
  },
  "ok": 1
}

查询排序

通配符查询仅支持索引覆盖查询的排序。排序字段还不能是数组。

如在集合product的product_attributes构建通配符索引

db.products.createindex({"product_attributes.$**": 1})

当price字段不是数组时,通配符索引可以支持该排序查询

db.products.find(
  {"product_attributes.price": { $gt: 10.00}} 
).sort({"product_attributes.price": 1} )

到此这篇关于mongodb通配符索引签名和使用限制的文章就介绍到这了,更多相关mongodb索引使用限制内容请搜索代码网以前的文章或继续浏览下面的相关文章希望大家以后多多支持代码网!

(0)

相关文章:

版权声明:本文内容由互联网用户贡献,该文观点仅代表作者本人。本站仅提供信息存储服务,不拥有所有权,不承担相关法律责任。 如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 2386932994@qq.com 举报,一经查实将立刻删除。

发表评论

验证码:
Copyright © 2017-2025  代码网 保留所有权利. 粤ICP备2024248653号
站长QQ:2386932994 | 联系邮箱:2386932994@qq.com