sql >> Database >  >> NoSQL >> MongoDB

MongoDB loopt totaal zoals aggregatie van eerdere records tot het optreden van waarde

probeer deze aggregatie

  1. $match - filter op game-ID
  2. $sort - documenten op tijdstempel bestellen
  3. $group - verzamel alles wat overeenkomt met een array
  4. $addFields - $reduce om kills te berekenen, kills te filteren en in kaart te brengen om te documenteren
  5. $unwind - platte array om de originele documentstructuur te krijgen
  6. $replaceRoot - verplaats gegevens naar het hoogste niveau zoals in de originele structuur

pijplijn

db.games.aggregate([
    {$match : {gameId : 1}},
    {$sort : {timestamp : 1}},
    {$group : {_id : "$gameId", data : {$push : "$$ROOT"}}},
    {$addFields : {data : {
        $reduce : {
            input : "$data",
            initialValue : {kills : [], data : [], count : 0},
            in : {
                count : {$sum : ["$$value.count", {$cond : [{$eq : ["$$this.type", "ENEMY_KILLED"]}, 1, 0]}]},
                data : { $concatArrays : [
                     "$$value.data", 
                     {$cond : [
                            {$ne : ["$$this.type", "ENEMY_KILLED"]}, 
                            [
                                {
                                    _id : "$$this._id",
                                    gameId : "$$this.gameId",
                                    participantId : "$$this.participantId",
                                    type : "$$this.type",
                                    timestamp : "$$this.timestamp",
                                    kills : {$sum : ["$$value.count", {$cond : [{$eq : ["$$this.type", "ENEMY_KILLED"]}, 1, 0]}]}
                                }
                            ],
                            []
                        ]}
                    ]}
                }
            }}
    }},
    {$unwind : "$data.data"},
    {$replaceRoot : {newRoot : "$data.data"}}
]).pretty()

collectie

> db.games.find()
{ "_id" : 1, "gameId" : 1, "participantId" : 3, "type" : "ITEM_PURCHASED", "timestamp" : 656664 }
{ "_id" : 2, "gameId" : 1, "participantId" : 3, "victimId" : 9, "type" : "ENEMY_KILLED", "timestamp" : 745245 }
{ "_id" : 3, "gameId" : 1, "participantId" : 3, "victimId" : 7, "type" : "ENEMY_KILLED", "timestamp" : 746223 }
{ "_id" : 4, "gameId" : 1, "participantId" : 3, "type" : "ITEM_PURCHASED", "timestamp" : 840245 }

resultaat

{
    "_id" : 1,
    "gameId" : 1,
    "participantId" : 3,
    "type" : "ITEM_PURCHASED",
    "timestamp" : 656664,
    "kills" : 0
}
{
    "_id" : 4,
    "gameId" : 1,
    "participantId" : 3,
    "type" : "ITEM_PURCHASED",
    "timestamp" : 840245,
    "kills" : 2
}
> 



  1. Hoe alle elementen van een geneste array op te halen / vinden in MongoDB Java

  2. MongoDB Multikey Compound Index - Hulp nodig bij het begrijpen van grenzen

  3. Mongodb - update gedeeltelijk aantal documenten

  4. MongoDB-shell:zoeken naar collecties die overeenkomen met een naam of regex