You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by "Gregory Chanan (JIRA)" <ji...@apache.org> on 2012/10/20 02:44:11 UTC

[jira] [Created] (HBASE-7019) Can't pass SplitAlgo in hbase shell

Gregory Chanan created HBASE-7019:
-------------------------------------

             Summary: Can't pass SplitAlgo in hbase shell
                 Key: HBASE-7019
                 URL: https://issues.apache.org/jira/browse/HBASE-7019
             Project: HBase
          Issue Type: Bug
    Affects Versions: 0.96.0
            Reporter: Gregory Chanan
            Assignee: Gregory Chanan
             Fix For: 0.96.0


{noformat}
hbase(main):002:0> create 't1', 'f1', {NUMREGIONS => 15, SPLITALGO => 'HexStringSplit'}

ERROR: uninitialized constant Hbase::Admin::RegionSplitter
{noformat}

--
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

[jira] [Comment Edited] (HBASE-7019) Can't pass SplitAlgo in hbase shell

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

Ted Yu edited comment on HBASE-7019 at 10/20/12 2:17 AM:
---------------------------------------------------------

Can we exercise passing SPLITALGO in test .rb file ?
e.g. in src/test/ruby/test_helper.rb :
{code}
    def create_test_table(name)
      # Create the table if needed
      unless admin.exists?(name)
        admin.create name, [{'NAME' => 'x', 'VERSIONS' => 5}, 'y']
{code}
                
      was (Author: yuzhihong@gmail.com):
    Can we exercise passing SPLITALGO in test .rb file.
e.g. in src/test/ruby/test_helper.rb :
{code}
    def create_test_table(name)
      # Create the table if needed
      unless admin.exists?(name)
        admin.create name, [{'NAME' => 'x', 'VERSIONS' => 5}, 'y']
{code}
                  
> Can't pass SplitAlgo in hbase shell
> -----------------------------------
>
>                 Key: HBASE-7019
>                 URL: https://issues.apache.org/jira/browse/HBASE-7019
>             Project: HBase
>          Issue Type: Bug
>          Components: shell
>    Affects Versions: 0.96.0
>            Reporter: Gregory Chanan
>            Assignee: Gregory Chanan
>             Fix For: 0.96.0
>
>         Attachments: HBASE-7019.patch
>
>
> {noformat}
> hbase(main):002:0> create 't1', 'f1', {NUMREGIONS => 15, SPLITALGO => 'HexStringSplit'}
> ERROR: uninitialized constant Hbase::Admin::RegionSplitter
> {noformat}

--
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

[jira] [Updated] (HBASE-7019) Can't pass SplitAlgo in hbase shell

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

Gregory Chanan updated HBASE-7019:
----------------------------------

    Component/s: shell
    
> Can't pass SplitAlgo in hbase shell
> -----------------------------------
>
>                 Key: HBASE-7019
>                 URL: https://issues.apache.org/jira/browse/HBASE-7019
>             Project: HBase
>          Issue Type: Bug
>          Components: shell
>    Affects Versions: 0.96.0
>            Reporter: Gregory Chanan
>            Assignee: Gregory Chanan
>             Fix For: 0.96.0
>
>         Attachments: HBASE-7019.patch
>
>
> {noformat}
> hbase(main):002:0> create 't1', 'f1', {NUMREGIONS => 15, SPLITALGO => 'HexStringSplit'}
> ERROR: uninitialized constant Hbase::Admin::RegionSplitter
> {noformat}

--
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

[jira] [Commented] (HBASE-7019) Can't pass SplitAlgo in hbase shell

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

Ted Yu commented on HBASE-7019:
-------------------------------

Can we exercise passing SPLITALGO in test .rb file.
e.g. in src/test/ruby/test_helper.rb :
{code}
    def create_test_table(name)
      # Create the table if needed
      unless admin.exists?(name)
        admin.create name, [{'NAME' => 'x', 'VERSIONS' => 5}, 'y']
{code}
                
