自定义 OutputFormat--数据分类输出
实现思路:1、在 MapReduce 中访问外部资源2、 自定义 OutputFormat,改写其中的 RecordWriter,改写具体输出数据的方法 write()package mapreduce.format.outputformat;import java.io.IOException;import org.apache.hadoop.conf.Configuration;im...