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

MapReducer aggregering baseret på attributter indeholdt uden for dokumentet

Jeg gjorde dette ved at pakke MapReduce ind i noget gemt javascript.

function (query) {

  var one = db.people.findOne(query);
  var activity_ids = [];
  for (var k in one.activities){
    activity_ids.push(parseInt(k));
  }

  var activity_location_map = {};
  db.activities.find({id : {$in : activity_ids}}).forEach(function(a){
    activity_location_map[a.id] = a.location;
  });


  return db.people.mapReduce(
    function map(){
      for (var k in this.activities){
        emit({location : activity_location_map[k]} , { total: this.activities[k] });
        emit({location: activity_location_map[k]} , { total: this.activities[k] });
      }
    },
    function reduce(key, values){
      var reduced = {total: 0};
      values.forEach(function(value){
        reduced.total += value.total;
      });

      return reduced;
    },
    {out : {inline: true}, scope : { activity_location_map : activity_location_map }}
  ).results;
}

Irriterende og rodet, men det virker, og jeg kan ikke tænke mig bedre.




  1. 2 dokumenter smelter sammen i MongoDB

  2. mongoose:Sådan indsætter du et enkelt underdokument - ikke et array

  3. søger database med mongoose api og nodejs?

  4. Redis - Opret forbindelse til fjernserver