MongoDB 3.4rc avec 2 millions d'enregistrements
Je pense que le problème avec votre code est lié au paramètre 'query', car vous effectuez une autre requête sur une collection sans index.
MISE À JOUR (avec résultats/statistiques) :
db.runCommand( { dropDatabase: 1 } )
db.createCollection("places");
db.places.createIndex( { "locs.loc.coordinates" : "2dsphere" } )
function randInt(n) { return parseInt(Math.random()*n); }
function randFloat(n) { return Math.random()*n; }
for(var j=0; j<10; j++) {
print("Building op "+j);
var bulkop=db.places.initializeOrderedBulkOp() ;
for (var i = 0; i < 1000000; ++i) {
bulkop.insert(
{
locs: [
{
loc : {
type: "Point",
coordinates: [ randFloat(180), randFloat(90) ]
}
},
{
loc : {
coordinates: [ randFloat(180), randFloat(90) ]
}
}
]
}
)
};
print("Executing op "+j);
bulkop.execute();
}
Voici la requête :
db.runCommand(
{
geoNear: "places",
near: { type: "Point", coordinates: [ 73.9667, 40.78 ] },
spherical: true
}
)
db.runCommand(
{
geoNear: "places",
near: { type: "Point", coordinates: [ 73.9667, 40.78 ] },
spherical: true,
query: { category: "private" }
}
)
Après avoir créé l'index "catégorie" :{ locs.loc.coordinates :"2dsphere", catégorie :1 }
MISE À JOUR : en ajoutant "maxDistance", vous pouvez effectuer 396 ms vs 6863ms
db.runCommand(
{
geoNear: "places",
near: { type: "Point", coordinates: [ 73.9667, 40.78 ] },
spherical: true,
query: {category: "private"},
maxDistance: 1000000
}
)
distance max :1000000
"stats" : {
"nscanned" : NumberInt(107820),
"objectsLoaded" : NumberInt(1),
"avgDistance" : 938598.1782650856,
"maxDistance" : 938598.1782650856,
"time" : NumberInt(396)
}
sans "maxDistance":
db.runCommand(
{
geoNear: "places",
near: { type: "Point", coordinates: [ 73.9667, 40.78 ] },
spherical: true,
query: {category: "private"}
}
)
"stats" : {
"nscanned" : NumberInt(2023916),
"objectsLoaded" : NumberInt(6),
"avgDistance" : 3013587.205365039,
"maxDistance" : 4263919.742779636,
"time" : NumberInt(6863)
}
Source :https://www.mongodb .com/blog/post/geospatial-performance-improvements-in-mongodb-3-2
De plus, votre requête utilise "un tableau de coordonnées" qui me semble inutile car un objet a (généralement) 1 point de géolocalisation.
Une autre façon d'optimiser est de faire "geoWithin " puisque le tri n'est pas par "distance" (peut-être voulez-vous trier par "restaurant le plus voté"). Selon le scénario.