Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am new in hadoop and i am working with a program that its map output is very large versus the size of input file.

I installed lzo library and changed the config files, but it didn't have any effect on my program. how do i compress map output? is lzo the best case?

If yes, how do i implement that in my program?

share|improve this question

1 Answer

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.

share|improve this answer
I tried that but it didn't affect my program. do i have to install lzo? – user1878364 Feb 9 at 11:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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