例外:geoNear命令失败:errmsg:多个2d索引

时间:2019-04-26 21:58:30

标签: javascript mongodb mongoose geometry aggregation-framework

我正在尝试按距离从集合中检索文档。我尝试使用$geoNear聚合,但是遇到错误(使用node.js和postman)或返回0条记录。

示例文档:

{
    "_id" : ObjectId("5cc37692fe9fd54b3cd136c9"),
    "category" : "art",
    "description" : "an eastbound description for The soda event.",
    "geometry" : {
        "type" : "Point",
        "coordinates" : [ 
            3.60178480057443, 
            6.46123057784917
        ]
    }
    "__v" : 0
}
.
.

型号:

const GeoSchema = new Schema({
  type: {
    type: String,
    default: "Point"
  },
  coordinates: {
    type: [Number],
    index: "2dsphere"
  }
}, { _id: false });

const EventSchema = new Schema({
  category: String,
  description: String,
  geometry: GeoSchema,
});

查询

db.events.aggregate([
   {
     $geoNear: {
        near: { type: "Point", coordinates: [3.60178480057443, 6.46123057784917] },
        distanceField: "dist",
        maxDistance: 90000,
        spherical: true
     }
   }
]);

运行上面的查询返回零结果,一个空数组(邮递员上),有时显示此错误:

{
    "name": "MongoError",
    "errmsg": "exception: geoNear command failed: { ok: 0.0, errmsg: \"more than one 2d index, not sure which to run geoNear on\" }",
    "code": 16604,
    "ok": 0
}

显示此错误时,我运行db.events.dropIndex函数。我复制并粘贴了文档中使用的示例,并且效果很好。请如何使此$ geoNear函数起作用。我整天都在努力。

1 个答案:

答案 0 :(得分:1)

单个集合不能包含多个2dsphere索引,并且您已经通过运行以下命令在多个字段上创建了2dsphere索引。

db.getCollection('test').createIndex({ "loc": "2dsphere" }) 

因此删除索引之一,它将开始工作。您可以使用

查看索引列表
db.getCollection('test').getIndexes()

更新

如果集合中有多个key索引,则可以使用$geoNear参数指定要在哪个字段上进行搜索