You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "Andrew Purtell (JIRA)" <ji...@apache.org> on 2009/09/01 18:18:32 UTC

[jira] Created: (HBASE-1807) KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues

KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues
----------------------------------------------------------------------------------------

                 Key: HBASE-1807
                 URL: https://issues.apache.org/jira/browse/HBASE-1807
             Project: Hadoop HBase
          Issue Type: New Feature
            Reporter: Andrew Purtell
            Assignee: Andrew Purtell
            Priority: Minor
             Fix For: 0.20.0


From: Angus He up on hbase-user:
{quote}
Subject: Is there any ways to retrieve values whose columns match specific regular expression?
Is this functionality available in the current implementation? If not, is there any plans on this?
{quote}

See attached patch. Low impact change, can go into 0.20.0. 


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


[jira] Updated: (HBASE-1807) KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues

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

Andrew Purtell updated HBASE-1807:
----------------------------------

    Attachment:     (was: HBASE-1807.patch)

> KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues
> ----------------------------------------------------------------------------------------
>
>                 Key: HBASE-1807
>                 URL: https://issues.apache.org/jira/browse/HBASE-1807
>             Project: Hadoop HBase
>          Issue Type: New Feature
>            Reporter: Andrew Purtell
>            Assignee: Andrew Purtell
>            Priority: Minor
>             Fix For: 0.20.0
>
>
> From: Angus He up on hbase-user:
> {quote}
> Subject: Is there any ways to retrieve values whose columns match specific regular expression?
> Is this functionality available in the current implementation? If not, is there any plans on this?
> {quote}
> See attached patch. Low impact change, can go into 0.20.0. 

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


[jira] Commented: (HBASE-1807) KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues

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

Andrew Purtell commented on HBASE-1807:
---------------------------------------

One minor optimization:

{code}
   public ReturnCode filterKeyValue(KeyValue v) {
-    if (doCompare(rowCompareOp, rowComparator, v.getBuffer(),
-        v.getKeyOffset(), v.getKeyLength())) {
-      return ReturnCode.NEXT_ROW;
     }
     ReturnCode rc = ReturnCode.INCLUDE;
     if (doCompare(familyCompareOp, familyComparator, v.getBuffer(),
         v.getFamilyOffset(), v.getFamilyLength())) {
       rc = ReturnCode.SKIP;
     }
     if (rc == ReturnCode.INCLUDE) {
       if (v.getQualifierLength() > 0) {
         if (doCompare(qualifierCompareOp, qualifierComparator, v.getBuffer(), 
             v.getQualifierOffset(), v.getQualifierLength())) {
           rc = ReturnCode.SKIP;
         }
       }
     }
     return rc;
   }
{code}
 
since I just realized that filterKeyValue is only called if filterRowKey passes.

> KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues
> ----------------------------------------------------------------------------------------
>
>                 Key: HBASE-1807
>                 URL: https://issues.apache.org/jira/browse/HBASE-1807
>             Project: Hadoop HBase
>          Issue Type: New Feature
>            Reporter: Andrew Purtell
>            Assignee: Andrew Purtell
>            Priority: Minor
>             Fix For: 0.20.0
>
>         Attachments: HBASE-1807.patch
>
>
> From: Angus He up on hbase-user:
> {quote}
> Subject: Is there any ways to retrieve values whose columns match specific regular expression?
> Is this functionality available in the current implementation? If not, is there any plans on this?
> {quote}
> See attached patch. Low impact change, can go into 0.20.0. 

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


[jira] Commented: (HBASE-1807) KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues

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

Andrew Purtell commented on HBASE-1807:
---------------------------------------

Filtering on family was the specific request. ("Is there any ways to retrieve values whose columns match specific regular expression?") At least that is my interpretation of that wording. 

> KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues
> ----------------------------------------------------------------------------------------
>
>                 Key: HBASE-1807
>                 URL: https://issues.apache.org/jira/browse/HBASE-1807
>             Project: Hadoop HBase
>          Issue Type: New Feature
>            Reporter: Andrew Purtell
>            Assignee: Andrew Purtell
>            Priority: Minor
>             Fix For: 0.20.0
>
>         Attachments: HBASE-1807.patch
>
>
> From: Angus He up on hbase-user:
> {quote}
> Subject: Is there any ways to retrieve values whose columns match specific regular expression?
> Is this functionality available in the current implementation? If not, is there any plans on this?
> {quote}
> See attached patch. Low impact change, can go into 0.20.0. 

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


[jira] Updated: (HBASE-1807) KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues

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

Andrew Purtell updated HBASE-1807:
----------------------------------

    Attachment: HBASE-1807.patch

> KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues
> ----------------------------------------------------------------------------------------
>
>                 Key: HBASE-1807
>                 URL: https://issues.apache.org/jira/browse/HBASE-1807
>             Project: Hadoop HBase
>          Issue Type: New Feature
>            Reporter: Andrew Purtell
>            Assignee: Andrew Purtell
>            Priority: Minor
>             Fix For: 0.20.0
>
>         Attachments: HBASE-1807.patch
>
>
> From: Angus He up on hbase-user:
> {quote}
> Subject: Is there any ways to retrieve values whose columns match specific regular expression?
> Is this functionality available in the current implementation? If not, is there any plans on this?
> {quote}
> See attached patch. Low impact change, can go into 0.20.0. 

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


[jira] Updated: (HBASE-1807) KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues

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

Andrew Purtell updated HBASE-1807:
----------------------------------

    Attachment: HBASE-1807.patch

> KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues
> ----------------------------------------------------------------------------------------
>
>                 Key: HBASE-1807
>                 URL: https://issues.apache.org/jira/browse/HBASE-1807
>             Project: Hadoop HBase
>          Issue Type: New Feature
>            Reporter: Andrew Purtell
>            Assignee: Andrew Purtell
>            Priority: Minor
>             Fix For: 0.20.0
>
>
> From: Angus He up on hbase-user:
> {quote}
> Subject: Is there any ways to retrieve values whose columns match specific regular expression?
> Is this functionality available in the current implementation? If not, is there any plans on this?
> {quote}
> See attached patch. Low impact change, can go into 0.20.0. 

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


[jira] Commented: (HBASE-1807) KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues

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

Andrew Purtell commented on HBASE-1807:
---------------------------------------

RegexStringComparator and SubstringComparator are already available subclasses of WritableByteArrayComparable. 

> KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues
> ----------------------------------------------------------------------------------------
>
>                 Key: HBASE-1807
>                 URL: https://issues.apache.org/jira/browse/HBASE-1807
>             Project: Hadoop HBase
>          Issue Type: New Feature
>            Reporter: Andrew Purtell
>            Assignee: Andrew Purtell
>            Priority: Minor
>             Fix For: 0.20.0
>
>         Attachments: HBASE-1807.patch
>
>
> From: Angus He up on hbase-user:
> {quote}
> Subject: Is there any ways to retrieve values whose columns match specific regular expression?
> Is this functionality available in the current implementation? If not, is there any plans on this?
> {quote}
> See attached patch. Low impact change, can go into 0.20.0. 

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


[jira] Commented: (HBASE-1807) KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues

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

Jonathan Gray commented on HBASE-1807:
--------------------------------------

I believe they are referring to column qualifiers.  Will ask on the list.

> KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues
> ----------------------------------------------------------------------------------------
>
>                 Key: HBASE-1807
>                 URL: https://issues.apache.org/jira/browse/HBASE-1807
>             Project: Hadoop HBase
>          Issue Type: New Feature
>            Reporter: Andrew Purtell
>            Assignee: Andrew Purtell
>            Priority: Minor
>             Fix For: 0.20.0
>
>         Attachments: HBASE-1807.patch
>
>
> From: Angus He up on hbase-user:
> {quote}
> Subject: Is there any ways to retrieve values whose columns match specific regular expression?
> Is this functionality available in the current implementation? If not, is there any plans on this?
> {quote}
> See attached patch. Low impact change, can go into 0.20.0. 

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


[jira] Commented: (HBASE-1807) KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues

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

Jonathan Gray commented on HBASE-1807:
--------------------------------------

Awesome.  Then I will work on tests and documentation (oh boy!)  This is necessary though to nail down HBASE-1790

> KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues
> ----------------------------------------------------------------------------------------
>
>                 Key: HBASE-1807
>                 URL: https://issues.apache.org/jira/browse/HBASE-1807
>             Project: Hadoop HBase
>          Issue Type: New Feature
>            Reporter: Andrew Purtell
>            Assignee: Andrew Purtell
>            Priority: Minor
>             Fix For: 0.20.0
>
>         Attachments: HBASE-1807.patch
>
>
> From: Angus He up on hbase-user:
> {quote}
> Subject: Is there any ways to retrieve values whose columns match specific regular expression?
> Is this functionality available in the current implementation? If not, is there any plans on this?
> {quote}
> See attached patch. Low impact change, can go into 0.20.0. 

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


[jira] Commented: (HBASE-1807) KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues

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

stack commented on HBASE-1807:
------------------------------

Patch looks fine.  Do these filters need to be added to HBaseObjectWritable?  Pity there are no tests.  You going to add these JG?


> KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues
> ----------------------------------------------------------------------------------------
>
>                 Key: HBASE-1807
>                 URL: https://issues.apache.org/jira/browse/HBASE-1807
>             Project: Hadoop HBase
>          Issue Type: New Feature
>            Reporter: Andrew Purtell
>            Assignee: Andrew Purtell
>            Priority: Minor
>             Fix For: 0.20.0
>
>         Attachments: HBASE-1807.patch
>
>
> From: Angus He up on hbase-user:
> {quote}
> Subject: Is there any ways to retrieve values whose columns match specific regular expression?
> Is this functionality available in the current implementation? If not, is there any plans on this?
> {quote}
> See attached patch. Low impact change, can go into 0.20.0. 

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


[jira] Updated: (HBASE-1807) KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues

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

Andrew Purtell updated HBASE-1807:
----------------------------------

    Attachment: HBASE-1807.patch

> KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues
> ----------------------------------------------------------------------------------------
>
>                 Key: HBASE-1807
>                 URL: https://issues.apache.org/jira/browse/HBASE-1807
>             Project: Hadoop HBase
>          Issue Type: New Feature
>            Reporter: Andrew Purtell
>            Assignee: Andrew Purtell
>            Priority: Minor
>             Fix For: 0.20.0
>
>         Attachments: HBASE-1807.patch
>
>
> From: Angus He up on hbase-user:
> {quote}
> Subject: Is there any ways to retrieve values whose columns match specific regular expression?
> Is this functionality available in the current implementation? If not, is there any plans on this?
> {quote}
> See attached patch. Low impact change, can go into 0.20.0. 

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


[jira] Commented: (HBASE-1807) KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues

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

Angus He commented on HBASE-1807:
---------------------------------

Sorry for the delay.
I mean columns qualifiers.Since column families are pre-defined in table schema,  the ability to match column qualifiers by regex may be more useful in reality.

> KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues
> ----------------------------------------------------------------------------------------
>
>                 Key: HBASE-1807
>                 URL: https://issues.apache.org/jira/browse/HBASE-1807
>             Project: Hadoop HBase
>          Issue Type: New Feature
>            Reporter: Andrew Purtell
>            Assignee: Andrew Purtell
>            Priority: Minor
>             Fix For: 0.20.0
>
>         Attachments: HBASE-1807.patch
>
>
> From: Angus He up on hbase-user:
> {quote}
> Subject: Is there any ways to retrieve values whose columns match specific regular expression?
> Is this functionality available in the current implementation? If not, is there any plans on this?
> {quote}
> See attached patch. Low impact change, can go into 0.20.0. 

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


[jira] Commented: (HBASE-1807) KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues

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

Jonathan Gray commented on HBASE-1807:
--------------------------------------

Does everyone think it's worth it / makes sense to include family in here?  Andrew's patch includes it but are things like regex/prefix valuable on family?  We should discourage people from filtering families in/out using filters as opening them in the first place is costly... everyone should use the API directly.

> KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues
> ----------------------------------------------------------------------------------------
>
>                 Key: HBASE-1807
>                 URL: https://issues.apache.org/jira/browse/HBASE-1807
>             Project: Hadoop HBase
>          Issue Type: New Feature
>            Reporter: Andrew Purtell
>            Assignee: Andrew Purtell
>            Priority: Minor
>             Fix For: 0.20.0
>
>         Attachments: HBASE-1807.patch
>
>
> From: Angus He up on hbase-user:
> {quote}
> Subject: Is there any ways to retrieve values whose columns match specific regular expression?
> Is this functionality available in the current implementation? If not, is there any plans on this?
> {quote}
> See attached patch. Low impact change, can go into 0.20.0. 

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


[jira] Commented: (HBASE-1807) KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues

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

Jonathan Gray commented on HBASE-1807:
--------------------------------------

This patch looks excellent, Andrew! 

I'm working on some other filters right now, but could probably work them into the key filter (regex, for example, would just be a WritableByteArrayComparable?)

We need tests and should probably put some usage documentation in the filter package overview.  I'm planning on spending time with filters today so if you don't have time let me know and I can build on your patch today.

> KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues
> ----------------------------------------------------------------------------------------
>
>                 Key: HBASE-1807
>                 URL: https://issues.apache.org/jira/browse/HBASE-1807
>             Project: Hadoop HBase
>          Issue Type: New Feature
>            Reporter: Andrew Purtell
>            Assignee: Andrew Purtell
>            Priority: Minor
>             Fix For: 0.20.0
>
>         Attachments: HBASE-1807.patch
>
>
> From: Angus He up on hbase-user:
> {quote}
> Subject: Is there any ways to retrieve values whose columns match specific regular expression?
> Is this functionality available in the current implementation? If not, is there any plans on this?
> {quote}
> See attached patch. Low impact change, can go into 0.20.0. 

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


