Surendra Singh Lilhore created HADOOP-15869:
-----------------------------------------------
Summary: BlockDecompressorStream#decompress should not return -1
in case of IOException.
Key: HADOOP-15869
URL: https://issues.apache.org/jira/browse/HADOOP-15869
Project: Hadoop Common
Issue Type: Bug
Affects Versions: 2.7.2
Reporter: Surendra Singh Lilhore
Assignee: Surendra Singh Lilhore
BlockDecompressorStream#decompress() return -1 in case of
BlockMissingException. Application which is using BlockDecompressorStream may
think file is empty and proceed further. But actually read operation should
fail.
{code:java}
// Get original data size
try {
originalBlockSize = rawReadInt();
} catch (IOException ioe) {
return -1;
}{code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]