我是靠谱客的博主 温暖河马,最近开发中收集的这篇文章主要介绍Hadoop源码详解之FileOutputFormat 类,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Hadoop 源码详解之FileOutputFormat

1. 类释义

A base class for OutputFormats that read from FileSystems.
一个类从FileSystems读取 用于OutputFormats 【实在翻译不好 _

2. 类源码
3. 方法详解
3.1 setOutputPath()

Set the Path of the output directory for the map-reduce job.
map-reducejob设置输出目录。

  public static void setOutputPath(Job job, Path outputDir) {
    try {
      outputDir = outputDir.getFileSystem(job.getConfiguration()).makeQualified(
          outputDir);
    } catch (IOException e) {
        // Throw the IOException as a RuntimeException to be compatible with MR1
        throw new RuntimeException(e);
    }
    job.getConfiguration().set(FileOutputFormat.OUTDIR, outputDir.toString());
  }

可以看到的是,这里的 setOutputPath()并没有使用一个文件列表组为输出目录。而文件输入路径则可以是一个文件列表。详见 FileInputFormat类

最后

以上就是温暖河马为你收集整理的Hadoop源码详解之FileOutputFormat 类的全部内容,希望文章能够帮你解决Hadoop源码详解之FileOutputFormat 类所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(33)

评论列表共有 0 条评论

立即
投稿
返回
顶部