码迷,mamicode.com
首页 > 数据库 > 详细

mongodb 建立索引提示异常:WiredTigerIndex::insert: key too large to index, failing 1483

时间:2017-03-04 17:11:05      阅读:549      评论:0      收藏:0      [点我收藏+]

标签:creat   key   href   索引   http   ref   index   价格   www   

{
    "ok" : 0.0,
    "errmsg" : "WiredTigerIndex::insert: key too large to index, failing  1483 { : \"山东隔断|山东隔断厂家|山东隔断价格|山东活动隔断|山东酒店活动隔断|烟台活动玻璃隔断|山东活动展板|山东隔??...\" }",
    "code" : 17280
}

MongoDB will not create an index on a collection if the index entry for an existing document exceeds the index key limit (1024 bytes). You can however create a hashed index or text index instead:

db.logcollection.ensureIndex({"Module":"hashed"})

or

db.logcollection.ensureIndex({"Module":"text"})

mongodb 对字段中有超过 1024 字节的不会建立索引,但是可以使用text 索引或者hashed 索引来实现。

关于各种索引的区别请看:http://www.mongoing.com/archives/2797

 

mongodb 建立索引提示异常:WiredTigerIndex::insert: key too large to index, failing 1483

标签:creat   key   href   索引   http   ref   index   价格   www   

原文地址:http://www.cnblogs.com/timelesszhuang/p/6501847.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!