You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "John Sichi (JIRA)" <ji...@apache.org> on 2010/05/03 23:04:59 UTC

[jira] Updated: (HIVE-1116) alter table rename should rename hdfs location of table as well

     [ https://issues.apache.org/jira/browse/HIVE-1116?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

John Sichi updated HIVE-1116:
-----------------------------

    Attachment: HIVE-1116.1.patch

> alter table rename should rename hdfs location of table as well
> ---------------------------------------------------------------
>
>                 Key: HIVE-1116
>                 URL: https://issues.apache.org/jira/browse/HIVE-1116
>             Project: Hadoop Hive
>          Issue Type: Bug
>            Reporter: Joydeep Sen Sarma
>            Assignee: John Sichi
>         Attachments: HIVE-1116.1.patch
>
>
> if the location is not an external location - this would be safer.
> the problem right now is that it's tricky to use the drop and rename way of writing new data into a table. consider:
> Initialization block:
> drop table a_tmp
> create table a_tmp like a;
> Loading block:
> load data <newdata> into a_tmp;
> drop table a;
> alter table a_tmp rename to a;
> this looks safe. but it's not. if one runs this multiple times - then data is lost (since 'a' is pointing to 'a_tmp''s location after any iteration. and dropping table 'a' blows away loaded data in the next iteration). 
> if the location is being managed by Hive - then 'rename' should switch location as well.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.