gpt4 book ai didi

node.js - MongoDB 由于键太大而无法建立索引而失败

转载 作者:太空宇宙 更新时间:2023-11-03 23:02:25 25 4
gpt4 key购买 nike

我一直在尝试保存 MongoDB 文档,但收到一个奇怪的错误,涉及键太大而无法建立索引。我在下面提供了一个功能文档的示例,以及一个会产生错误的示例:

功能性:

{ uniquenumber: 'Valid Until Addition of Restrictions',
name: 'Valid Until Addition of Restrictions'
fieldofstudy: 'Valid Until Addition of Restrictions',
section: 'Valid Until Addition of Restrictions',
restrictions:
{ 'Must be assigned one of the following Student Attributes':
[ 'Non-Res. In-State',
'Non-Res. Out-of-State',
'DE Student Non-Res Out-of-St',
'Resident In-State',
'Res. Out-of-State' ],
'Must be enrolled in one of the following Levels': [ 'Graduate' ] },
times: [],
professors: [ 'Jo Blo' ] }

非功能性:

{
"uniquenumber": "Valid Until Addition of Restrictions",
"name": "Valid Until Addition of Restrictions",
"fieldofstudy": "Valid Until Addition of Restrictions",
"section": 'Valid Until Addition of Restrictions',
"restrictions": {
"May not be enrolled in one of the following Programs": ["MA [LA] Non-thesis option", "MS [AG] Non-thesis option", "MS [AR] Non-thesis option", "MS [BA] Non-thesis option", "MS [COFD] Non-thesis option", "MS [ED] Non-thesis option", "MS [EN] Non-thesis option", "MS [GE] Non-thesis option", "MS [LA] Non-thesis option", "MS [SC] Non-thesis option", "MS [VM] Non-thesis option", "MS NTO (Special Programs)", "MUP [AR] Non-thesis option"],
"Must be enrolled in one of the following Levels": ["Graduate"],
"May not be enrolled in one of the following Degrees": ["Master of Agribusiness", "Master of Agriculture", "Master of Architecture", "Master of Business Admin.", "Master of Computer Science", "Master of Education", "Master of Engineering", "Master of Land Econ & Real Est", "Master of Geoscience", "Master of Landscape Arch.", "Master of Public Administratn", "Master of Public Health", "Master of Public Svc & Admin"],
"May not be enrolled in one of the following Colleges": ["English Language Institute"],
"Must be assigned one of the following Student Attributes": ["Non-Res. In-State", "Non-Res. Out-of-State", "DE Student Non-Res Out-of-St", "Resident In-State", "Res. Out-of-State"],
"Must be enrolled in one of the following Classifications": ["G7-Graduate, Master's Level", "G8-Graduate, Doctoral Level", "G9-Graduate, Mas/Doc Admitted"]
},
"times": [],
"professors": []
}

在创建 restrictions 对象之前,抓取工具一直按预期运行,因此我相信错误可以缩小到那里。但是,我不清楚哪里有任何键“太大”而无法建立索引。如果我的猜测是正确的,为什么 Mongo 将其算作 key ?我该如何补救这种情况?

编辑:对db.Section.getIndexes();的响应如下所示:

[
{
"v" : 2,
"key" : {
"_id" : 1
},
"name" : "_id_",
"ns" : "database.Section"
},
{
"v" : 2,
"unique" : true,
"key" : {
"uniquenumber" : 1
},
"name" : "uniquenumber_1",
"ns" : "database.Section",
"background" : true
},
{
"v" : 2,
"key" : {
"name" : 1
},
"name" : "name_1",
"ns" : "database.Section",
"background" : true
},
{
"v" : 2,
"key" : {
"fieldofstudy" : 1
},
"name" : "fieldofstudy_1",
"ns" : "database.Section",
"background" : true
},
{
"v" : 2,
"key" : {
"course" : 1
},
"name" : "course_1",
"ns" : "database.Section",
"background" : true
},
{
"v" : 2,
"key" : {
"section" : 1
},
"name" : "section_1",
"ns" : "database.Section",
"background" : true
},
{
"v" : 2,
"key" : {
"professors" : 1
},
"name" : "professors_1",
"ns" : "database.Section",
"background" : true
},
{
"v" : 2,
"key" : {
"times" : 1
},
"name" : "times_1",
"ns" : "database.Section",
"background" : true
},
{
"v" : 2,
"key" : {
"restrictions" : 1
},
"name" : "restrictions_1",
"ns" : "database.Section",
"background" : true
}
]

最佳答案

您有一个关于限制的索引,根据您的数据,该索引完全无用,而且会非常大,因为它是一个子文档。

您可能想从集合中删除该索引:

db.Section.dropIndex({restrictions: 1});

关于node.js - MongoDB 由于键太大而无法建立索引而失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44358347/

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