sql >> Database >  >> NoSQL >> MongoDB

MongoDB-aggregatie $ berekende velden verdelen

Je hebt het bijna. De enige wijziging die nodig is, is dat u de FailPercent . moet berekenen in een extra project fase, omdat het totaal pas beschikbaar is na voltooiing van de group fase. Probeer dit:

db.foo.aggregate([    
    { $match: { "data.buildResult" : { $ne : null } } },
    { $group: {          
        _id: {              
            month: { $month: "$time" },             
            day: { $dayOfMonth: "$time" },             
            year: { $year: "$time" },                       
        },         
        Aborted: { $sum: { $cond :  [{ $eq : ["$data.buildResult", "ABORTED"]}, 1, 0]} },
        Failure: { $sum: { $cond :  [{ $eq : ["$data.buildResult", "FAILURE"]}, 1, 0]} },
        Unstable: { $sum: { $cond : [{ $eq : ["$data.buildResult", "UNSTABLE"]}, 1, 0]} },
        Success: { $sum: { $cond :  [{ $eq : ["$data.buildResult", "SUCCESS"]}, 1, 0]} },
        Total: { $sum: 1 }
    } }, 
    {$project:{Aborted:1, Failure:1, Unstable:1, Success:1, Total:1, FailPercent: { $divide: [ "$Failure", "$Total" ]}}},
    { $sort: { "_id.year": 1, "_id.month": 1, "_id.day": 1 } } 
])



  1. Fout:gegevens en zoutargumenten vereist

  2. NoSQL-trends - MongoDB, Cassandra, CouchDB en Riak

  3. Node.JS object prototype mag alleen een Object of null zijn met Redis

  4. DataFrame naar RDD [(String, String)] conversie