Я провел день в документах mongo / mongoose и переполнении стека и, похоже, не могу понять этого.
Вот мои основные настройки схемы:
const mongoose = require('mongoose');
const config = require('./config/config');
const db = mongoose.createConnection(config.uri, { autoIndex: false });
const storeSchema = mongoose.Schema({
name: String,
location: { type:[Number], index:'2dsphere', required:true },
});
const Store = db.model('Store', storeSchema);
Я также пробовал:
const storeSchema = mongoose.Schema({
name: String,
location: { type: { type: String }, coordinates: [Number] },
});
storeSchema.index({ location: "2dsphere" });
Я установил для autoIndex значение false при createConnection, поскольку Mongoose автоматически вызывает createIndex при запуске приложения, а для запроса $ geoNear требуется, чтобы был только один индекс. Я подумал, что, возможно, Mongoose создает дубликат индекса, но это не решило проблему.
Я создаю запись магазина следующим образом (упрощенно):
const coordinates = { lng: -122.0266515, lat: 36.9743292 }
Store.create({
name: "My Store",
location: [coordinates.lng, coordinates.lat],
})
Это мой запрос, который возвращает ошибку:
const location = { longitude: -122.026423, latitude: 36.974538 }
// above coordinates are near the 'My Store' record's coordinates.
const point = {
type: "Point",
coordinates: [location.longitude, location.latitude]
}
Store.aggregate([{
$geoNear: {
near: point,
distanceField: "dist.calculated",
maxDistance: 100000,
spherical: true
}
}
])
.then((results) => console.log(results))
.catch((error) => console.log(error));
А вот ошибка "нет географических индексов для geoNear" , которую я получаю:
{ MongoError: geoNear command failed: { ok: 0.0, errmsg: "no geo indices
for geoNear", operationTime: Timestamp(1529989103, 8), $clusterTime: {
clusterTime: Timestamp(1529989103, 8), signature: { hash: BinData(0,
0000000000000000000000000000000000000000), keyId: 0 } } }
at queryCallback (/Users/`...`/node_modules/mongodb-
core/lib/cursor.js:244:25)
at /Users/`...`/node_modules/mongodb-
core/lib/connection/pool.js:544:18
at process._tickCallback (internal/process/next_tick.js:150:11)
name: 'MongoError',
message: 'geoNear command failed: { ok: 0.0, errmsg: "no geo indices for
geoNear", operationTime: Timestamp(1529989103, 8), $clusterTime: {
clusterTime: Timestamp(1529989103, 8), signature: { hash: BinData(0,
0000000000000000000000000000000000000000), keyId: 0 } } }',
operationTime: Timestamp { _bsontype: 'Timestamp', low_: 8, high_:
1529989103 },
ok: 0,
errmsg: 'geoNear command failed: { ok: 0.0, errmsg: "no geo indices for
geoNear", operationTime: Timestamp(1529989103, 8), $clusterTime: {
clusterTime: Timestamp(1529989103, 8), signature: { hash: BinData(0,
0000000000000000000000000000000000000000), keyId: 0 } } }',
code: 16604,
codeName: 'Location16604',
'$clusterTime':
{ clusterTime: Timestamp { _bsontype: 'Timestamp', low_: 8, high_:
1529989103 },
`enter code here`signature: { hash: [Binary], keyId: [Long] } } }
Когда я console.log storeSchema.index () ._ indexes , я получаю следующее:
[ [ { location: '2dsphere' }, {} ], [ {}, {} ] ]
... так что индекс, кажется, там.
Я также пытался вызвать sureIndexes перед выполнением моего запроса после просмотра следующего диалога по переполнению стека .
Store.ensureIndexes({location: '2dsphere'})