You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by "Joey Echeverria (JIRA)" <ji...@apache.org> on 2011/06/16 21:28:47 UTC

[jira] [Created] (HBASE-4000) You can't specify split points when you create a table in the shell

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

        

[jira] [Updated] (HBASE-4000) You can't specify split points when you create a table in the shell

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

stack updated HBASE-4000:
-------------------------

       Resolution: Fixed
    Fix Version/s: 0.92.0
     Hadoop Flags: [Reviewed]
           Status: Resolved  (was: Patch Available)

Committed to TRUNK.  Thanks for the patch Joey.

> 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
>             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', {SPLIT_FILE => 'splits.txt'}
> {noformat}

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

        

[jira] [Commented] (HBASE-4000) You can't specify split points when you create a table in the shell

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

stack commented on HBASE-4000:
------------------------------

@Joey Congrats! You got issue 4000!  (You win $400000000000000000000000 dollars if you click.... smile)

> 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

        

[jira] [Assigned] (HBASE-4000) You can't specify split points when you create a table in the shell

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

Jean-Daniel Cryans reassigned HBASE-4000:
-----------------------------------------

    Assignee: Joey Echeverria

> 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', {SPLIT_FILE => 'splits.txt'}
> {noformat}

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

        

[jira] [Updated] (HBASE-4000) You can't specify split points when you create a table in the shell

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

Jean-Daniel Cryans updated HBASE-4000:
--------------------------------------

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

> 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', {SPLIT_FILE => 'splits.txt'}
> {noformat}

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

        

[jira] [Updated] (HBASE-4000) You can't specify split points when you create a table in the shell

Posted by "Joey Echeverria (JIRA)" <ji...@apache.org>.
     [ 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

        

[jira] [Updated] (HBASE-4000) You can't specify split points when you create a table in the shell

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

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

    Attachment: HBASE-4000-1.patch

> 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
>         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', {SPLIT_FILE => 'splits.txt'}
> {noformat}

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

        

[jira] [Updated] (HBASE-4000) You can't specify split points when you create a table in the shell

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

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

    Status: Patch Available  (was: Open)

> 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
>         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', {SPLIT_FILE => 'splits.txt'}
> {noformat}

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

        

[jira] [Commented] (HBASE-4000) You can't specify split points when you create a table in the shell

Posted by "Joey Echeverria (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HBASE-4000?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13051554#comment-13051554 ] 

Joey Echeverria commented on HBASE-4000:
----------------------------------------

I've attached a patch that should apply to both trunk and the 0.90 branch.

> 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
>         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', {SPLIT_FILE => 'splits.txt'}
> {noformat}

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

        

[jira] [Commented] (HBASE-4000) You can't specify split points when you create a table in the shell

Posted by "Joey Echeverria (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HBASE-4000?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13051612#comment-13051612 ] 

Joey Echeverria commented on HBASE-4000:
----------------------------------------

No problem :)

> 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
>             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', {SPLIT_FILE => 'splits.txt'}
> {noformat}

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

        

[jira] [Commented] (HBASE-4000) You can't specify split points when you create a table in the shell

Posted by "Hudson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/HBASE-4000?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13051623#comment-13051623 ] 

Hudson commented on HBASE-4000:
-------------------------------

Integrated in HBase-TRUNK #1978 (See [https://builds.apache.org/job/HBase-TRUNK/1978/])
    HBASE-4000 You can't specify split points when you create a table in the shell

stack : 
Files : 
* /hbase/trunk/src/main/ruby/shell/commands/create.rb
* /hbase/trunk/CHANGES.txt
* /hbase/trunk/src/main/ruby/hbase.rb
* /hbase/trunk/src/main/ruby/hbase/admin.rb


> 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
>             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', {SPLIT_FILE => 'splits.txt'}
> {noformat}

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