Return-Path: X-Original-To: apmail-hive-dev-archive@www.apache.org Delivered-To: apmail-hive-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 50A9A95BA for ; Mon, 15 Dec 2014 09:40:16 +0000 (UTC) Received: (qmail 4739 invoked by uid 500); 15 Dec 2014 09:40:13 -0000 Delivered-To: apmail-hive-dev-archive@hive.apache.org Received: (qmail 4658 invoked by uid 500); 15 Dec 2014 09:40:13 -0000 Mailing-List: contact dev-help@hive.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hive.apache.org Delivered-To: mailing list dev@hive.apache.org Received: (qmail 4647 invoked by uid 500); 15 Dec 2014 09:40:13 -0000 Delivered-To: apmail-hadoop-hive-dev@hadoop.apache.org Received: (qmail 4644 invoked by uid 99); 15 Dec 2014 09:40:13 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Dec 2014 09:40:13 +0000 Date: Mon, 15 Dec 2014 09:40:13 +0000 (UTC) From: "Hive QA (JIRA)" To: hive-dev@hadoop.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HIVE-9078) Hive should not submit second SparkTask while previous one has failed.[Spark Branch] MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/HIVE-9078?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14246503#comment-14246503 ] Hive QA commented on HIVE-9078: ------------------------------- {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/12687195/HIVE-9078.3-spark.patch {color:red}ERROR:{color} -1 due to 7 failed/errored test(s), 7237 tests executed *Failed tests:* {noformat} org.apache.hadoop.hive.cli.TestCliDriver.testCliDriver_sample_islocalmode_hook org.apache.hadoop.hive.cli.TestMiniTezCliDriver.testCliDriver_vector_cast_constant org.apache.hadoop.hive.cli.TestSparkCliDriver.testCliDriver_bucket_map_join_spark4 org.apache.hadoop.hive.cli.TestSparkCliDriver.testCliDriver_infer_bucket_sort_convert_join org.apache.hadoop.hive.cli.TestSparkCliDriver.testCliDriver_mapjoin_hook org.apache.hadoop.hive.cli.TestSparkCliDriver.testCliDriver_optimize_nullscan org.apache.hive.hcatalog.streaming.TestStreaming.testInterleavedTransactionBatchCommits {noformat} Test results: http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-SPARK-Build/543/testReport Console output: http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-SPARK-Build/543/console Test logs: http://ec2-50-18-27-0.us-west-1.compute.amazonaws.com/logs/PreCommit-HIVE-SPARK-Build-543/ 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: 7 tests failed {noformat} This message is automatically generated. ATTACHMENT ID: 12687195 - PreCommit-HIVE-SPARK-Build > Hive should not submit second SparkTask while previous one has failed.[Spark Branch] > ------------------------------------------------------------------------------------ > > Key: HIVE-9078 > URL: https://issues.apache.org/jira/browse/HIVE-9078 > Project: Hive > Issue Type: Sub-task > Components: Spark > Reporter: Chengxiang Li > Assignee: Chengxiang Li > Labels: Spark-M4 > Attachments: HIVE-9078.1-spark.patch, HIVE-9078.2-spark.patch, HIVE-9078.3-spark.patch > > > {noformat} > hive> select n_name, c_name from nation, customer where nation.n_nationkey = customer.c_nationkey limit 10; > Query ID = root_20141211135050_51e5ae15-49a3-4a46-826f-e27ee314ccb2 > Total jobs = 2 > Launching Job 1 out of 2 > In order to change the average load for a reducer (in bytes): > set hive.exec.reducers.bytes.per.reducer= > In order to limit the maximum number of reducers: > set hive.exec.reducers.max= > In order to set a constant number of reducers: > set mapreduce.job.reduces= > Status: Failed > Launching Job 2 out of 2 > In order to change the average load for a reducer (in bytes): > set hive.exec.reducers.bytes.per.reducer= > In order to limit the maximum number of reducers: > set hive.exec.reducers.max= > In order to set a constant number of reducers: > set mapreduce.job.reduces= > Status: Failed > OK > Time taken: 68.53 seconds > {noformat} > 2 issue in the above CLI output. > # For a query which would be translated into multi SparkTask, is previous SparkTask failed, Hive should failed right away, the following SparkTask should not be submitted any more. > # Print failed info in Hive console while query failed. > The correct CLI output while query failed: > {noformat} > hive> select n_name, c_name from nation, customer where nation.n_nationkey = customer.c_nationkey limit 10; > Query ID = root_20141211142929_ddb7f205-8422-44b4-96bd-96a1c9291895 > Total jobs = 2 > Launching Job 1 out of 2 > In order to change the average load for a reducer (in bytes): > set hive.exec.reducers.bytes.per.reducer= > In order to limit the maximum number of reducers: > set hive.exec.reducers.max= > In order to set a constant number of reducers: > set mapreduce.job.reduces= > Status: Failed > FAILED: Execution Error, return code 2 from org.apache.hadoop.hive.ql.exec.spark.SparkTask > {noformat} -- This message was sent by Atlassian JIRA (v6.3.4#6332)