> Can't pass SplitAlgo in hbase shell
> -----------------------------------
>
>                 Key: HBASE-7019
>                 URL: https://issues.apache.org/jira/browse/HBASE-7019
>             Project: HBase
>          Issue Type: Bug
>          Components: shell
>    Affects Versions: 0.96.0
>            Reporter: Gregory Chanan
>            Assignee: Gregory Chanan
>             Fix For: 0.96.0
>
>         Attachments: HBASE-7019.patch
>
>
> {noformat}
> hbase(main):002:0> create 't1', 'f1', {NUMREGIONS => 15, SPLITALGO => 'HexStringSplit'}
> ERROR: uninitialized constant Hbase::Admin::RegionSplitter
> {noformat}

--
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

[jira] [Updated] (HBASE-7019) Can't pass SplitAlgo in hbase shell

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

Gregory Chanan updated HBASE-7019:
----------------------------------

    Status: Patch Available  (was: Open)
    
> Can't pass SplitAlgo in hbase shell
> -----------------------------------
>
>                 Key: HBASE-7019
>                 URL: https://issues.apache.org/jira/browse/HBASE-7019
>             Project: HBase
>          Issue Type: Bug
>          Components: shell
>    Affects Versions: 0.96.0
>            Reporter: Gregory Chanan
>            Assignee: Gregory Chanan
>             Fix For: 0.96.0
>
>         Attachments: HBASE-7019.patch
>
>
> {noformat}
> hbase(main):002:0> create 't1', 'f1', {NUMREGIONS => 15, SPLITALGO => 'HexStringSplit'}
> ERROR: uninitialized constant Hbase::Admin::RegionSplitter
> {noformat}

--
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

[jira] [Commented] (HBASE-7019) Can't pass SplitAlgo in hbase shell

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

Gregory Chanan commented on HBASE-7019:
---------------------------------------

Ran failing tests locally, they passed.  Going to commit to trunk.
                
> Can't pass SplitAlgo in hbase shell
> -----------------------------------
>
>                 Key: HBASE-7019
>                 URL: https://issues.apache.org/jira/browse/HBASE-7019
>             Project: HBase
>          Issue Type: Bug
>          Components: shell
>    Affects Versions: 0.96.0
>            Reporter: Gregory Chanan
>            Assignee: Gregory Chanan
>             Fix For: 0.96.0
>
>         Attachments: HBASE-7019.patch, HBASE-7019-v2.patch
>
>
> {noformat}
> hbase(main):002:0> create 't1', 'f1', {NUMREGIONS => 15, SPLITALGO => 'HexStringSplit'}
> ERROR: uninitialized constant Hbase::Admin::RegionSplitter
> {noformat}

--
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

[jira] [Updated] (HBASE-7019) Can't pass SplitAlgo in hbase shell

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

Gregory Chanan updated HBASE-7019:
----------------------------------

    Attachment: HBASE-7019.patch
    
> Can't pass SplitAlgo in hbase shell
> -----------------------------------
>
>                 Key: HBASE-7019
>                 URL: https://issues.apache.org/jira/browse/HBASE-7019
>             Project: HBase
>          Issue Type: Bug
>          Components: shell
>    Affects Versions: 0.96.0
>            Reporter: Gregory Chanan
>            Assignee: Gregory Chanan
>             Fix For: 0.96.0
>
>         Attachments: HBASE-7019.patch
>
>
> {noformat}
> hbase(main):002:0> create 't1', 'f1', {NUMREGIONS => 15, SPLITALGO => 'HexStringSplit'}
> ERROR: uninitialized constant Hbase::Admin::RegionSplitter
> {noformat}

--
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

[jira] [Commented] (HBASE-7019) Can't pass SplitAlgo in hbase shell

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

Hadoop QA commented on HBASE-7019:
----------------------------------

{color:red}-1 overall{color}.  Here are the results of testing the latest attachment 
  http://issues.apache.org/jira/secure/attachment/12550113/HBASE-7019.patch
  against trunk revision .

    {color:green}+1 @author{color}.  The patch does not contain any @author tags.

    {color:red}-1 tests included{color}.  The patch doesn't appear to include any new or modified tests.
                        Please justify why no new tests are needed for this patch.
                        Also please list what manual steps were performed to verify this patch.

    {color:green}+1 hadoop2.0{color}.  The patch compiles against the hadoop 2.0 profile.

    {color:red}-1 javadoc{color}.  The javadoc tool appears to have generated 82 warning messages.

    {color:green}+1 javac{color}.  The applied patch does not increase the total number of javac compiler warnings.

    {color:red}-1 findbugs{color}.  The patch appears to introduce 4 new Findbugs (version 1.3.9) warnings.

    {color:green}+1 release audit{color}.  The applied patch does not increase the total number of release audit warnings.

     {color:red}-1 core tests{color}.  The patch failed these unit tests:
                       org.apache.hadoop.hbase.io.hfile.TestForceCacheImportantBlocks

