You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by "Kannan Muthukkaruppan (JIRA)" <ji...@apache.org> on 2010/09/01 02:23:53 UTC

[jira] Created: (HBASE-2944) cannot alter bloomfilter setting for a column family from hbase shell

cannot alter bloomfilter setting for a column family from hbase shell
---------------------------------------------------------------------

                 Key: HBASE-2944
                 URL: https://issues.apache.org/jira/browse/HBASE-2944
             Project: HBase
          Issue Type: Bug
            Reporter: Kannan Muthukkaruppan
            Priority: Minor


{code}
hbase(main):002:0> create 't1', 'cf'
create 't1', 'cf'
0 row(s) in 1.1320 seconds

hbase(main):003:0> disable 't1'
disable 't1'
0 row(s) in 1.0810 seconds

hbase(main):004:0> alter 't1', {NAME => 'cf', BLOOMFILTER => 'ROW'}
alter 't1', {NAME => 'cf', BLOOMFILTER => 'ROW'}

ERROR: no constructor with arguments matching [class org.jruby.java.proxies.ArrayJavaProxy, class org.jruby.RubyFixnum, class org.jruby.RubyString, class org.jruby.RubyBoolean, class org.jruby.RubyBoolean, class org.jruby.RubyFixnum, class org.jruby.RubyFixnum, class org.jruby.RubyBoolean, class org.jruby.RubyFixnum] on object #<Java::OrgApacheHadoopHbase::HColumnDescriptor:0x1e4218cb>
{code}

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


[jira] Resolved: (HBASE-2944) cannot alter bloomfilter setting for a column family from hbase shell

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

Jonathan Gray resolved HBASE-2944.
----------------------------------

    Fix Version/s: 0.90.0
       Resolution: Fixed

Committed to trunk.  Thanks Kannan!

> cannot alter bloomfilter setting for a column family from hbase shell
> ---------------------------------------------------------------------
>
>                 Key: HBASE-2944
>                 URL: https://issues.apache.org/jira/browse/HBASE-2944
>             Project: HBase
>          Issue Type: Bug
>            Reporter: Kannan Muthukkaruppan
>            Assignee: Kannan Muthukkaruppan
>            Priority: Minor
>             Fix For: 0.90.0
>
>         Attachments: HBASE-2944.txt
>
>
> {code}
> hbase(main):002:0> create 't1', 'cf'
> create 't1', 'cf'
> 0 row(s) in 1.1320 seconds
> hbase(main):003:0> disable 't1'
> disable 't1'
> 0 row(s) in 1.0810 seconds
> hbase(main):004:0> alter 't1', {NAME => 'cf', BLOOMFILTER => 'ROW'}
> alter 't1', {NAME => 'cf', BLOOMFILTER => 'ROW'}
> ERROR: no constructor with arguments matching [class org.jruby.java.proxies.ArrayJavaProxy, class org.jruby.RubyFixnum, class org.jruby.RubyString, class org.jruby.RubyBoolean, class org.jruby.RubyBoolean, class org.jruby.RubyFixnum, class org.jruby.RubyFixnum, class org.jruby.RubyBoolean, class org.jruby.RubyFixnum] on object #<Java::OrgApacheHadoopHbase::HColumnDescriptor:0x1e4218cb>
> {code}

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


[jira] Updated: (HBASE-2944) cannot alter bloomfilter setting for a column family from hbase shell

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

Kannan Muthukkaruppan updated HBASE-2944:
-----------------------------------------

    Attachment: HBASE-2944.txt

