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

Joey Echeverria updated HBASE-4000:
-----------------------------------

     Description: 
It would be nice to be able to specify split points when you create a table 
from the shell. This could be done by either passing split points in the shell:
{noformat}
  hbase> create 't1', 'f1', {SPLITS => ['01', '02', '03', '04']}
{noformat}

or by passing a file with split points in it:
{noformat}
  $ cat splits.txt
01
02
03 
04
  hbase> create 't1', 'f1', {SPLITS_FILE => 'splits.txt'}
{noformat}


  was:
It would be nice to be able to specify split points when you create a table 
from the shell. This could be done by either passing split points in the shell:
{noformat}
  hbase> create 't1', 'f1', {SPLITS => ['01', '02', '03', '04']}
{noformat}

or by passing a file with split points in it:
{noformat}
  $ cat splits.txt
01
02
03 
04
  hbase> create 't1', 'f1', {SPLIT_FILE => 'splits.txt'}
{noformat}


    Release Note: 
The shell's create command now supports:
create 't1', 'f1', {SPLITS => ['01', '02', '03', '04']}
create 't1', 'f1', {SPLITS_FILE => 'splits.txt'}

  was:
The shell's create command now supports:
create 't1', 'f1', {SPLITS => ['01', '02', '03', '04']}
create 't1', 'f1', {SPLIT_FILE => 'splits.txt'}


Fixing the example in the description and the release notes text to match the 
patch (SPLITS_FILE instead of SPLIT_FILE).
                
> You can't specify split points when you create a table in the shell
> -------------------------------------------------------------------
>
>                 Key: HBASE-4000
>                 URL: https://issues.apache.org/jira/browse/HBASE-4000
>             Project: HBase
>          Issue Type: New Feature
>    Affects Versions: 0.90.3
>            Reporter: Joey Echeverria
>            Assignee: Joey Echeverria
>             Fix For: 0.92.0
>
>         Attachments: HBASE-4000-1.patch
>
>
> It would be nice to be able to specify split points when you create a table 
> from the shell. This could be done by either passing split points in the 
> shell:
> {noformat}
>   hbase> create 't1', 'f1', {SPLITS => ['01', '02', '03', '04']}
> {noformat}
> or by passing a file with split points in it:
> {noformat}
>   $ cat splits.txt
> 01
> 02
> 03 
> 04
>   hbase> create 't1', 'f1', {SPLITS_FILE => 'splits.txt'}
> {noformat}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to