You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-dev@hadoop.apache.org by "stack (JIRA)" <ji...@apache.org> on 2007/07/13 18:14:04 UTC

[jira] Created: (HADOOP-1611) [hbase] Add enableTable, disableTable, addColumn, etc, to hase shell

[hbase] Add enableTable, disableTable, addColumn, etc, to hase shell
--------------------------------------------------------------------

                 Key: HADOOP-1611
                 URL: https://issues.apache.org/jira/browse/HADOOP-1611
             Project: Hadoop
          Issue Type: Improvement
          Components: contrib/hbase
            Reporter: stack


Here are some nice-to-have admin functions that would sit nicely in hbase shell:

+  public void addColumn(Text tableName, HColumnDescriptor column) throws IOException;
+  public void deleteColumn(Text tableName, Text columnName) throws IOException;
+  
+  public void enableTable(Text tableName) throws IOException;
+  public void disableTable(Text tableName) throws IOException;

(To add/delete columns you must first disable the table and then reenable it).

Other possibles:

+  public void mergeRegions(Text regionName1, Text regionName2) throws IOException;
+ Allow specification of basic row filtering (Doesn't have to be exotic): regex match, upper limit on rows returned.
+ Allow changing versions on column families, enabling/disabling compression, bloom filters

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


[jira] Updated: (HADOOP-1611) [hbase] Add enableTable, disableTable, addColumn, etc, to shell

Posted by "Inchul Song (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-1611?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Inchul Song updated HADOOP-1611:
--------------------------------

    Issue Type: Sub-task  (was: Improvement)
        Parent: HADOOP-1720

> [hbase] Add enableTable, disableTable, addColumn, etc, to shell
> ---------------------------------------------------------------
>
>                 Key: HADOOP-1611
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1611
>             Project: Hadoop
>          Issue Type: Sub-task
>          Components: contrib/hbase
>            Reporter: stack
>            Priority: Minor
>
> Here are some nice-to-have admin functions that would sit nicely in hbase shell:
> +  public void addColumn(Text tableName, HColumnDescriptor column) throws IOException;
> +  public void deleteColumn(Text tableName, Text columnName) throws IOException;
> +  
> +  public void enableTable(Text tableName) throws IOException;
> +  public void disableTable(Text tableName) throws IOException;
> (To add/delete columns you must first disable the table and then reenable it).
> Other possibles:
> +  public void mergeRegions(Text regionName1, Text regionName2) throws IOException;
> + Allow specification of basic row filtering (Doesn't have to be exotic): regex match, upper limit on rows returned.
> + Allow changing versions on column families, enabling/disabling compression, bloom filters

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


[jira] Commented: (HADOOP-1611) [hbase] Add enableTable, disableTable, addColumn, etc, to shell

Posted by "edward yoon (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HADOOP-1611?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12512779 ] 

edward yoon commented on HADOOP-1611:
-------------------------------------

Thanks, Michael.
I will apply to shell.

> [hbase] Add enableTable, disableTable, addColumn, etc, to shell
> ---------------------------------------------------------------
>
>                 Key: HADOOP-1611
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1611
>             Project: Hadoop
>          Issue Type: Improvement
>          Components: contrib/hbase
>            Reporter: stack
>            Priority: Minor
>
> Here are some nice-to-have admin functions that would sit nicely in hbase shell:
> +  public void addColumn(Text tableName, HColumnDescriptor column) throws IOException;
> +  public void deleteColumn(Text tableName, Text columnName) throws IOException;
> +  
> +  public void enableTable(Text tableName) throws IOException;
> +  public void disableTable(Text tableName) throws IOException;
> (To add/delete columns you must first disable the table and then reenable it).
> Other possibles:
> +  public void mergeRegions(Text regionName1, Text regionName2) throws IOException;
> + Allow specification of basic row filtering (Doesn't have to be exotic): regex match, upper limit on rows returned.
> + Allow changing versions on column families, enabling/disabling compression, bloom filters

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


[jira] Commented: (HADOOP-1611) [hbase] Add enableTable, disableTable, addColumn, etc, to shell

Posted by "stack (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HADOOP-1611?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12527196 ] 

stack commented on HADOOP-1611:
-------------------------------

HADOOP-1720 adds 'alter table'.  Using it, you can add/delete columns.  It runs the disable/enable of the table for you.

The 'alter table' also has notion of 'change' for column families to set column family attributes but currently its unimplemented.

That leaves enable/disable table, merge of two adjacent regions (Specifying regexes on selects belongs in an another issue).

> [hbase] Add enableTable, disableTable, addColumn, etc, to shell
> ---------------------------------------------------------------
>
>                 Key: HADOOP-1611
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1611
>             Project: Hadoop
>          Issue Type: Sub-task
>          Components: contrib/hbase
>            Reporter: stack
>            Priority: Minor
>
> Here are some nice-to-have admin functions that would sit nicely in hbase shell:
> +  public void addColumn(Text tableName, HColumnDescriptor column) throws IOException;
> +  public void deleteColumn(Text tableName, Text columnName) throws IOException;
> +  
> +  public void enableTable(Text tableName) throws IOException;
> +  public void disableTable(Text tableName) throws IOException;
> (To add/delete columns you must first disable the table and then reenable it).
> Other possibles:
> +  public void mergeRegions(Text regionName1, Text regionName2) throws IOException;
> + Allow specification of basic row filtering (Doesn't have to be exotic): regex match, upper limit on rows returned.
> + Allow changing versions on column families, enabling/disabling compression, bloom filters

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


[jira] Updated: (HADOOP-1611) [hbase] Add enableTable, disableTable, addColumn, etc, to shell

Posted by "stack (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-1611?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

stack updated HADOOP-1611:
--------------------------

    Fix Version/s: 0.16.0

> [hbase] Add enableTable, disableTable, addColumn, etc, to shell
> ---------------------------------------------------------------
>
>                 Key: HADOOP-1611
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1611
>             Project: Hadoop
>          Issue Type: Improvement
>          Components: contrib/hbase
>            Reporter: stack
>            Priority: Minor
>             Fix For: 0.16.0
>
>
> Here are some nice-to-have admin functions that would sit nicely in hbase shell:
> +  public void addColumn(Text tableName, HColumnDescriptor column) throws IOException;
> +  public void deleteColumn(Text tableName, Text columnName) throws IOException;
> +  
> +  public void enableTable(Text tableName) throws IOException;
> +  public void disableTable(Text tableName) throws IOException;
> (To add/delete columns you must first disable the table and then reenable it).
> Other possibles:
> +  public void mergeRegions(Text regionName1, Text regionName2) throws IOException;
> + Allow specification of basic row filtering (Doesn't have to be exotic): regex match, upper limit on rows returned.
> + Allow changing versions on column families, enabling/disabling compression, bloom filters

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


[jira] Updated: (HADOOP-1611) [hbase] Add enableTable, disableTable, addColumn, etc, to shell

Posted by "stack (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-1611?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

stack updated HADOOP-1611:
--------------------------

    Priority: Minor  (was: Major)
     Summary: [hbase] Add enableTable, disableTable, addColumn, etc, to shell  (was: [hbase] Add enableTable, disableTable, addColumn, etc, to hase shell)

> [hbase] Add enableTable, disableTable, addColumn, etc, to shell
> ---------------------------------------------------------------
>
>                 Key: HADOOP-1611
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1611
>             Project: Hadoop
>          Issue Type: Improvement
>          Components: contrib/hbase
>            Reporter: stack
>            Priority: Minor
>
> Here are some nice-to-have admin functions that would sit nicely in hbase shell:
> +  public void addColumn(Text tableName, HColumnDescriptor column) throws IOException;
> +  public void deleteColumn(Text tableName, Text columnName) throws IOException;
> +  
> +  public void enableTable(Text tableName) throws IOException;
> +  public void disableTable(Text tableName) throws IOException;
> (To add/delete columns you must first disable the table and then reenable it).
> Other possibles:
> +  public void mergeRegions(Text regionName1, Text regionName2) throws IOException;
> + Allow specification of basic row filtering (Doesn't have to be exotic): regex match, upper limit on rows returned.
> + Allow changing versions on column families, enabling/disabling compression, bloom filters

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


[jira] Resolved: (HADOOP-1611) [hbase] Add enableTable, disableTable, addColumn, etc, to shell

Posted by "stack (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-1611?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

stack resolved HADOOP-1611.
---------------------------

    Resolution: Fixed

Resolving.  The edit of column attributes was done over in HADOOP-2395.  Let HADOOP-1958, make a table read-only, standin for the outstanding enable/disable of a table and regards merge, I'll make an issue for this explicitly.

> [hbase] Add enableTable, disableTable, addColumn, etc, to shell
> ---------------------------------------------------------------
>
>                 Key: HADOOP-1611
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1611
>             Project: Hadoop
>          Issue Type: Improvement
>          Components: contrib/hbase
>            Reporter: stack
>            Priority: Minor
>
> Here are some nice-to-have admin functions that would sit nicely in hbase shell:
> +  public void addColumn(Text tableName, HColumnDescriptor column) throws IOException;
> +  public void deleteColumn(Text tableName, Text columnName) throws IOException;
> +  
> +  public void enableTable(Text tableName) throws IOException;
> +  public void disableTable(Text tableName) throws IOException;
> (To add/delete columns you must first disable the table and then reenable it).
> Other possibles:
> +  public void mergeRegions(Text regionName1, Text regionName2) throws IOException;
> + Allow specification of basic row filtering (Doesn't have to be exotic): regex match, upper limit on rows returned.
> + Allow changing versions on column families, enabling/disabling compression, bloom filters

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


[jira] Updated: (HADOOP-1611) [hbase] Add enableTable, disableTable, addColumn, etc, to shell

Posted by "Jim Kellerman (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/HADOOP-1611?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jim Kellerman updated HADOOP-1611:
----------------------------------

    Issue Type: Improvement  (was: Sub-task)
        Parent:     (was: HADOOP-1720)

> [hbase] Add enableTable, disableTable, addColumn, etc, to shell
> ---------------------------------------------------------------
>
>                 Key: HADOOP-1611
>                 URL: https://issues.apache.org/jira/browse/HADOOP-1611
>             Project: Hadoop
>          Issue Type: Improvement
>          Components: contrib/hbase
>            Reporter: stack
>            Priority: Minor
>
> Here are some nice-to-have admin functions that would sit nicely in hbase shell:
> +  public void addColumn(Text tableName, HColumnDescriptor column) throws IOException;
> +  public void deleteColumn(Text tableName, Text columnName) throws IOException;
> +  
> +  public void enableTable(Text tableName) throws IOException;
> +  public void disableTable(Text tableName) throws IOException;
> (To add/delete columns you must first disable the table and then reenable it).
> Other possibles:
> +  public void mergeRegions(Text regionName1, Text regionName2) throws IOException;
> + Allow specification of basic row filtering (Doesn't have to be exotic): regex match, upper limit on rows returned.
> + Allow changing versions on column families, enabling/disabling compression, bloom filters

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