2

我有一个包含以下索引的集合。

[
    {
        "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

4

1 回答 1

3

根据 MongoDB 手册,2dsphere 索引有一些字段限制。限制如下:

2dsphere 索引字段限制 具有 2dsphere 索引的字段必须以坐标对或 GeoJSON 数据的形式保存几何数据。如果您尝试在 2dsphere 索引字段中插入包含非几何数据的文档,或在索引字段包含非几何数据的集合上构建 2dsphere 索引,则操作将失败。

要成为GeoJSON对象,对象应包含类型坐标字段,其结构如下:

{ type: "<GeoJSON type>" , coordinates: <coordinates> }

As locationis indexed as 2dsphereyour first insert query得到满足,因为它包含文档开头的对。但是在第二种情况下,文档结构违反了限制。它从一开始就需要类型坐标

根据 MongoDB 手册,这是您的插入语句情况背后的唯一合乎逻辑的原因。

于 2015-05-27T20:01:49.507 回答