转载自 http://my.oschina.net/leejun2005/blog/94706

最近考虑到这样一个需求:

需要把原始的日志文件用hadoop做清洗后,按业务线输出到不同的目录下去,以供不同的部门业务线使用。

这个需求需要用到MultipleOutputFormat和MultipleOutputs来实现自定义多目录、文件的输出。

需要注意的是,在hadoop 0.21.x之前和之后的使用方式是不一样的:

hadoop 0.21 之前的API 中有 org.apache.hadoop.mapred.lib.MultipleOutputFormat 和 org.apache.hadoop.mapred.lib.MultipleOutputs,而到了 0.21 之后 的API为 org.apache.hadoop.mapreduce.lib.output.MultipleOutputs ,

新版的API 整合了上面旧API两个的功能,没有了MultipleOutputFormat。

本文将给出新旧两个版本的API code。

1、旧版0.21.x之前的版本:

view sourceprint?
01 import java.io.IOException;
02  
03 import org.apache.hadoop.conf.Configuration;
04 import org.apache.hadoop.conf.Configured;
05 import org.apache.hadoop.fs.Path;
06 import org.apache.hadoop.io.LongWritable;
07 import org.apache.hadoop.io.NullWritable;
08 import org.apache.hadoop.io.Text;
09 import org.apache.hadoop.mapred.FileInputFormat;
10 import org.apache.hadoop.mapred.FileOutputFormat;
11 import org.apache.hadoop.mapred.JobClient;
12 import org.apache.hadoop.mapred.JobConf;
13 import org.apache.hadoop.mapred.MapReduceBase;
14 import org.apache.hadoop.mapred.Mapper;
15 import org.apache.hadoop.mapred.OutputCollector;
16 import org.apache.hadoop.mapred.Reporter;
17 import org.apache.hadoop.mapred.TextInputFormat;
18 import org.apache.hadoop.mapred.lib.MultipleTextOutputFormat;
19 import org.apache.hadoop.util.Tool;
20 import org.apache.hadoop.util.ToolRunner;
21  
22 public class MultiFile extends Configured implements Tool {
23  
24     public static class MapClass extends MapReduceBase implements
25             Mapper<LongWritable, Text, NullWritable, Text> {
26  
27         @Override
28         public void map(LongWritable key, Text value,
29                 OutputCollector<NullWritable, Text> output, Reporter reporter)
30                 throws IOException {
31             output.collect(NullWritable.get(), value);
32         }
33  
34     }
35  
36     // MultipleTextOutputFormat 继承自MultipleOutputFormat,实现输出文件的分类
37  
38     public static class PartitionByCountryMTOF extends
39             MultipleTextOutputFormat<NullWritable, Text> { // key is
40                                                             // NullWritable,
41                                                             // value is Text
42         protected String generateFileNameForKeyValue(NullWritable key,
43                 Text value, String filename) {
44             String[] arr = value.toString().split(",", -1);
45             String country = arr[4].substring(1, 3); // 获取country的名称
46             return country + "/" + filename;
47         }
48     }
49  
50     // 此处不使用reducer
51     /*
52      * public static class Reducer extends MapReduceBase implements
53      * org.apache.hadoop.mapred.Reducer<LongWritable, Text, NullWritable, Text>
54      * {
55      *
56      * @Override public void reduce(LongWritable key, Iterator<Text> values,
57      * OutputCollector<NullWritable, Text> output, Reporter reporter) throws
58      * IOException { // TODO Auto-generated method stub
59      *
60      * }
61      *
62      * }
63      */
64     @Override
65     public int run(String[] args) throws Exception {
66         Configuration conf = getConf();
67         JobConf job = new JobConf(conf, MultiFile.class);
68  
69         Path in = new Path(args[0]);
70         Path out = new Path(args[1]);
71  
72         FileInputFormat.setInputPaths(job, in);
73         FileOutputFormat.setOutputPath(job, out);
74  
75         job.setJobName("MultiFile");
76         job.setMapperClass(MapClass.class);
77         job.setInputFormat(TextInputFormat.class);
78         job.setOutputFormat(PartitionByCountryMTOF.class);
79         job.setOutputKeyClass(NullWritable.class);
80         job.setOutputValueClass(Text.class);
81  
82         job.setNumReduceTasks(0);
83         JobClient.runJob(job);
84         return 0;
85     }
86  
87     public static void main(String[] args) throws Exception {
88         int res = ToolRunner.run(new Configuration(), new MultiFile(), args);
89         System.exit(res);
90     }
91  
92 }

