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

I'm using new Hadoop API and looking for a way to pass some parameters (few strings) to mappers.
How can I do that?

This solutions works for old API: http://www.hongliangjie.com/2011/01/16/passing-parameters-and-arguments-to-mapper-and-reducer-in-hadoop/

share|improve this question

1 Answer

up vote 12 down vote accepted

In the main method set the required parameter as below or using the -D command line option while running the job.

Configuration conf = new Configuration();
conf.set("test", "123");

Job job = new Job(conf);

In the mapper/reducer get the parameter as

Configuration conf = context.getConfiguration();
String param = conf.get("test");
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.