mongodb 例外:BSONObj大小:-286331154(0xEEEEEEEE)无效,大小必须介于0和16793600(16 MB)之间

8yparm6h  于 2023-04-11  发布在  Go
关注(0)|答案(3)|浏览(280)

我正在尝试使用完整搜索http://docs.mongodb.org/manual/tutorial/search-for-text/

db ['Item']. runCommand ('text', {search: 'deep voice', language: 'english'})

它运行良好
但当我加上条件

db['Item'].runCommand( 'text', { search: 'deep voice' , language: 'english' , filter: {"and":[{"_extendedBy":{"in":["Voiceover"]}},{"and":[{"or":[{"removed":null},{"removed":{"\(exists":false}}]},{"category":ObjectId("51bc464ab012269e23278d55")},{"active":true},{"visible":true}]}]} } )

我收到错误

{

    "queryDebugString" : "deep|voic||||||",

    "language" : "english",

    "errmsg" : "exception: BSONObj size: -286331154 (0xEEEEEEEE) is invalid. Size must be between 0 and 16793600(16MB) First element: _extendedBy: \"Voiceover\"",
    "code" : 10334,

    "ok" : 0

}

删除“声音”一词

db['Item'].runCommand( 'text', { search: 'deep' , language: 'english' , filter: {"\)and":[{"_extendedBy":{"in":["Voiceover"]}},{"and":[{"or":[{"removed":null},{"removed":{"exists":false}}]},{"category":ObjectId("51bc464ab012269e23278d55")},{"active":true},{"visible":true}]}]} } );

接收
对请求的响应..............................................................................................................................................................................

],

"stats" : {

    "nscanned" : 87,

    "nscannedObjects" : 87,

    "n" : 18,

    "nfound" : 18,

    "timeMicros" : 1013

},

"ok" : 1

}

无法理解为什么会发生错误?
数据库不是很大“storageSize”:2793472,

> db.Item.stats()

{

    "ns" : "internetjock.Item",

    "count" : 616,

    "size" : 2035840,

    "avgObjSize" : 3304.935064935065,

    "storageSize" : 2793472,

    "numExtents" : 5,

    "nindexes" : 12,

    "lastExtentSize" : 2097152,

    "paddingFactor" : 1.0000000000001221,

    "systemFlags" : 0,

    "userFlags" : 1,

    "totalIndexSize" : 7440160,

    "indexSizes" : {

            "_id_" : 24528,

            "modlrHff22a60ae822e1e68ba919bbedcb8957d5c5d10f" : 40880,

            "modlrH6f786b134a46c37db715aa2c831cfbe1fadb9d1d" : 40880,

            "modlrI467f6180af484be29ee9258920fc4837992c825e" : 24528,

            "modlrI5cb302f507b9d0409921ac0c51f7d9fc4fd5d2ee" : 40880,

            "modlrI6393f31b5b6b4b2cd9517391dabf5db6d6dd3c28" : 8176,

            "modlrI1c5cbf0ce48258a5a39c1ac54a1c1a038ebe1027" : 32704,

            "modlrH6e623929cc3867746630bae4572b9dbe5bd3b9f7" : 40880,

            "modlrH72ea9b8456321008fd832ef9459d868800ce87cb" : 40880,

            "modlrU821e16c04f9069f8d0b705d78d8f666a007c274d" : 24528,

            "modlrT88fc09e54b17679b0028556344b50c9fe169bdb5" : 7080416,

            "modlrIefa804b72cc346d66957110e286839a3f42793ef" : 40880

    },

    "ok" : 1

}
zqry0prt

zqry0prt1#

我在mongo 3.0.0和3.1.9中遇到了同样的问题,数据库相对较小(12GB)。
在浪费了大约4个小时的时间后,我找到了使用hidden参数的解决方法

mongorestore --batchSize=10

其中,数字因数据的性质而异。从1000开始。

5anewei6

5anewei62#

第一个查询返回的结果文档显然大于16MB。MongoDB的最大文档大小为16MB。第二个查询返回的文档小于16MB,因此没有错误。
这是没有办法的。这里是文档的链接:
http://docs.mongodb.org/manual/reference/limits/

lymgl2op

lymgl2op3#

重新创建文本索引,一切正常:-)

db.Item.dropIndex('modlrT88fc09e54b17679b0028556344b50c9fe169bdb5');

db.Item.ensureIndex({'keywords':'text'},{'name':'modlrT88fc09e54b17679b0028556344b50c9fe169bdb5'})

db.Item.stats()

...

"modlrT88fc09e54b17679b0028556344b50c9fe169bdb5" : 7080416, //before

...

"modlrT88fc09e54b17679b0028556344b50c9fe169bdb5" : 2518208  //after Recreated the Text Index

相关问题