查找Mapper正在处理的文件的名称

时间:2013-08-29 11:15:52

标签: java hadoop mapreduce cloud

我正在学习MapReduce。我有以下代码来查找文件的名称,其块/块由mapper处理。

FileSplit fs=(FileSplit)context.getInputSplit();
String fileName=fs.getPath().getName();
System.out.println("File: " + fileName + " Path: " + fs.getPath().getName().toString());

但它没有继续下去。不知道哪里出错。请帮忙。

0 个答案:

没有答案