[jira] Updated: (HBASE-1807) KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues

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

Andrew Purtell updated HBASE-1807:
----------------------------------

    Status: Patch Available  (was: Open)

> KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues
> ----------------------------------------------------------------------------------------
>
>                 Key: HBASE-1807
>                 URL: https://issues.apache.org/jira/browse/HBASE-1807
>             Project: Hadoop HBase
>          Issue Type: New Feature
>            Reporter: Andrew Purtell
>            Assignee: Andrew Purtell
>            Priority: Minor
>             Fix For: 0.20.0
>
>         Attachments: HBASE-1807.patch
>
>
> From: Angus He up on hbase-user:
> {quote}
> Subject: Is there any ways to retrieve values whose columns match specific regular expression?
> Is this functionality available in the current implementation? If not, is there any plans on this?
> {quote}
> See attached patch. Low impact change, can go into 0.20.0. 

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


[jira] Updated: (HBASE-1807) KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues

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

Andrew Purtell updated HBASE-1807:
----------------------------------

    Attachment:     (was: HBASE-1807.patch)

> KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues
> ----------------------------------------------------------------------------------------
>
>                 Key: HBASE-1807
>                 URL: https://issues.apache.org/jira/browse/HBASE-1807
>             Project: Hadoop HBase
>          Issue Type: New Feature
>            Reporter: Andrew Purtell
>            Assignee: Andrew Purtell
>            Priority: Minor
>             Fix For: 0.20.0
>
>
> From: Angus He up on hbase-user:
> {quote}
> Subject: Is there any ways to retrieve values whose columns match specific regular expression?
> Is this functionality available in the current implementation? If not, is there any plans on this?
> {quote}
> See attached patch. Low impact change, can go into 0.20.0. 

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


[jira] Commented: (HBASE-1807) KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues

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

Jonathan Gray commented on HBASE-1807:
--------------------------------------

Yes, will try to add tests on these when working on other filter issues.

> KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues
> ----------------------------------------------------------------------------------------
>
>                 Key: HBASE-1807
>                 URL: https://issues.apache.org/jira/browse/HBASE-1807
>             Project: Hadoop HBase
>          Issue Type: New Feature
>            Reporter: Andrew Purtell
>            Assignee: Andrew Purtell
>            Priority: Minor
>             Fix For: 0.20.0
>
>         Attachments: HBASE-1807.patch
>
>
> From: Angus He up on hbase-user:
> {quote}
> Subject: Is there any ways to retrieve values whose columns match specific regular expression?
> Is this functionality available in the current implementation? If not, is there any plans on this?
> {quote}
> See attached patch. Low impact change, can go into 0.20.0. 

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


[jira] Commented: (HBASE-1807) KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues

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

Andrew Purtell commented on HBASE-1807:
---------------------------------------

Hey JG, take it away. 

> KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues
> ----------------------------------------------------------------------------------------
>
>                 Key: HBASE-1807
>                 URL: https://issues.apache.org/jira/browse/HBASE-1807
>             Project: Hadoop HBase
>          Issue Type: New Feature
>            Reporter: Andrew Purtell
>            Assignee: Andrew Purtell
>            Priority: Minor
>             Fix For: 0.20.0
>
>         Attachments: HBASE-1807.patch
>
>
> From: Angus He up on hbase-user:
> {quote}
> Subject: Is there any ways to retrieve values whose columns match specific regular expression?
> Is this functionality available in the current implementation? If not, is there any plans on this?
> {quote}
> See attached patch. Low impact change, can go into 0.20.0. 

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


[jira] Updated: (HBASE-1807) KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues

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

Jonathan Gray updated HBASE-1807:
---------------------------------

      Resolution: Fixed
        Assignee: Jonathan Gray  (was: Andrew Purtell)
    Hadoop Flags: [Reviewed]
          Status: Resolved  (was: Patch Available)

Fixed with commit of HBASE-1790.

> KeyFilter for filtering based on comparsions of row, column, and qualifiers of KeyValues
> ----------------------------------------------------------------------------------------
>
>                 Key: HBASE-1807
>                 URL: https://issues.apache.org/jira/browse/HBASE-1807
>             Project: Hadoop HBase
>          Issue Type: New Feature
>            Reporter: Andrew Purtell
>            Assignee: Jonathan Gray
>            Priority: Minor
>             Fix For: 0.20.0
>
>         Attachments: HBASE-1807.patch
>
>
> From: Angus He up on hbase-user:
> {quote}
> Subject: Is there any ways to retrieve values whose columns match specific regular expression?
> Is this functionality available in the current implementation? If not, is there any plans on this?
> {quote}
> See attached patch. Low impact change, can go into 0.20.0. 

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