Is there any thing similar to Combiner (as in Hadoop Map Reduce) in Mongo DB's map reduce framework. We're trying out the map reduce framework in Mongo DB cluster, and there are several rows for a key which could potentially be combined before being sent for reduce phase.
1 billion records which I'm going to map-reduce
Each record is 100 bytes
100 records with same key (map) on each node
Wouldn't network b/w be a bottle neck for such operation? I understand this would result in lots of emits, which could be avoided if there's a mini reducer (say combiner) phase on each node, or is my understanding incorrect?
Is there any thing close to Combiner phase of Hadoop Map reduce, or if not, is there anything similar planned for later releases?