You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "caofangkun (JIRA)" <ji...@apache.org> on 2013/06/14 08:40:20 UTC

[jira] [Updated] (HIVE-4735) table's lifecycle should be controlled in Hive

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

caofangkun updated HIVE-4735:
-----------------------------

    Description: 
Example as:

CREATE TABLE src (key string, value string) TBLPROPERTIES ('LIFECYCLE'='50d');
-- alter table src and reset it's lifecycle as 50 day
-- alter 50 days the table will be dropped automatically
ALTER TABLE src SET TBLPROPERTIES('LIFECYCLE'='50d');

-- alter specific table partition's lifecycle
-- we have DBPROPERTIES and TBLPROPERTIES , but seems we do not have 'PRTPROPERTIES'
ALTER TABLE srcpart PARTITION (dt='20130614',hr='10') SET PRTPROPERTIES('LIFECYCLE'='50d');

  was:
Example as:
-- create table src,and set it's lifecycle as 100 days
-- alter 100 days the table will be dropped automatically
CREATE TABLE src (key string) LIFECYCLE 100d; 

-- alter table src and reset it's lifecycle as 50 day
ALTER TABLE src SET LIFECYCLE 50d;

-- alter specific table partition's lifecycle
ALTER TABLE srcpart PARTITION (dt='20130614',hr='10') SET LIFECYCLE 50d;

    
> table's lifecycle should be controlled in Hive
> ----------------------------------------------
>
>                 Key: HIVE-4735
>                 URL: https://issues.apache.org/jira/browse/HIVE-4735
>             Project: Hive
>          Issue Type: Improvement
>            Reporter: caofangkun
>            Priority: Minor
>
> Example as:
> CREATE TABLE src (key string, value string) TBLPROPERTIES ('LIFECYCLE'='50d');
> -- alter table src and reset it's lifecycle as 50 day
> -- alter 50 days the table will be dropped automatically
> ALTER TABLE src SET TBLPROPERTIES('LIFECYCLE'='50d');
> -- alter specific table partition's lifecycle
> -- we have DBPROPERTIES and TBLPROPERTIES , but seems we do not have 'PRTPROPERTIES'
> ALTER TABLE srcpart PARTITION (dt='20130614',hr='10') SET PRTPROPERTIES('LIFECYCLE'='50d');

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira