Details
Description
If your loader needs information regarding what file is currently is being read (lets say for schema information), currently provides this ability by calling prepareToRead every time we read a new split. This is critical for ComibinedInputFormat as each mapper can read more then one file. In order for the load function to know what file we are currently reading, it should call getWrappedSplit() to get that information. How ever, getWrappedSplit always returns the first split in the list. Code from PigSplit.java:
/**
- This methods returns the actual InputSplit (as returned by the
- {@link InputFormat}
) which this class is wrapping.
- @return the wrappedSplit
*/
public InputSplit getWrappedSplit() { return wrappedSplits[0]; }
Furthermore, in PigRecordReader.java the splitIndex is never incremented when changing from split to split. So in fact, even if getWrappedSplit() wold be changed to return wrappedSplits[splitIndex]; it would still return the incorrect index.
This can be fixed by changing PigRecordReader to increment PigSplit.splitIndex everytime the split chagnes in the following code:
/**
- Get the record reader for the next chunk in this CombineFileSplit.
*/
protected boolean initNextRecordReader() throws IOException, InterruptedException {
if (curReader != null) {
curReader.close();
curReader = null;
if (idx > 0)
}
// if all chunks have been processed, nothing more to do.
if (idx == pigSplit.getNumPaths())
// get a record reader for the idx-th chunk
try {
curReader = inputformat.createRecordReader(pigSplit.getWrappedSplit(idx), context);
LOG.info("Current split being processed "+pigSplit.getWrappedSplit(idx));
if (idx > 0)
{ // initialize() for the first RecordReader will be called by MapTask; // we're responsible for initializing subsequent RecordReaders. curReader.initialize(pigSplit.getWrappedSplit(idx), context); pigSplit.get loadfunc.prepareToRead(curReader, pigSplit); }} catch (Exception e)
{ throw new RuntimeException (e); } idx++;
return true;
}
}
Attachments
Attachments
Issue Links
- is related to
-
PIG-1518 multi file input format for loaders
- Closed