exemple : jar class arg1 arg2 arg3
arg 1 for input format , arg 2 for output format like this :
public static void main(String[] args)
{
FileInputFormat.addInputPath(conf, new Path(args[0]));
FileOutputFormat.setOutputPath(conf, new Path(args[1]));
.
.
.
.
}
i need to send arg3 "args[2]" to map class .....
public class JoinMultiMap extends MapReduceBase
implements Mapper<LongWritable, Text, Text, Text>
{
i need arg3 her
}