Example usage for org.apache.hadoop.mapreduce.lib.input DelegatingRecordReader DelegatingRecordReader

List of usage examples for org.apache.hadoop.mapreduce.lib.input DelegatingRecordReader DelegatingRecordReader

Introduction

In this page you can find the example usage for org.apache.hadoop.mapreduce.lib.input DelegatingRecordReader DelegatingRecordReader.

Prototype

@SuppressWarnings("unchecked")
public DelegatingRecordReader(InputSplit split, TaskAttemptContext context)
        throws IOException, InterruptedException 

Source Link

Document

Constructs the DelegatingRecordReader.

Usage

From source file:com.mongodb.hadoop.input.DelegatingInputFormat.java

License:Apache License

@Override
public RecordReader<K, V> createRecordReader(InputSplit split, TaskAttemptContext context)
        throws IOException, InterruptedException {
    return new DelegatingRecordReader<K, V>(split, context);
}