use of com.yahoo.vespa.hadoop.mapreduce.util.VespaConfiguration in project vespa by vespa-engine.
the class VespaOutputFormat method getRecordWriter.
@Override
public RecordWriter getRecordWriter(TaskAttemptContext context) throws IOException, InterruptedException {
VespaCounters counters = VespaCounters.get(context);
VespaConfiguration configuration = VespaConfiguration.get(context.getConfiguration(), configOverride);
return new VespaRecordWriter(configuration, counters);
}
Aggregations