public HadoopRecordOutputFormat(org.apache.hadoop.mapred.OutputFormat<K,V> hadoopFormat, JobConf job, FlinkTypeConverter<K,V> conv) {
super();
this.hadoopOutputFormat = hadoopFormat;
this.hadoopOutputFormatName = hadoopFormat.getClass().getName();
this.converter = conv;
this.fileOutputCommitterWrapper = new HadoopFileOutputCommitter();
HadoopUtils.mergeHadoopConf(job);
this.jobConf = job;
}