Test results: https://builds.apache.org/job/PreCommit-HBASE-Build/3097//testReport/
Findbugs warnings: https://builds.apache.org/job/PreCommit-HBASE-Build/3097//artifact/trunk/patchprocess/newPatchFindbugsWarningshbase-hadoop2-compat.html
Findbugs warnings: https://builds.apache.org/job/PreCommit-HBASE-Build/3097//artifact/trunk/patchprocess/newPatchFindbugsWarningshbase-server.html
Findbugs warnings: https://builds.apache.org/job/PreCommit-HBASE-Build/3097//artifact/trunk/patchprocess/newPatchFindbugsWarningshbase-hadoop1-compat.html
Findbugs warnings: https://builds.apache.org/job/PreCommit-HBASE-Build/3097//artifact/trunk/patchprocess/newPatchFindbugsWarningshbase-common.html
Findbugs warnings: https://builds.apache.org/job/PreCommit-HBASE-Build/3097//artifact/trunk/patchprocess/newPatchFindbugsWarningshbase-hadoop-compat.html
Console output: https://builds.apache.org/job/PreCommit-HBASE-Build/3097//console

This message is automatically generated.
                
> Can't pass SplitAlgo in hbase shell
> -----------------------------------
>
>                 Key: HBASE-7019
>                 URL: https://issues.apache.org/jira/browse/HBASE-7019
>             Project: HBase
>          Issue Type: Bug
>          Components: shell
>    Affects Versions: 0.96.0
>            Reporter: Gregory Chanan
>            Assignee: Gregory Chanan
>             Fix For: 0.96.0
>
>         Attachments: HBASE-7019.patch
>
>
> {noformat}
> hbase(main):002:0> create 't1', 'f1', {NUMREGIONS => 15, SPLITALGO => 'HexStringSplit'}
> ERROR: uninitialized constant Hbase::Admin::RegionSplitter
> {noformat}

--
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

[jira] [Updated] (HBASE-7019) Can't pass SplitAlgo in hbase shell

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

Gregory Chanan updated HBASE-7019:
----------------------------------

    Resolution: Fixed
        Status: Resolved  (was: Patch Available)

Committed to trunk.  Thanks for the review, Ted.
                
> Can't pass SplitAlgo in hbase shell
> -----------------------------------
>
>                 Key: HBASE-7019
>                 URL: https://issues.apache.org/jira/browse/HBASE-7019
>             Project: HBase
>          Issue Type: Bug
>          Components: shell
>    Affects Versions: 0.96.0
>            Reporter: Gregory Chanan
>            Assignee: Gregory Chanan
>             Fix For: 0.96.0
>
>         Attachments: HBASE-7019.patch, HBASE-7019-v2.patch
>
>
> {noformat}
> hbase(main):002:0> create 't1', 'f1', {NUMREGIONS => 15, SPLITALGO => 'HexStringSplit'}
> ERROR: uninitialized constant Hbase::Admin::RegionSplitter
> {noformat}

--
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

[jira] [Updated] (HBASE-7019) Can't pass SplitAlgo in hbase shell

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

Gregory Chanan updated HBASE-7019:
----------------------------------

    Attachment: HBASE-7019-v2.patch

Attached v2 patch.

Includes test case.  I ran the test case with the command:
mvn test -PlocalTests -Dtest=org.apache.hadoop.hbase.client.TestShell

it passes with patch, fails without.
                
