T - The resulting type of preprocessing.protected abstract class TextVertexValueInputFormat.TextVertexValueReaderFromEachLineProcessed<T> extends TextVertexValueInputFormat.TextVertexValueReader
| Modifier | Constructor and Description |
|---|---|
protected |
TextVertexValueReaderFromEachLineProcessed() |
| Modifier and Type | Method and Description |
|---|---|
I |
getCurrentVertexId()
User-defined method to extract the vertex id.
|
V |
getCurrentVertexValue()
User-defined method to extract the vertex value.
|
protected abstract I |
getId(T line)
Reads vertex id from the preprocessed line.
|
protected abstract V |
getValue(T line)
Reads vertex value from the preprocessed line.
|
boolean |
nextVertex() |
protected abstract T |
preprocessLine(org.apache.hadoop.io.Text line)
Preprocess the line so other methods can easily read necessary
information for creating vertex.
|
close, createLineRecordReader, getContext, getProgress, getRecordReader, initializegetCurrentVertexaggregate, getAggregatedValue, getBroadcast, reduce, reduceMerge, setWorkerGlobalCommUsagegetConf, setConfprotected TextVertexValueReaderFromEachLineProcessed()
public I getCurrentVertexId() throws IOException, InterruptedException
BasicVertexValueReadergetCurrentVertexId in class BasicVertexValueReader<I extends org.apache.hadoop.io.WritableComparable,V extends org.apache.hadoop.io.Writable>IOExceptionInterruptedExceptionpublic V getCurrentVertexValue() throws IOException, InterruptedException
BasicVertexValueReadergetCurrentVertexValue in class BasicVertexValueReader<I extends org.apache.hadoop.io.WritableComparable,V extends org.apache.hadoop.io.Writable>IOExceptionInterruptedExceptionpublic final boolean nextVertex()
throws IOException,
InterruptedException
nextVertex in class VertexReader<I extends org.apache.hadoop.io.WritableComparable,V extends org.apache.hadoop.io.Writable,org.apache.hadoop.io.Writable>IOExceptionInterruptedExceptionprotected abstract T preprocessLine(org.apache.hadoop.io.Text line) throws IOException
line - the current line to be readIOException - exception that can be thrown while readingprotected abstract I getId(T line) throws IOException
line - the object obtained by preprocessing the lineIOException - exception that can be thrown while readingprotected abstract V getValue(T line) throws IOException
line - the object obtained by preprocessing the lineIOException - exception that can be thrown while readingCopyright © 2011-2020 The Apache Software Foundation. All Rights Reserved.