测试数据及结果:

view sourceprint?
1 hadoop fs -cat /tmp/multiTest.txt
2 5765303,1998,14046,1996,"AD","",,1,12,42,5,59,11,1,0.4545,0,0,1,67.3636,,,,
3 5785566,1998,14088,1996,"AD","",,1,9,441,6,69,3,0,1,,0.6667,,4.3333,,,,
4 5894770,1999,14354,1997,"AD","",,1,,82,5,51,4,0,1,,0.625,,7.5,,,,
5 5765303,1998,14046,1996,"CN","",,1,12,42,5,59,11,1,0.4545,0,0,1,67.3636,,,,
6 5785566,1998,14088,1996,"CN","",,1,9,441,6,69,3,0,1,,0.6667,,4.3333,,,,
7 5894770,1999,14354,1997,"CN","",,1,,82,5,51,4,0,1,,0.625,,7.5,,,,

from:

MultipleOutputFormat Example

http://mazd1002.blog.163.com/blog/static/665749652011102553947492/

2、新版0.21.x及之后的版本:

view sourceprint?
01 public class TestwithMultipleOutputs extends Configured implements Tool {
02  
03   public static class MapClass extends Mapper<LongWritable,Text,Text,IntWritable> {
04  
05     private MultipleOutputs<Text,IntWritable> mos;
06  
07     protected void setup(Context context) throws IOException,InterruptedException {
08       mos = new MultipleOutputs<Text,IntWritable>(context);
09     }
10  
11     public void map(LongWritable key, Text value, Context context) throws IOException, InterruptedException{
12       String line = value.toString();
13       String[] tokens = line.split("-");
14  
15       mos.write("MOSInt",new Text(tokens[0]), new IntWritable(Integer.parseInt(tokens[1])));  //(第一处)
16       mos.write("MOSText", new Text(tokens[0]),tokens[2]);     //(第二处)
17       mos.write("MOSText", new Text(tokens[0]),line,tokens[0]+"/");  //(第三处)同时也可写到指定的文件或文件夹中
18     }
19  
20     protected void cleanup(Context context) throws IOException,InterruptedException {
21       mos.close();
22     }
23  
24   }
25   public int run(String[] args) throws Exception {
26  
27     Configuration conf = getConf();
28  
29     Job job = new Job(conf,"word count with MultipleOutputs");
30  
31     job.setJarByClass(TestwithMultipleOutputs.class);
32  
33     Path in = new Path(args[0]);
34     Path out = new Path(args[1]);
35  
36     FileInputFormat.setInputPaths(job, in);
37     FileOutputFormat.setOutputPath(job, out);
38  
39     job.setMapperClass(MapClass.class);
40     job.setNumReduceTasks(0);  
41  
42     MultipleOutputs.addNamedOutput(job,"MOSInt",TextOutputFormat.class,Text.class,IntWritable.class);
43     MultipleOutputs.addNamedOutput(job,"MOSText",TextOutputFormat.class,Text.class,Text.class);
44  
45     System.exit(job.waitForCompletion(true)?0:1);
46     return 0;
47   }
48  
49   public static void main(String[] args) throws Exception {
50  
51     int res = ToolRunner.run(new Configuration(), new TestwithMultipleOutputs(), args);
52     System.exit(res);
53   }
54  
55 }

