MAPREDUCE-6741. Refactor UncompressedSplitLineReader.fillBuffer(). Contributed by Daniel Templeton.
This commit is contained in:
parent
9581fb715c
commit
0b7b8a3776
|
@ -53,10 +53,10 @@ public class UncompressedSplitLineReader extends SplitLineReader {
|
|||
throws IOException {
|
||||
int maxBytesToRead = buffer.length;
|
||||
if (totalBytesRead < splitLength) {
|
||||
long leftBytesForSplit = splitLength - totalBytesRead;
|
||||
// check if leftBytesForSplit exceed Integer.MAX_VALUE
|
||||
if (leftBytesForSplit <= Integer.MAX_VALUE) {
|
||||
maxBytesToRead = Math.min(maxBytesToRead, (int)leftBytesForSplit);
|
||||
long bytesLeftInSplit = splitLength - totalBytesRead;
|
||||
|
||||
if (bytesLeftInSplit < maxBytesToRead) {
|
||||
maxBytesToRead = (int)bytesLeftInSplit;
|
||||
}
|
||||
}
|
||||
int bytesRead = in.read(buffer, 0, maxBytesToRead);
|
||||
|
|
Loading…
Reference in New Issue