示例:jar类arg1 arg2 arg3
arg 1表示输入格式,arg 2表示如下输出格式:
public static void main(String[] args)
{
FileInputFormat.addInputPath(conf, new Path(args[0]));
FileOutputFormat.setOutputPath(conf, new Path(args[1]));
.
.
.
.
}
我需要发送arg3“args[2]”到map类。。。。。
public class JoinMultiMap extends MapReduceBase
implements Mapper<LongWritable, Text, Text, Text>
{
i need arg3 her
}
1条答案
按热度按时间ruoxqz4g1#
您可以使用configuration类来设置和获取自定义配置属性,如下所示:
在您的驱动程序代码中:
从Map器代码: