[
https://issues.apache.org/jira/browse/HIVE-8137?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14170800#comment-14170800
]
Hive QA commented on HIVE-8137:
-------------------------------
{color:red}Overall{color}: -1 at least one tests failed
Here are the results of testing the latest attachment:
https://issues.apache.org/jira/secure/attachment/12674632/HIVE-8137.2.patch
{color:red}ERROR:{color} -1 due to 5 failed/errored test(s), 6556 tests executed
*Failed tests:*
{noformat}
org.apache.hadoop.hive.cli.TestCliDriver.testCliDriver_parallel
org.apache.hadoop.hive.cli.TestCliDriver.testCliDriver_stats_noscan_2
org.apache.hadoop.hive.cli.TestMinimrCliDriver.testCliDriver_external_table_with_space_in_location_path
org.apache.hadoop.hive.cli.TestMinimrCliDriver.testCliDriver_file_with_header_footer
org.apache.hadoop.hive.cli.TestMinimrCliDriver.testCliDriver_root_dir_external_table
{noformat}
Test results:
http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/1260/testReport
Console output:
http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/1260/console
Test logs:
http://ec2-174-129-184-35.compute-1.amazonaws.com/logs/PreCommit-HIVE-TRUNK-Build-1260/
Messages:
{noformat}
Executing org.apache.hive.ptest.execution.PrepPhase
Executing org.apache.hive.ptest.execution.ExecutionPhase
Executing org.apache.hive.ptest.execution.ReportingPhase
Tests exited with: TestsFailedException: 5 tests failed
{noformat}
This message is automatically generated.
ATTACHMENT ID: 12674632
> Empty ORC file handling
> -----------------------
>
> Key: HIVE-8137
> URL: https://issues.apache.org/jira/browse/HIVE-8137
> Project: Hive
> Issue Type: Improvement
> Components: File Formats
> Affects Versions: 0.13.1
> Reporter: Pankit Thapar
> Fix For: 0.14.0
>
> Attachments: HIVE-8137.2.patch, HIVE-8137.patch
>
>
> Hive 13 does not handle reading of a zero size Orc File properly. An Orc file
> is suposed to have a post-script
> which the ReaderIml class tries to read and initialize the footer with it.
> But in case, the file is empty
> or is of zero size, then it runs into an IndexOutOfBound Exception because of
> ReaderImpl trying to read in its constructor.
> Code Snippet :
> //get length of PostScript
> int psLen = buffer.get(readSize - 1) & 0xff;
> In the above code, readSize for an empty file is zero.
> I see that ensureOrcFooter() method performs some sanity checks for footer ,
> so, either we can move the above code snippet to ensureOrcFooter() and throw
> a "Malformed ORC file exception" or we can create a dummy Reader that does
> not initialize footer and basically has hasNext() set to false so that it
> returns false on the first call.
> Basically, I would like to know what might be the correct way to handle an
> empty ORC file in a mapred job?
> Should we neglect it and not throw an exception or we can throw an exeption
> that the ORC file is malformed.
> Please let me know your thoughts on this.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)