I am trying to get a simple map reduce working in MongoVUE, but it doesn't return any results, I just want to get it to output the count of each userID just so I can have a working example to build from.

function Map() {
emit( this.UpdatedBy.UserId, {"count": 1} );
}

function Reduce(key, values) {

var result = {count: 0};
  values.forEach(function(value) {
  result.count += value.count;
});
return result;
}

function Finalize(key, reduced) {
/*  
reduced = Transform-to-Desired-Form(reduced);
*/
return reduced;
}

And the output is set to inline.

This is the tutorial I am working from, but I just want to apply a simple count to start off with http://www.mongovue.com/2010/11/03/yet-another-mongodb-map-reduce-tutorial/

link|improve this question

did you check this on mongodb shell? – RameshVel Feb 15 at 6:15
feedback

2 Answers

up vote 0 down vote accepted
function() {
    emit( this.UpdatedBy.UserId, 1 );
  };


  function(key, values) {
    var result =  0;

    values.forEach(function(value) {
      result += value;
    });
    return result;
  };

Here is how I got it to work for anyone who needs a simple example on how to group and count a user Id.

link|improve this answer
feedback

I just wrote a blog post and made two short screencasts showing exactly how to get an example MapReduce working in MongoVue

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.