Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

To create MapReduce jobs you can either use the old org.apache.hadoop.mapred package or the newer org.apache.hadoop.mapreduce package for Mappers and Reducers, Jobs ... The first one had been marked as deprecated but this got reverted meanwhile. Now I wonder whether it is better to use the old mapred package or the new mapreduce package to create a job and why. Or is it just dependent on whether you need stuff like the MultipleTextOutputFormat which is only available in the old mapred package?

share|improve this question
but this got reverted meanwhile are you sure? – Thomas Jungblut Sep 29 '11 at 14:36
1  
E.g. Interface Mapper in package org.apache.hadoop.mapred.lib in r0.21.0 is not marked as deprecated while it is marked as deprecated in r0.20.2. – momo13 Sep 29 '11 at 16:02

2 Answers

up vote 13 down vote accepted

Functionality wise there is not much difference between the old the new API. The only significant difference is that records are pushed to the mapper/reducer in the old API. While the new API supports both pull/push mechanism. You can get more information about the pull mechanism here.

Also, the old API has been un-deprecated in 0.21 and will be deprecated in release 0.22 or 0.23. You can find more information about the new API here.

As you mentioned some of the classes (like MultipleTextOutputFormat) have not been migrated to the new API, due to this and the above mentioned reason it's better to stick to the old API for now.

share|improve this answer
Is there a reason why the javadocs don't mention any of this? – Casey Apr 21 '12 at 3:54
Hadoop - The Definitive Guide has most of the code in the new API. – Praveen Sripati Jul 14 '12 at 4:14
As a side note - MRUnit uses the new API, .mapreduce. So if you're using .mapred in your code, it's gonna throw errors. And you're not gonna be happy. – wmute Feb 21 at 16:51

Both the old and new APIs are good. The new API is cleaner though. Use the new API wherever you can, and use the old one wherever you need specific classes that are not present in the new API (like MultipleTextOutputFormat)

But do take care not to use a mix of the old and new APIs in the same Mapreduce job. That leads to weird problems.

share|improve this answer

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.