@InterfaceAudience.Public @InterfaceStability.Stable public class FileSplit extends InputSplit implements InputSplit
InputFormat.getSplits(JobConf, int) and passed to
InputFormat.getRecordReader(InputSplit,JobConf,Reporter).| Modifier | Constructor and Description |
|---|---|
protected |
FileSplit() |
|
FileSplit(FileSplit fs) |
|
FileSplit(org.apache.hadoop.fs.Path file,
long start,
long length,
JobConf conf)
Deprecated.
|
|
FileSplit(org.apache.hadoop.fs.Path file,
long start,
long length,
String[] hosts)
Constructs a split with host information
|
| Modifier and Type | Method and Description |
|---|---|
long |
getLength()
The number of bytes in the file to process.
|
String[] |
getLocations()
Get the list of nodes by name where the data for the split would be local.
|
org.apache.hadoop.fs.Path |
getPath()
The file containing this split's data.
|
long |
getStart()
The position of the first byte in the file to process.
|
void |
readFields(DataInput in) |
String |
toString() |
void |
write(DataOutput out) |
protected FileSplit()
@Deprecated public FileSplit(org.apache.hadoop.fs.Path file, long start, long length, JobConf conf)
file - the file namestart - the position of the first byte in the file to processlength - the number of bytes in the file to processpublic FileSplit(org.apache.hadoop.fs.Path file,
long start,
long length,
String[] hosts)
file - the file namestart - the position of the first byte in the file to processlength - the number of bytes in the file to processhosts - the list of hosts containing the block, possibly nullpublic FileSplit(FileSplit fs)
public org.apache.hadoop.fs.Path getPath()
public long getStart()
public long getLength()
getLength in interface InputSplitgetLength in class InputSplitpublic void write(DataOutput out) throws IOException
write in interface org.apache.hadoop.io.WritableIOExceptionpublic void readFields(DataInput in) throws IOException
readFields in interface org.apache.hadoop.io.WritableIOExceptionpublic String[] getLocations() throws IOException
InputSplitgetLocations in interface InputSplitgetLocations in class InputSplitIOExceptionCopyright © 2014 Apache Software Foundation. All Rights Reserved.