MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Come posso ottenere i primi n bucket per un'aggregazione e tutti gli altri bucket combinati in un altro bucket?

Quello che vuoi si chiama ponderazione . Per farlo devi aggiungere un peso ai tuoi documenti tramite $project mentendoli e utilizzando $cond operatore, quindi ordinali per "peso" in ordine crescente e per "quantità di acquisto" in ordine decrescente.

db.collection.aggregate([
    { "$project": { 
        "purchasequantity": 1, 
        "w": { 
            "$cond": [ { "$eq": [ "$_id", "others" ] }, 1, 0 ] 
        } 
    }}, 
    { "$sort": { "w": 1, "purchasequantity": -1 } } 
])

Che restituisce:

{ "_id" : "customer100", "purchasequantity" : 4000000, "w" : 0 }
{ "_id" : "customer5", "purchasequantity" : 81800, "w" : 0 }
{ "_id" : "customer4", "purchasequantity" : 40900, "w" : 0 }
{ "_id" : "customer3", "purchasequantity" : 440, "w" : 0 }
{ "_id" : "customer1", "purchasequantity" : 300, "w" : 0 }
{ "_id" : "others", "purchasequantity" : 29999, "w" : 1 }