复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29import org.apache.hadoop.fs.Path; import org.apache.hadoop.io.LongWritable; import org.apache.hadoop.io.Text; import org.apache.hadoop.mapreduce.MRJobConfig; import org.apache.hadoop.mapreduce.Mapper; import org.apache.hadoop.mapreduce.lib.input.FileSplit; public class MergeDaysMapper extends Mapper<LongWritable, Text, Text, Text> { private String inputFile = null; public void setup(Context context) { System.err.println("[STARTS TO GET PARAMETERS OF THIS JOB]"); Path input = ((FileSplit)context.getInputSplit()).getPath(); inputFile = input.toString(); System.err.println("Input: "+ input.toString()); System.out.println("Input: "+ input.getName()); System.out.println("MAP_INPUT_FILE: " + MRJobConfig.MAP_INPUT_FILE); System.out.println("MAP_INPUT_PATH:"+ MRJobConfig.MAP_INPUT_PATH); System.out.println("MAP_INPUT_START:"+ MRJobConfig.MAP_INPUT_START); System.err.println("JOB_NAME" + MRJobConfig.JOB_NAME); System.out.println("[FINISHED GETTING PARAMETERS OF THIS JOB]"); } public void map(LongWritable key, Text value, Context context) throws IOException, InterruptedException { if (null == inputFile) context.write(new Text("key"), new Text("inputFile")); else context.write(new Text("key"), new Text(inputFile)); } }
最后
以上就是不安书本最近收集整理的关于mr中获取输入文件路径的全部内容,更多相关mr中获取输入文件路径内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复