How to write 'map only' hadoop jobs?

Breakinen picture Breakinen · Feb 22, 2012 · Viewed 32.1k times · Source

I'm a novice on hadoop, I'm getting familiar to the style of map-reduce programing but now I faced a problem : Sometimes I need only map for a job and I only need the map result directly as output, which means reduce phase is not needed here, how can I achive that?

Answer