Class InputFormatBase.RecordReaderBase<K,V>
- java.lang.Object
-
- org.apache.hadoop.mapreduce.RecordReader<K,V>
-
- org.apache.accumulo.core.client.mapreduce.AbstractInputFormat.AbstractRecordReader<K,V>
-
- org.apache.accumulo.core.client.mapreduce.InputFormatBase.RecordReaderBase<K,V>
-
- All Implemented Interfaces:
Closeable,AutoCloseable
- Enclosing class:
- InputFormatBase<K,V>
protected abstract static class InputFormatBase.RecordReaderBase<K,V> extends AbstractInputFormat.AbstractRecordReader<K,V>
-
-
Field Summary
-
Fields inherited from class org.apache.accumulo.core.client.mapreduce.AbstractInputFormat.AbstractRecordReader
currentK, currentKey, currentV, numKeysRead, scannerBase, scannerIterator, split
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedRecordReaderBase()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected List<IteratorSetting>contextIterators(org.apache.hadoop.mapreduce.TaskAttemptContext context, String tableName)Deprecated.protected voidsetupIterators(org.apache.hadoop.mapreduce.TaskAttemptContext context, Scanner scanner)Deprecated.since 1.7.0; UsecontextIterators(org.apache.hadoop.mapreduce.TaskAttemptContext, java.lang.String)instead.protected voidsetupIterators(org.apache.hadoop.mapreduce.TaskAttemptContext context, Scanner scanner, RangeInputSplit split)Deprecated.since 1.7.0; UsecontextIterators(org.apache.hadoop.mapreduce.TaskAttemptContext, java.lang.String)instead.-
Methods inherited from class org.apache.accumulo.core.client.mapreduce.AbstractInputFormat.AbstractRecordReader
close, getCurrentKey, getCurrentValue, getProgress, initialize, setupIterators
-
-
-
-
Method Detail
-
contextIterators
@Deprecated protected List<IteratorSetting> contextIterators(org.apache.hadoop.mapreduce.TaskAttemptContext context, String tableName)
Deprecated.Description copied from class:AbstractInputFormat.AbstractRecordReaderExtracts Iterators settings from the context to be used by RecordReader.- Specified by:
contextIteratorsin classAbstractInputFormat.AbstractRecordReader<K,V>- Parameters:
context- the Hadoop context for the configured jobtableName- the table name for which the scanner is configured- Returns:
- List of iterator settings for given table
-
setupIterators
@Deprecated protected void setupIterators(org.apache.hadoop.mapreduce.TaskAttemptContext context, Scanner scanner)
Deprecated.since 1.7.0; UsecontextIterators(org.apache.hadoop.mapreduce.TaskAttemptContext, java.lang.String)instead.Apply the configured iterators from the configuration to the scanner.- Parameters:
context- the Hadoop context for the configured jobscanner- the scanner to configure
-
setupIterators
@Deprecated protected void setupIterators(org.apache.hadoop.mapreduce.TaskAttemptContext context, Scanner scanner, RangeInputSplit split)
Deprecated.since 1.7.0; UsecontextIterators(org.apache.hadoop.mapreduce.TaskAttemptContext, java.lang.String)instead.Initialize a scanner over the given input split using this task attempt configuration.
-
-