gpt4 book ai didi

mongodb - 在后台运行的 MongoDB 中创建索引失败时会发生什么

转载 作者:可可西里 更新时间:2023-11-01 09:47:29 27 4
gpt4 key购买 nike

MongoDB 中存在现有集合,需要以编程方式更新这些集合以获取新索引。因此,我的 ASP.net 应用程序中有一个管理 Web API,调用时将调用 MongoDB 中的创建索引 API。为了不在索引构建过程中造成影响,在后台执行。

根据索引定义,尚不清楚现有数据是否良好。由于 Mongo DB 将索引键大小限制为 1024,并且有可能某些现有文档中的索引字段值的总长度可能超过 1024。

所以问题是当这种情况发生时,索引构建因此而失败时会发生什么。另外,我如何以编程方式(C# 驱动程序)在稍后的时间点找到索引构建操作的状态?

最佳答案

根据MongoDB Documentation

MongoDB will not create an index on a collection if the index entry for an existing document exceeds the index key limit. Previous versions of MongoDB would create the index but not index such documents.

所以这意味着,后台或前台,索引键太长都会导致创建失败。但是,无论您如何创建索引,session issuing the create index command, will block.这意味着如果索引构建失败,在 await 执行 Indexes.CreateManyASync() 方法返回的任务时,您应该会收到异常抛出的通知。

由于您不确定数据是否会受到最大 key 长度的影响,我强烈建议您在生产前尝试在预生产环境中对此进行测试。由于生产(我假设)处于事件状态,因此预生产环境不会与数据完全匹配(写入仍在发生),这将降低在生产中发现失败的索引构建的可能性。

另外,即使能够建立索引,以后写break那个key长度也会被拒绝。这可以通过设置 failIndexKeyTooLong 来避免。服务器参数。然而,这有其自身的一组警告。具体来说,

Setting failIndexKeyTooLong to false is a temporary workaround, not a permanent solution to the problem of oversized index keys. With failIndexKeyTooLong set to false, queries can return incomplete results if they use indexes that skip over documents whose indexed fields exceed the Index Key Length Limit.

我强烈建议您在实现该特定参数之前阅读并理解这些文档。

一般来说,许多人认为在运行时建立索引是不好的做法。如果集合已经是空的,这没什么大不了的,但是对于具有大量数据的集合,这可能会导致创建命令阻塞相当长的时间。在后台创建索引时,对于繁忙的 mongod 尤其如此。

如果您在副本集或分片集群上构建此索引,我强烈建议您查看 documentation在实现内置代码之前特定于这些用例。

关于mongodb - 在后台运行的 MongoDB 中创建索引失败时会发生什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57194060/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com