To compress the intermediate output (your map output), you need to set the following properties in your mapred-site.xml:
<property>
<name>mapred.compress.map.output</name>
<value>true</value>
</property>
<property>
<name>mapred.map.output.compression.codec</name>
<value>org.apache.hadoop.io.compress.LzoCodec</value>
</property>
If you want to do it on a job per job basis, you could also directly implement that in your code in 1 of the following ways:
conf.set("mapred.compress.map.output", "true")
conf.set("mapred.map.output.compression.codec", "org.apache.hadoop.io.compress.LzoCodec");
or
jobConf.setMapOutputCompressorClass(LzoCodec.class);
Also it's worth mentioning that the property mapred.output.compression.type should be left to the default of RECORD, because BLOCK compression for intermediate output causes bad performance.
When choosing what type of compression to use, I think you need to consider 2 aspects:
- Compression ratio: how much compression actually occurs. The higher the %, the better the compression.
- IO performance: since compression is an IO intensive operation, different methods of compression have different performance implication.
The goal is to balance compression ratio and IO performance, you can have a compression codec with very high compression ratio but poor IO performance.
It's really hard to tell you which one you should use and which one you should not, it also depends on your data, so you should try a few ones and see what makes more sense. In my experience, Snappy and LZO are the most efficient ones. Recently I heard about LZF which sounds like a good candidate too. I found a post proposing a benchmark of compressions here, but I would definitely advise to not take that for ground truth and do your own benchmark.