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 06C5C11AAD for ; Wed, 6 Aug 2014 17:36:15 +0000 (UTC) Received: (qmail 96846 invoked by uid 500); 6 Aug 2014 17:36:14 -0000 Delivered-To: apmail-hive-dev-archive@hive.apache.org Received: (qmail 96777 invoked by uid 500); 6 Aug 2014 17:36:14 -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 96763 invoked by uid 500); 6 Aug 2014 17:36:14 -0000 Delivered-To: apmail-hadoop-hive-dev@hadoop.apache.org Received: (qmail 96760 invoked by uid 99); 6 Aug 2014 17:36:14 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Aug 2014 17:36:14 +0000 Date: Wed, 6 Aug 2014 17:36:14 +0000 (UTC) From: "Hive QA (JIRA)" To: hive-dev@hadoop.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HIVE-7441) Custom partition scheme gets rewritten with hive scheme upon concatenate 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-7441?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14087925#comment-14087925 ] Hive QA commented on HIVE-7441: ------------------------------- {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/12659967/HIVE-7441.1.patch {color:red}ERROR:{color} -1 due to 5 failed/errored test(s), 5878 tests executed *Failed tests:* {noformat} org.apache.hadoop.hive.cli.TestCliDriver.testCliDriver_parquet_mixed_case org.apache.hadoop.hive.cli.TestMiniTezCliDriver.testCliDriver_dynpart_sort_opt_vectorization org.apache.hadoop.hive.cli.TestMiniTezCliDriver.testCliDriver_dynpart_sort_optimization org.apache.hadoop.hive.cli.TestMinimrCliDriver.testCliDriver_ql_rewrite_gbtoidx org.apache.hadoop.hive.ql.TestDDLWithRemoteMetastoreSecondNamenode.testCreateTableWithIndexAndPartitionsNonDefaultNameNode {noformat} Test results: http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/190/testReport Console output: http://ec2-174-129-184-35.compute-1.amazonaws.com/jenkins/job/PreCommit-HIVE-TRUNK-Build/190/console Test logs: http://ec2-174-129-184-35.compute-1.amazonaws.com/logs/PreCommit-HIVE-TRUNK-Build-190/ 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: 12659967 > Custom partition scheme gets rewritten with hive scheme upon concatenate > ------------------------------------------------------------------------ > > Key: HIVE-7441 > URL: https://issues.apache.org/jira/browse/HIVE-7441 > Project: Hive > Issue Type: Bug > Components: CLI > Affects Versions: 0.10.0, 0.11.0, 0.12.0 > Environment: CDH4.5 and CDH5.0 > Reporter: Johndee Burks > Assignee: Chaoyu Tang > Priority: Minor > Fix For: 0.14.0 > > Attachments: HIVE-7441.1.patch, HIVE-7441.patch > > > If I take a given data directories. The directories contain a data file that is rc format and only contains one character "1". > {code} > /j1/part1 > /j1/part2 > {code} > Create the table over the directories using the following command: > {code} > create table j1 (a int) partitioned by (b string) stored as rcfile location '/j1' ; > {code} > I add these directories to a table for example j1 using the following commands: > {code} > alter table j1 add partition (b = 'part1') location '/j1/part1'; > alter table j1 add partition (b = 'part2') location '/j1/part2'; > {code} > I then do the following command to the first partition: > {code} > alter table j1 partition (b = 'part1') concatenate; > {code} > Hive changes the partition location from on hdfs > {code} > /j1/part1 > {code} > to > {code} > /j1/b=part1 > {code} > However it does not update the partition location in the metastore and partition is then lost to the table. It is hard to find this out until you start querying your data and notice there is missing data. The table even still shows the partition when you do "show partitions". -- This message was sent by Atlassian JIRA (v6.2#6252)