@InterfaceAudience.Private @InterfaceStability.Unstable public class DelegatingRecordReader<K,V> extends RecordReader<K,V>
TaggedInputSplit
构造器和说明 |
---|
DelegatingRecordReader(InputSplit split,
TaskAttemptContext context)
Constructs the DelegatingRecordReader.
|
限定符和类型 | 方法和说明 |
---|---|
void |
close()
Close the record reader.
|
K |
getCurrentKey()
Get the current key
|
V |
getCurrentValue()
Get the current value.
|
float |
getProgress()
The current progress of the record reader through its data.
|
void |
initialize(InputSplit split,
TaskAttemptContext context)
Called once at initialization.
|
boolean |
nextKeyValue()
Read the next key, value pair.
|
public DelegatingRecordReader(InputSplit split, TaskAttemptContext context) throws IOException, InterruptedException
split
- TaggegInputSplit objectcontext
- TaskAttemptContext objectIOException
InterruptedException
public void close() throws IOException
RecordReader
close
在接口中 Closeable
close
在接口中 AutoCloseable
close
在类中 RecordReader<K,V>
IOException
public K getCurrentKey() throws IOException, InterruptedException
RecordReader
getCurrentKey
在类中 RecordReader<K,V>
IOException
InterruptedException
public V getCurrentValue() throws IOException, InterruptedException
RecordReader
getCurrentValue
在类中 RecordReader<K,V>
IOException
InterruptedException
public float getProgress() throws IOException, InterruptedException
RecordReader
getProgress
在类中 RecordReader<K,V>
IOException
InterruptedException
public void initialize(InputSplit split, TaskAttemptContext context) throws IOException, InterruptedException
RecordReader
initialize
在类中 RecordReader<K,V>
split
- the split that defines the range of records to readcontext
- the information about the taskIOException
InterruptedException
public boolean nextKeyValue() throws IOException, InterruptedException
RecordReader
nextKeyValue
在类中 RecordReader<K,V>
IOException
InterruptedException
Copyright © 2009 The Apache Software Foundation