我有一个应用程序,我在其中读取 HBase 并将记录写入文件。最终输出应该是 .zip 压缩格式,而不是 hadoop 支持的格式。为此,我使用自定义 ZipFileOutputFormat 来获取 .zip 文件中的记录。
这是我的实现
ZipFileOutputFormat.setOutputPath(job, new Path(args[1]));
这是 ZipFileOutputFormat.class 的详细信息
public class ZipFileOutputFormat extends FileOutputFormat<NullWritable, Text> {
@Override
public RecordWriter<NullWritable, Text> getRecordWriter(
TaskAttemptContext job) throws IOException, InterruptedException {
Path file = getDefaultWorkFile(job, ".zip");
FileSystem fs = file.getFileSystem(job.getConfiguration());
return new ZipRecordWriter(fs.create(file, false));
}
public static class ZipRecordWriter extends
RecordWriter<NullWritable, Text> {
protected ZipOutputStream zos;
public ZipRecordWriter(FSDataOutputStream os) {
zos = new ZipOutputStream(os);
}
@Override
public void write(NullWritable key, Text value) throws IOException,
InterruptedException {
// TODO: create new ZipEntry & add to the ZipOutputStream (zos)
}
@Override
public void close(TaskAttemptContext context) throws IOException,
InterruptedException {
zos.close();
}
}
}
我没有收到任何错误,但我的输出仍为 r-000001 格式。
我在这里缺少任何配置吗?