gpt4 book ai didi

mongodb - monogdb "errmsg"中的错误:“WiredTigerIndex::insert:键太大无法索引,失败

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

我在 mongo 中创建索引:

db.table.createIndex({"chr" : 1, "Start" : 1, "End" : 1, "Ref" : 1, "Alt" : 1}) 

运行一段时间后报错:

error in monogdb "errmsg" : "WiredTigerIndex::insert: key too large to index, failing

如何修复此错误?

最佳答案

在MongoDB中,从2.6开始,一个索引条目的总大小必须小于1024字节。 Documentation here

换句话说,至少有一份文档在您尝试索引的字段之一中具有较大的值(value)。

一般来说,像这样索引非常大的值并不是一个好主意,因为它会创建一个大索引,与较小的索引相比效率较低,并且它会占用更多的 RAM 空间,而这些空间可以更好地用于 MongoDB 节点.

你可以使用这个:mongod --setParameter failIndexKeyTooLong=false

但这看起来不是个好主意。如果您有大量文本需要索引,您应该考虑使用全文索引,或者您可以使用散列索引。

关于mongodb - monogdb "errmsg"中的错误:“WiredTigerIndex::insert:键太大无法索引,失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43342082/

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