我有一个包含以下索引的集合。
[
{
"v" : 1,
"key" : {
"_id" : 1
},
"name" : "_id_",
"ns" : "bs.locations"
},
{
"v" : 1,
"key" : {
"location" : "2dsphere"
},
"name" : "location_2dsphere",
"ns" : "bs.locations",
"2dsphereIndexVersion" : 2
}
]
我可以插入以下文件:
db.locations.insert({ "location" : {"coordinates" : [ 6.982654547382455, 46.88414220428685 ], "type" : "Point", "test":1.0} })
但是当我尝试插入此文档时:
db.locations.insert({ "location" : {"test":1.0, "coordinates" : [ 6.982654547382455, 46.88414220428685 ], "type" : "Point"} })
我收到以下错误:
WriteResult({
"nInserted" : 0,
"writeError" : {
"code" : 16755,
"errmsg" : "Can't extract geo keys: { _id: ObjectId('5566050507c10c31ce7214af'), location: { test: 1.0, coordinates: [ 6.982654547382455, 46.88414220428685 ], type: \"Point\" } } Point must only contain numeric elements"
}
})
我的问题是,我在这里想念什么?我的错误是什么?
我使用MongoDB版本v3.0.1
答案 0 :(得分:3)
根据MongoDB手册对2dsphere索引有一些字段限制。限制如下:
2dsphere索引字段限制字段必须包含2dsphere索引 以坐标对或GeoJSON数据的形式保存几何数据。如果 您尝试在2dsphere中插入包含非几何数据的文档 索引字段,或者在集合中构建2dsphere索引 索引字段具有非几何数据,操作将失败。
要成为GeoJSON
对象,对象应根据以下结构包含类型和坐标字段:
{ type: "<GeoJSON type>" , coordinates: <coordinates> }
当location
被索引为2dsphere
时,您的第一个插入查询会得到满足,因为它包含文档开头的对。但在第二种情况下,文档结构违反了限制。它从一开始就要求类型或坐标。
根据MongoDB手册,这是插入语句情况背后的唯一合理原因。