测试的数据:

abc-1232-hdf
abc-123-rtd
ioj-234-grjth
ntg-653-sdgfvd
kju-876-btyun
bhm-530-bhyt
hfter-45642-bhgf
bgrfg-8956-fmgh
jnhdf-8734-adfbgf
ntg-68763-nfhsdf
ntg-98634-dehuy
hfter-84567-drhuk

结果截图:(结果输出到/test/testMOSout)

PS:遇到的一个问题:

  如果没有mos.close(), 程序运行中会出现异常:

  12/05/21 20:12:47 WARN hdfs.DFSClient: DataStreamer Exception:

  org.apache.hadoop.ipc.RemoteException:org.apache.hadoop.hdfs.server.namenode.LeaseExpiredException: No lease on
  /test/mosreduce/_temporary/_attempt_local_0001_r_000000_0/h-r-00000 File does not exist. [Lease. Holder: DFSClient_-352105532, pendingcreates: 5]

from:

MultipleOutputFormat和MultipleOutputs

http://www.cnblogs.com/liangzh/archive/2012/05/22/2512264.html

Hadoop利用Partitioner对输出文件分类(改写partition,路由到指定的文件中)

http://superlxw1234.iteye.com/blog/1495465

http://ghost-face.iteye.com/blog/1869926

更多参考&推荐阅读:

1、【Hadoop】利用MultipleOutputs,MultiOutputFormat实现以不同格式输出到多个文件

http://www.cnblogs.com/iDonal/archive/2012/08/07/2626588.html

2、cdh3u3 hadoop 0.20.2 MultipleOutputs 多输出文件初探

http://my.oschina.net/wangjiankui/blog/49521

3、使用MultipleOutputs

http://blog.163.com/ecy_fu/blog/static/444512620101274344951/

4、Hadoop reduce多个输出

http://blog.csdn.net/inte_sleeper/article/details/7042020

5、Hadoop 0.20.2中怎么使用MultipleOutputFormat实现多文件输出和完全自定义文件名

http://www.cnblogs.com/flying5/archive/2011/05/04/2078407.html

6、Hadoop OutputFormat浅析

http://zhb-mccoy.iteye.com/blog/1591635

7、others:

https://sites.google.com/site/hadoopandhive/home/how-to-write-output-to-multiple-named-files-in-hadoop-using-multipletextoutputformat
https://issues.apache.org/jira/browse/HADOOP-3149
http://grokbase.com/t/hadoop/common-user/112ewx7s15/could-i-write-outputs-in-multiple-directories

8、MultipleOutputs 官方范例

http://hadoop.apache.org/docs/stable/api/org/apache/hadoop/mapreduce/lib/output/MultipleOutputs.html

9、多数据源输入:MultipleInputs

http://stackoverflow.com/questions/17456369/mapreduce-job-with-mixed-data-sources-hbase-table-and-hdfs-files

https://groups.google.com/forum/#!topic/nosql-databases/SH61smOV-mo

http://bigdataprocessing.wordpress.com/2012/07/27/hadoop-hbase-mapreduce-examples/

http://hbase.apache.org/book/mapreduce.example.html

