本文整理汇总了Java中org.apache.avro.mapred.AvroAsTextInputFormat类的典型用法代码示例。如果您正苦于以下问题:Java AvroAsTextInputFormat类的具体用法?Java AvroAsTextInputFormat怎么用?Java AvroAsTextInputFormat使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
AvroAsTextInputFormat类属于org.apache.avro.mapred包,在下文中一共展示了AvroAsTextInputFormat类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: main
import org.apache.avro.mapred.AvroAsTextInputFormat; //导入依赖的package包/类
/**
* Uses default mapper with no reduces for a map-only identity job.
*/
public static void main(String... args) throws Exception {
JobConf job = new JobConf();
job.setJarByClass(AvroTextMapReduce.class);
Path input = new Path(args[0]);
Path output = new Path(args[1]);
output.getFileSystem(job).delete(output, true);
FileSystem hdfs = FileSystem.get(job);
OutputStream os = hdfs.create(input);
writeLinesBytesFile(os);
FileInputFormat.setInputPaths(job, input);
FileOutputFormat.setOutputPath(job, output);
job.setInputFormat(AvroAsTextInputFormat.class);
job.setOutputFormat(AvroTextOutputFormat.class);
job.setOutputKeyClass(Text.class);
job.setMapperClass(Mapper.class);
job.setReducerClass(Reducer.class);
JobClient.runJob(job);
validateSortedFile(output.getFileSystem(job)
.open(new Path(output, "part-00000.avro")));
}