mozilla / jydoop

Efficient Hadoop Map-Reduce in Python
Other
31 stars 19 forks source link

request: identity reducer #45

Closed gregglind closed 11 years ago

gregglind commented 11 years ago

For ones where there is no reducer. Or is it better to just not include one?

identityreducer(k,vlist,cx): 
    for v in vlist:  
         cx.write(k,v)
mreid-moz commented 11 years ago

Yes, it's better just to omit the reducer.