> cannot alter bloomfilter setting for a column family from hbase shell
> ---------------------------------------------------------------------
>
>                 Key: HBASE-2944
>                 URL: https://issues.apache.org/jira/browse/HBASE-2944
>             Project: HBase
>          Issue Type: Bug
>            Reporter: Kannan Muthukkaruppan
>            Priority: Minor
>         Attachments: HBASE-2944.txt
>
>
> {code}
> hbase(main):002:0> create 't1', 'cf'
> create 't1', 'cf'
> 0 row(s) in 1.1320 seconds
> hbase(main):003:0> disable 't1'
> disable 't1'
> 0 row(s) in 1.0810 seconds
> hbase(main):004:0> alter 't1', {NAME => 'cf', BLOOMFILTER => 'ROW'}
> alter 't1', {NAME => 'cf', BLOOMFILTER => 'ROW'}
> ERROR: no constructor with arguments matching [class org.jruby.java.proxies.ArrayJavaProxy, class org.jruby.RubyFixnum, class org.jruby.RubyString, class org.jruby.RubyBoolean, class org.jruby.RubyBoolean, class org.jruby.RubyFixnum, class org.jruby.RubyFixnum, class org.jruby.RubyBoolean, class org.jruby.RubyFixnum] on object #<Java::OrgApacheHadoopHbase::HColumnDescriptor:0x1e4218cb>
> {code}

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


[jira] Commented: (HBASE-2944) cannot alter bloomfilter setting for a column family from hbase shell

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

Kannan Muthukkaruppan commented on HBASE-2944:
----------------------------------------------

Minor fix needed to admin.rb script. When BLOOMFILTER type
was changed from boolean to string, looks like code path was missed.
Will upload patch shortly.


> cannot alter bloomfilter setting for a column family from hbase shell
> ---------------------------------------------------------------------
>
>                 Key: HBASE-2944
>                 URL: https://issues.apache.org/jira/browse/HBASE-2944
>             Project: HBase
>          Issue Type: Bug
>            Reporter: Kannan Muthukkaruppan
>            Priority: Minor
>
> {code}
> hbase(main):002:0> create 't1', 'cf'
> create 't1', 'cf'
> 0 row(s) in 1.1320 seconds
> hbase(main):003:0> disable 't1'
> disable 't1'
> 0 row(s) in 1.0810 seconds
> hbase(main):004:0> alter 't1', {NAME => 'cf', BLOOMFILTER => 'ROW'}
> alter 't1', {NAME => 'cf', BLOOMFILTER => 'ROW'}
> ERROR: no constructor with arguments matching [class org.jruby.java.proxies.ArrayJavaProxy, class org.jruby.RubyFixnum, class org.jruby.RubyString, class org.jruby.RubyBoolean, class org.jruby.RubyBoolean, class org.jruby.RubyFixnum, class org.jruby.RubyFixnum, class org.jruby.RubyBoolean, class org.jruby.RubyFixnum] on object #<Java::OrgApacheHadoopHbase::HColumnDescriptor:0x1e4218cb>
> {code}

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


[jira] Assigned: (HBASE-2944) cannot alter bloomfilter setting for a column family from hbase shell

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

Jonathan Gray reassigned HBASE-2944:
------------------------------------

    Assignee: Kannan Muthukkaruppan

> cannot alter bloomfilter setting for a column family from hbase shell
> ---------------------------------------------------------------------
>
>                 Key: HBASE-2944
>                 URL: https://issues.apache.org/jira/browse/HBASE-2944
>             Project: HBase
>          Issue Type: Bug
>            Reporter: Kannan Muthukkaruppan
>            Assignee: Kannan Muthukkaruppan
>            Priority: Minor
>         Attachments: HBASE-2944.txt
>
>
> {code}
> hbase(main):002:0> create 't1', 'cf'
> create 't1', 'cf'
> 0 row(s) in 1.1320 seconds
> hbase(main):003:0> disable 't1'
> disable 't1'
> 0 row(s) in 1.0810 seconds
> hbase(main):004:0> alter 't1', {NAME => 'cf', BLOOMFILTER => 'ROW'}
> alter 't1', {NAME => 'cf', BLOOMFILTER => 'ROW'}
> ERROR: no constructor with arguments matching [class org.jruby.java.proxies.ArrayJavaProxy, class org.jruby.RubyFixnum, class org.jruby.RubyString, class org.jruby.RubyBoolean, class org.jruby.RubyBoolean, class org.jruby.RubyFixnum, class org.jruby.RubyFixnum, class org.jruby.RubyBoolean, class org.jruby.RubyFixnum] on object #<Java::OrgApacheHadoopHbase::HColumnDescriptor:0x1e4218cb>
> {code}

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