> Can't pass SplitAlgo in hbase shell
> -----------------------------------
>
>                 Key: HBASE-7019
>                 URL: https://issues.apache.org/jira/browse/HBASE-7019
>             Project: HBase
>          Issue Type: Bug
>          Components: shell
>    Affects Versions: 0.96.0
>            Reporter: Gregory Chanan
>            Assignee: Gregory Chanan
>             Fix For: 0.96.0
>
>         Attachments: HBASE-7019.patch, HBASE-7019-v2.patch
>
>
> {noformat}
> hbase(main):002:0> create 't1', 'f1', {NUMREGIONS => 15, SPLITALGO => 'HexStringSplit'}
> ERROR: uninitialized constant Hbase::Admin::RegionSplitter
> {noformat}

--
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

[jira] [Commented] (HBASE-7019) Can't pass SplitAlgo in hbase shell

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

Hadoop QA commented on HBASE-7019:
----------------------------------

{color:red}-1 overall{color}.  Here are the results of testing the latest attachment 
  http://issues.apache.org/jira/secure/attachment/12550343/HBASE-7019-v2.patch
  against trunk revision .

    {color:green}+1 @author{color}.  The patch does not contain any @author tags.

    {color:green}+1 tests included{color}.  The patch appears to include 3 new or modified tests.

    {color:green}+1 hadoop2.0{color}.  The patch compiles against the hadoop 2.0 profile.

    {color:red}-1 javadoc{color}.  The javadoc tool appears to have generated 82 warning messages.

    {color:green}+1 javac{color}.  The applied patch does not increase the total number of javac compiler warnings.

    {color:red}-1 findbugs{color}.  The patch appears to introduce 4 new Findbugs (version 1.3.9) warnings.

    {color:green}+1 release audit{color}.  The applied patch does not increase the total number of release audit warnings.

     {color:red}-1 core tests{color}.  The patch failed these unit tests:
                       org.apache.hadoop.hbase.client.TestHCM
                  org.apache.hadoop.hbase.master.TestMasterMetrics

Test results: https://builds.apache.org/job/PreCommit-HBASE-Build/3113//testReport/
Findbugs warnings: https://builds.apache.org/job/PreCommit-HBASE-Build/3113//artifact/trunk/patchprocess/newPatchFindbugsWarningshbase-hadoop2-compat.html
Findbugs warnings: https://builds.apache.org/job/PreCommit-HBASE-Build/3113//artifact/trunk/patchprocess/newPatchFindbugsWarningshbase-server.html
Findbugs warnings: https://builds.apache.org/job/PreCommit-HBASE-Build/3113//artifact/trunk/patchprocess/newPatchFindbugsWarningshbase-hadoop1-compat.html
Findbugs warnings: https://builds.apache.org/job/PreCommit-HBASE-Build/3113//artifact/trunk/patchprocess/newPatchFindbugsWarningshbase-common.html
Findbugs warnings: https://builds.apache.org/job/PreCommit-HBASE-Build/3113//artifact/trunk/patchprocess/newPatchFindbugsWarningshbase-hadoop-compat.html
Console output: https://builds.apache.org/job/PreCommit-HBASE-Build/3113//console

This message is automatically generated.
                
> Can't pass SplitAlgo in hbase shell
> -----------------------------------
>
>                 Key: HBASE-7019
>                 URL: https://issues.apache.org/jira/browse/HBASE-7019
>             Project: HBase
>          Issue Type: Bug
>          Components: shell
>    Affects Versions: 0.96.0
>            Reporter: Gregory Chanan
>            Assignee: Gregory Chanan
>             Fix For: 0.96.0
>
>         Attachments: HBASE-7019.patch, HBASE-7019-v2.patch
>
>
> {noformat}
> hbase(main):002:0> create 't1', 'f1', {NUMREGIONS => 15, SPLITALGO => 'HexStringSplit'}
> ERROR: uninitialized constant Hbase::Admin::RegionSplitter
> {noformat}

--
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

[jira] [Commented] (HBASE-7019) Can't pass SplitAlgo in hbase shell

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

Ted Yu commented on HBASE-7019:
-------------------------------

+1 on patch v2.
                