MapReduce中的自定义多目录/文件名输出HDFS相关推荐

  1. MapReduce中的自定义多目录/文件名输出转

    最近考虑到这样一个需求: 需要把原始的日志文件用hadoop做清洗后,按业务线输出到不同的目录下去,以供不同的部门业务线使用. 这个需求需要用到MultipleOutputFormat和Multipl ...

  2. mapreduce中设置自定义的输入类,进行文本解析(默认以tab键为分隔符)

    job.setInputFormatClass(KeyValueTextInputFormat.class);//此时map端输入的键的内容为第一个tab键以左的内容,值得内容为第一个tab键以右的内 ...

  3. 在Module中使用自定义过滤器,来统一对站内所有请求响应的输出内容进行采集或更改。...

    因项目需要,对每一个访问网站的请求要做原始数据记录,其中要包括几个要素: 1.客户端的IP 2.客户端请求的页面路径 3.客户端发出的请求头 4.服务器返回的正文内容. 在代码设计前分析了一下,前三个 ...

  4. Python提取文件夹中的所有文件名输出到excel

    Python提取文件夹中的所有文件名输出到excel import os import openpyxldef getfilelist(dir,file_out,sheet_out):filelist ...

  5. 如何在 Word 中使用自定义样式生成文章目录

    如何在 Word 中使用自定义样式生成文章目录 概要 本文介绍如何在 Microsoft Word 2002 和 Microsoft Office Word 2003 中使用自定义样式创建目录.在 W ...

  6. MapReduce中加强内容

    课程大纲(MAPREDUCE详解) MapReduce快速入门 如何理解map.reduce计算模型 Mapreudce程序运行演示 Mapreduce编程规范及示例编写 Mapreduce程序运行模 ...

  7. mapreduce工作流程_详解MapReduce中的五大编程模型

    前言 我们上一节讲了关于 MapReduce 中的应用场景和架构分析,最后还使用了一个CountWord的Demo来进行演示,关于MapReduce的具体操作.如果还不了解的朋友可以看看上篇文章:[初 ...

  8. python显示目录中的文件_Python中的文件和目录操作实现

    Python中的文件和目录操作实现 对于文件和目录的处理,虽然可以通过操作系统命令来完成,但是Python语言为了便于开发人员以编程的方式处理相关工作,提供了许多处理文件和目录的内置函数.重要的是,这 ...

  9. 绒毛动物探测器:通过TensorFlow.js中的迁移学习识别浏览器中的自定义对象

    目录 起点 MobileNet v1体系结构上的迁移学习 修改模型 训练新模式 运行物体识别 终点线 下一步是什么?我们可以检测到脸部吗? 下载TensorFlowJS-Examples-master ...

最新文章

  1. activity 的属性android:taskAffinity和android:allowTaskReparenting
  2. poj1419(最大独立集)
  3. 安卓的自定义的DemoApplication 出现的问题。
  4. 【渝粤题库】国家开放大学2021春2227物业设备设施管理题目
  5. 打钱!我的数据库被黑客勒索了!
  6. java jdk运行_java运行机制、Jdk版本及Java环境变量
  7. A* 寻路算法,matplotlib地图生成
  8. 127.0.0.1 zxt.php_windows 10 下docker布置nginx+php环境,用宿主WEB目录负载均衡
  9. 关于文件、文件夹加密隐藏原理的一点想法
  10. excel同时冻结首行和首列怎么操作
  11. 查询ISBN号验证ISBN号调用api接口查询书籍信息
  12. 什么是多边形网格?对于3D建模来说是个怎样的存在?
  13. 聚焦应用场景,OriginOS全面焕新用户体验
  14. C++ string大小写转换
  15. golang协程goroutine
  16. 电脑运行java程序很卡_我的世界卡运行不流畅解决办法
  17. python与开源gis_转载《Python与开源GIS教程》随书源码网址
  18. 如何计算四个原子的二面角
  19. Redis的使用场景有哪些?
  20. CelebA数据集下载|HTTPSConnectionPool(host=‘drive.google.com‘, port=443)|RuntimeError:Dataset not found

热门文章

  1. c语言10以内得加法,10以内加法练习题(最新整理)
  2. 【proc】使用proc_create_data函数在proc下创建节点
  3. VCC、 VDD、VEE、VSS
  4. Web自动化selenium技术快速实现爬虫
  5. 兰讯76A3芯片TWS配对后灭灯
  6. 量子计算机是伪科学,别再被伪科学“量子产品”蒙蔽了
  7. HDOJ 2026 首字母变大写
  8. 中图分类号——计算机软件类
  9. 【C++】五分钟快速理解decltype与auto
  10. 面试官让我写SQL,我没有写出来