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


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}


--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to