You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hive.apache.org by "Hive QA (JIRA)" <ji...@apache.org> on 2016/12/21 14:16:58 UTC

[jira] [Commented] (HIVE-15440) Multiple inserts query from the union table failed by java.lang.IllegalArgumentException

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

Hive QA commented on HIVE-15440:
--------------------------------



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

{color:red}ERROR:{color} -1 due to no test(s) being added or modified.

{color:red}ERROR:{color} -1 due to 13 failed/errored test(s), 10813 tests executed
*Failed tests:*
{noformat}
TestDerbyConnector - did not produce a TEST-*.xml file (likely timed out) (batchId=234)
org.apache.hadoop.hive.cli.TestCliDriver.testCliDriver[dbtxnmgr_showlocks] (batchId=71)
org.apache.hadoop.hive.cli.TestCliDriver.testCliDriver[str_to_map] (batchId=58)
org.apache.hadoop.hive.cli.TestMiniLlapCliDriver.testCliDriver[explainuser_2] (batchId=136)
org.apache.hadoop.hive.cli.TestMiniLlapCliDriver.testCliDriver[orc_ppd_schema_evol_3a] (batchId=135)
org.apache.hadoop.hive.cli.TestMiniLlapCliDriver.testCliDriver[transform_ppr2] (batchId=135)
org.apache.hadoop.hive.cli.TestMiniLlapLocalCliDriver.testCliDriver[autoColumnStats_1] (batchId=141)
org.apache.hadoop.hive.cli.TestMiniLlapLocalCliDriver.testCliDriver[autoColumnStats_2] (batchId=153)
org.apache.hadoop.hive.cli.TestMiniLlapLocalCliDriver.testCliDriver[stats_based_fetch_decision] (batchId=151)
org.apache.hadoop.hive.cli.TestMiniLlapLocalCliDriver.testCliDriver[tez_union_multiinsert] (batchId=144)
org.apache.hadoop.hive.cli.TestMiniTezCliDriver.testCliDriver[explainanalyze_2] (batchId=93)
org.apache.hadoop.hive.cli.TestNegativeCliDriver.testCliDriver[exchange_partition_neg_incomplete_partition] (batchId=84)
org.apache.hadoop.hive.cli.TestNegativeCliDriver.testCliDriver[exim_00_unsupported_schema] (batchId=85)
{noformat}

Test results: https://builds.apache.org/job/PreCommit-HIVE-Build/2676/testReport
Console output: https://builds.apache.org/job/PreCommit-HIVE-Build/2676/console
Test logs: http://104.198.109.242/logs/PreCommit-HIVE-Build-2676/

Messages:
{noformat}
Executing org.apache.hive.ptest.execution.TestCheckPhase
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: 13 tests failed
{noformat}

This message is automatically generated.

ATTACHMENT ID: 12844231 - PreCommit-HIVE-Build

> Multiple inserts query from the union table failed by java.lang.IllegalArgumentException
> ----------------------------------------------------------------------------------------
>
>                 Key: HIVE-15440
>                 URL: https://issues.apache.org/jira/browse/HIVE-15440
>             Project: Hive
>          Issue Type: Bug
>    Affects Versions: 2.0.0
>            Reporter: Aleksey Vovchenko
>            Assignee: Aleksey Vovchenko
>         Attachments: HIVE-15440.1.patch
>
>
> STEP 1. Configure Hive on Tez
> STEP2.  Create test tables
> hive> create table t1(x int);
> hive> create table t2(x int);
> hive> create table t1_tmp(x int);
> hive> create table t2_tmp(x int);
> STEP 3. Run query
> hive> from(select x from t1 union all select x from t2)tbl insert overwrite table t1_tmp select x insert overwrite table t2_tmp select x;
> RESULT
> 2016-11-30 13:50:51,610 ERROR [main]: exec.Task (TezTask.java:execute(197)) - Failed to execute tez graph.
> java.lang.IllegalArgumentException: VertexGroup must have at least 2 members
> 	at org.apache.tez.dag.api.VertexGroup.<init>(VertexGroup.java:77)
> 	at org.apache.tez.dag.api.DAG.createVertexGroup(DAG.java:177)
> 	at org.apache.hadoop.hive.ql.exec.tez.TezTask.build(TezTask.java:333)
> 	at org.apache.hadoop.hive.ql.exec.tez.TezTask.execute(TezTask.java:169)
> 	at org.apache.hadoop.hive.ql.exec.Task.executeTask(Task.java:160)
> 	at org.apache.hadoop.hive.ql.exec.TaskRunner.runSequential(TaskRunner.java:85)
> 	at org.apache.hadoop.hive.ql.Driver.launchTask(Driver.java:1635)
> 	at org.apache.hadoop.hive.ql.Driver.execute(Driver.java:1395)
> 	at org.apache.hadoop.hive.ql.Driver.runInternal(Driver.java:1208)
> 	at org.apache.hadoop.hive.ql.Driver.run(Driver.java:1035)
> 	at org.apache.hadoop.hive.ql.Driver.run(Driver.java:1025)
> 	at org.apache.hadoop.hive.cli.CliDriver.processLocalCmd(CliDriver.java:201)
> 	at org.apache.hadoop.hive.cli.CliDriver.processCmd(CliDriver.java:153)
> 	at org.apache.hadoop.hive.cli.CliDriver.processLine(CliDriver.java:364)
> 	at org.apache.hadoop.hive.cli.CliDriver.executeDriver(CliDriver.java:712)
> 	at org.apache.hadoop.hive.cli.CliDriver.run(CliDriver.java:631)
> 	at org.apache.hadoop.hive.cli.CliDriver.main(CliDriver.java:570)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
> 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> 	at java.lang.reflect.Method.invoke(Method.java:483)
> 	at org.apache.hadoop.util.RunJar.main(RunJar.java:212)
> This issue doesn't happen on MR mode.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)