标签: 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());
但它没有继续下去。不知道哪里出错。请帮忙。