> Can't pass SplitAlgo in hbase shell
> -----------------------------------
>
>                 Key: HBASE-7019
>                 URL: https://issues.apache.org/jira/browse/HBASE-7019
>             Project: HBase
>          Issue Type: Bug
>          Components: shell
>    Affects Versions: 0.96.0
>            Reporter: Gregory Chanan
>            Assignee: Gregory Chanan
>             Fix For: 0.96.0
>
>         Attachments: HBASE-7019.patch, HBASE-7019-v2.patch
>
>
> {noformat}
> hbase(main):002:0> create 't1', 'f1', {NUMREGIONS => 15, SPLITALGO => 'HexStringSplit'}
> ERROR: uninitialized constant Hbase::Admin::RegionSplitter
> {noformat}

--
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

[jira] [Commented] (HBASE-7019) Can't pass SplitAlgo in hbase shell

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

stack commented on HBASE-7019:
------------------------------

+1 on patch (Might want to do as Ted suggests too on commit)?
                
> Can't pass SplitAlgo in hbase shell
> -----------------------------------
>
>                 Key: HBASE-7019
>                 URL: https://issues.apache.org/jira/browse/HBASE-7019
>             Project: HBase
>          Issue Type: Bug
>          Components: shell
>    Affects Versions: 0.96.0
>            Reporter: Gregory Chanan
>            Assignee: Gregory Chanan
>             Fix For: 0.96.0
>
>         Attachments: HBASE-7019.patch
>
>
> {noformat}
> hbase(main):002:0> create 't1', 'f1', {NUMREGIONS => 15, SPLITALGO => 'HexStringSplit'}
> ERROR: uninitialized constant Hbase::Admin::RegionSplitter
> {noformat}

--
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

[jira] [Commented] (HBASE-7019) Can't pass SplitAlgo in hbase shell

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

Hudson commented on HBASE-7019:
-------------------------------

Integrated in HBase-TRUNK #3473 (See [https://builds.apache.org/job/HBase-TRUNK/3473/])
    HBASE-7019 Can't pass SplitAlgo in hbase shell (Revision 1401091)

     Result = FAILURE
gchanan : 
Files : 
* /hbase/trunk/hbase-server/src/main/ruby/hbase/admin.rb
* /hbase/trunk/hbase-server/src/test/ruby/hbase/admin_test.rb

                
> Can't pass SplitAlgo in hbase shell
> -----------------------------------
>
>                 Key: HBASE-7019
>                 URL: https://issues.apache.org/jira/browse/HBASE-7019
>             Project: HBase
>          Issue Type: Bug
>          Components: shell
>    Affects Versions: 0.96.0
>            Reporter: Gregory Chanan
>            Assignee: Gregory Chanan
>             Fix For: 0.96.0
>
>         Attachments: HBASE-7019.patch, HBASE-7019-v2.patch
>
>
> {noformat}
> hbase(main):002:0> create 't1', 'f1', {NUMREGIONS => 15, SPLITALGO => 'HexStringSplit'}
> ERROR: uninitialized constant Hbase::Admin::RegionSplitter
> {noformat}

--
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

[jira] [Commented] (HBASE-7019) Can't pass SplitAlgo in hbase shell

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

Hudson commented on HBASE-7019:
-------------------------------

Integrated in HBase-TRUNK-on-Hadoop-2.0.0 #231 (See [https://builds.apache.org/job/HBase-TRUNK-on-Hadoop-2.0.0/231/])
    HBASE-7019 Can't pass SplitAlgo in hbase shell (Revision 1401091)

     Result = FAILURE
gchanan : 
Files : 
* /hbase/trunk/hbase-server/src/main/ruby/hbase/admin.rb
* /hbase/trunk/hbase-server/src/test/ruby/hbase/admin_test.rb

                
> Can't pass SplitAlgo in hbase shell
> -----------------------------------
>
>                 Key: HBASE-7019
>                 URL: https://issues.apache.org/jira/browse/HBASE-7019
>             Project: HBase
>          Issue Type: Bug
>          Components: shell
>    Affects Versions: 0.96.0
>            Reporter: Gregory Chanan
>            Assignee: Gregory Chanan
>             Fix For: 0.96.0
>
>         Attachments: HBASE-7019.patch, HBASE-7019-v2.patch
>
>
> {noformat}
> hbase(main):002:0> create 't1', 'f1', {NUMREGIONS => 15, SPLITALGO => 'HexStringSplit'}
> ERROR: uninitialized constant Hbase::Admin::RegionSplitter
> {noformat}

--
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