其他分享
首页 > 其他分享> > OutputFormat数据输出

OutputFormat数据输出

作者:互联网

1. OutputFormat接口实现类

  OutputFormat是MapReduce输出的基类,所有实现MapReduce输出都实现了OutFormat接口。

  默认输出格式TextOutputFormat。

 

2. 自定义OutputFormat

  应用场景

      如:输出数据到MySQL / HBase / Elasticsearch等框架中。

  步骤

     (1) 自定义一个类继承FileOutputFormat。

     (2)改写RecordWriter,具体改写输出数据的方法write()。

 

标签:输出,OutputFormat,自定义,MapReduce,接口,改写,数据
来源: https://www.cnblogs.com/xiao-wang-tong-xue/p/16514753.html