You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Hive QA (JIRA)" <ji...@apache.org> on 2014/04/03 17:06:19 UTC

[jira] [Commented] (HIVE-6787) ORC+ACID assumes all missing buckets are in ACID structure

    [ https://issues.apache.org/jira/browse/HIVE-6787?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13958874#comment-13958874 ] 

Hive QA commented on HIVE-6787:
-------------------------------



{color:green}Overall{color}: +1 all checks pass

Here are the results of testing the latest attachment:
https://issues.apache.org/jira/secure/attachment/12638317/HIVE-6787.patch

{color:green}SUCCESS:{color} +1 5543 tests passed

Test results: http://bigtop01.cloudera.org:8080/job/PreCommit-HIVE-Build/2095/testReport
Console output: http://bigtop01.cloudera.org:8080/job/PreCommit-HIVE-Build/2095/console

Messages:
{noformat}
Executing org.apache.hive.ptest.execution.PrepPhase
Executing org.apache.hive.ptest.execution.ExecutionPhase
Executing org.apache.hive.ptest.execution.ReportingPhase
{noformat}

This message is automatically generated.

ATTACHMENT ID: 12638317

> ORC+ACID assumes all missing buckets are in ACID structure
> ----------------------------------------------------------
>
>                 Key: HIVE-6787
>                 URL: https://issues.apache.org/jira/browse/HIVE-6787
>             Project: Hive
>          Issue Type: Bug
>          Components: File Formats
>    Affects Versions: 0.13.0
>            Reporter: Gopal V
>            Assignee: Owen O'Malley
>            Priority: Blocker
>             Fix For: 0.13.0
>
>         Attachments: HIVE-6787.patch
>
>
> ORC+ACID creates ACID structure splits for all missing buckets in a table
> {code}
> java.lang.RuntimeException: java.io.IOException: java.io.IOException: Vectorization and ACID tables are incompatible.
> at org.apache.hadoop.hive.ql.io.orc.OrcInputFormat.getRecordReader(OrcInputFormat.java:996)
> 	at org.apache.hadoop.hive.ql.io.HiveInputFormat.getRecordReader(HiveInputFormat.java:240)
> 	... 15 more
> {code}
> The tables are normal ORC tables and are not using ACID structure at all.
> {code}
> @@ -539,7 +539,7 @@ public void run() {
>          for(int b=0; b < context.numBuckets; ++b) {
>            if (!covered[b]) {
>              context.splits.add(new OrcSplit(dir, b, 0, new String[0], null,
> -                               false, false, deltas));
> +                               isOriginal, false, deltas));
>            }
>          }
> {code}
> seems to fix the issue. [~owen.omalley], please confirm if that is what I should be doing.



--
This message was sent by Atlassian JIRA
(v6.2#6252)