如何获得所有令牌字的文件名在hadoop WordCount应用程序



在hadoop的WordCount任务中,如何获取令牌单词的文件名并在上下文中使用它。写(新测试(文件名),1)?

文件名可以在Mapper类中使用下面的代码片段进行检索。

FileSplit fileSplit = (FileSplit)context.getInputSplit();
String filename = fileSplit.getPath().getName();

相关内容

  • 没有找到相关文章

最新更新