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.

I am new to Hadoop. I want to access a command line argument from main function(Java program) inside the map function of the mapper class. Please suggest ways to do this.

share|improve this question

2 Answers

up vote 9 down vote accepted

Hadoop 0.20, introduced new MR API, there is not much functionality difference between the new (o.a.h.mapreduce package) and old MR API (o.a.h.mapred) except that data can be pulled within the mappers and the reducers using the new API. What Arnon is mentioned is with the old API.

Check this article for passing the parameters using the new and old API.

share|improve this answer
Thank you very much for the link. It helped solve the problem. – Pooja N Babu Dec 11 '11 at 9:57
BTW, I am the author of the blog :) – Praveen Sripati Dec 11 '11 at 10:47

You can pass parameters by hanging them on the Configuration

 JobConf job = new JobConf(new Configuration(), TheJob.class);
 job.setLong("Param Name",longValue)

The Configuration class has few set methods (Long, Int, Strings etc.) so you can pass parameters of several types. In the map job you can get the configuration from the Context (getConfiguration)

share|improve this answer
2  
Is it possible to pass parameters of ArrayList type? – Nihar Sarangi Jul 19 '12 at 15:29
@NiharSarangi No that way but you can pass an array of strings using the setStrings Method described here hadoop.apache.org/docs/r0.20.2/api/org/apache/hadoop/conf/…, java.lang.String...) – Fgblanch Oct 17 '12 at 16:33

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.