MapReduce程序中的万能输入FileInputFormat.addInputPath

写MapReduce过程中经常会遇到多个源路径的输入,我们可以在MapReduce程序主函数中通过FileInputFormat.addInputPaths(job,args[0])方法来实现,

args[0]可以是folder1或者folder1,folder2只要以逗号分隔就可以了。

这样在执行MR的时候,输入会将多个源路径全部多为map输入进行执行。

另外一种实现单输入的方法(只支持一个目录作为输入目录):

FileInputFormat.setInputPaths(job, new Path(args[0]));

当然FileInputFormat.addInputPaths是兼容FileInputFormat.setInputPath的,也就是说如果我调用的是多输入路径函数,但是输入数据源只有一个路径,也是能够正常执行的,所以通用起见,FileInputFormat.addInputPaths是个更好的选择。

Spark 颠覆 MapReduce 保持的排序记录 

Oracle 数据库中实现 MapReduce 

MapReduce实现矩阵乘法--实现代码

基于MapReduce的图算法 PDF 

Hadoop的HDFS和MapReduce 

MapReduce 计数器简介

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/8a35a2d265ce32eb60c367ef6a4549c8.html