[jira] [Updated] (HBASE-16691) Optimize KeyOnlyFilter by utilizing KeyOnlyCell

2016-09-27 Thread Anoop Sam John (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-16691?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Anoop Sam John updated HBASE-16691:
---
Resolution: Fixed
Status: Resolved  (was: Patch Available)

Committed V2 patch. Resolving again.

> Optimize KeyOnlyFilter by utilizing KeyOnlyCell
> ---
>
> Key: HBASE-16691
> URL: https://issues.apache.org/jira/browse/HBASE-16691
> Project: HBase
>  Issue Type: Improvement
>Reporter: binlijin
>Assignee: binlijin
> Fix For: 2.0.0
>
> Attachments: HBASE-16691-addendum.patch, HBASE-16691-master.patch, 
> HBASE-16691-master_v2.patch
>
>
> In KeyOnlyFilter#transformCell will return a KeyOnlyCell that have no value 
> or has valueLength as value, current will copy all row keys into a new byte[] 
> and new a KeyValue, we can eliminate the copy and have a wrap KeyOnlyCell 
> that ignore the cell's value.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (HBASE-16691) Optimize KeyOnlyFilter by utilizing KeyOnlyCell

2016-09-27 Thread binlijin (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-16691?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

binlijin updated HBASE-16691:
-
Status: Patch Available  (was: Reopened)

> Optimize KeyOnlyFilter by utilizing KeyOnlyCell
> ---
>
> Key: HBASE-16691
> URL: https://issues.apache.org/jira/browse/HBASE-16691
> Project: HBase
>  Issue Type: Improvement
>Reporter: binlijin
>Assignee: binlijin
> Fix For: 2.0.0
>
> Attachments: HBASE-16691-addendum.patch, HBASE-16691-master.patch, 
> HBASE-16691-master_v2.patch
>
>
> In KeyOnlyFilter#transformCell will return a KeyOnlyCell that have no value 
> or has valueLength as value, current will copy all row keys into a new byte[] 
> and new a KeyValue, we can eliminate the copy and have a wrap KeyOnlyCell 
> that ignore the cell's value.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (HBASE-16691) Optimize KeyOnlyFilter by utilizing KeyOnlyCell

2016-09-27 Thread binlijin (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-16691?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

binlijin updated HBASE-16691:
-
Attachment: HBASE-16691-master_v2.patch

> Optimize KeyOnlyFilter by utilizing KeyOnlyCell
> ---
>
> Key: HBASE-16691
> URL: https://issues.apache.org/jira/browse/HBASE-16691
> Project: HBase
>  Issue Type: Improvement
>Reporter: binlijin
>Assignee: binlijin
> Fix For: 2.0.0
>
> Attachments: HBASE-16691-addendum.patch, HBASE-16691-master.patch, 
> HBASE-16691-master_v2.patch
>
>
> In KeyOnlyFilter#transformCell will return a KeyOnlyCell that have no value 
> or has valueLength as value, current will copy all row keys into a new byte[] 
> and new a KeyValue, we can eliminate the copy and have a wrap KeyOnlyCell 
> that ignore the cell's value.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (HBASE-16691) Optimize KeyOnlyFilter by utilizing KeyOnlyCell

2016-09-27 Thread Anoop Sam John (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-16691?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Anoop Sam John updated HBASE-16691:
---
Priority: Major  (was: Minor)

> Optimize KeyOnlyFilter by utilizing KeyOnlyCell
> ---
>
> Key: HBASE-16691
> URL: https://issues.apache.org/jira/browse/HBASE-16691
> Project: HBase
>  Issue Type: Improvement
>Reporter: binlijin
>Assignee: binlijin
> Fix For: 2.0.0
>
> Attachments: HBASE-16691-addendum.patch, HBASE-16691-master.patch
>
>
> In KeyOnlyFilter#transformCell will return a KeyOnlyCell that have no value 
> or has valueLength as value, current will copy all row keys into a new byte[] 
> and new a KeyValue, we can eliminate the copy and have a wrap KeyOnlyCell 
> that ignore the cell's value.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (HBASE-16691) Optimize KeyOnlyFilter by utilizing KeyOnlyCell

2016-09-27 Thread Anoop Sam John (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-16691?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Anoop Sam John updated HBASE-16691:
---
Attachment: HBASE-16691-addendum.patch

This should fix the fail

> Optimize KeyOnlyFilter by utilizing KeyOnlyCell
> ---
>
> Key: HBASE-16691
> URL: https://issues.apache.org/jira/browse/HBASE-16691
> Project: HBase
>  Issue Type: Improvement
>Reporter: binlijin
>Assignee: binlijin
>Priority: Minor
> Fix For: 2.0.0
>
> Attachments: HBASE-16691-addendum.patch, HBASE-16691-master.patch
>
>
> In KeyOnlyFilter#transformCell will return a KeyOnlyCell that have no value 
> or has valueLength as value, current will copy all row keys into a new byte[] 
> and new a KeyValue, we can eliminate the copy and have a wrap KeyOnlyCell 
> that ignore the cell's value.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (HBASE-16691) Optimize KeyOnlyFilter by utilizing KeyOnlyCell

2016-09-26 Thread Ted Yu (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-16691?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ted Yu updated HBASE-16691:
---
Resolution: Fixed
Status: Resolved  (was: Patch Available)

Thanks for the patch, binlijin.

Thanks for the reviews.

> Optimize KeyOnlyFilter by utilizing KeyOnlyCell
> ---
>
> Key: HBASE-16691
> URL: https://issues.apache.org/jira/browse/HBASE-16691
> Project: HBase
>  Issue Type: Improvement
>Reporter: binlijin
>Assignee: binlijin
>Priority: Minor
> Fix For: 2.0.0
>
> Attachments: HBASE-16691-master.patch
>
>
> In KeyOnlyFilter#transformCell will return a KeyOnlyCell that have no value 
> or has valueLength as value, current will copy all row keys into a new byte[] 
> and new a KeyValue, we can eliminate the copy and have a wrap KeyOnlyCell 
> that ignore the cell's value.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (HBASE-16691) Optimize KeyOnlyFilter by utilizing KeyOnlyCell

2016-09-26 Thread Ted Yu (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-16691?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ted Yu updated HBASE-16691:
---
Summary: Optimize KeyOnlyFilter by utilizing KeyOnlyCell  (was: optimize 
KeyOnlyFilter)

> Optimize KeyOnlyFilter by utilizing KeyOnlyCell
> ---
>
> Key: HBASE-16691
> URL: https://issues.apache.org/jira/browse/HBASE-16691
> Project: HBase
>  Issue Type: Improvement
>Reporter: binlijin
>Assignee: binlijin
>Priority: Minor
> Fix For: 2.0.0
>
> Attachments: HBASE-16691-master.patch
>
>
> In KeyOnlyFilter#transformCell will return a KeyOnlyCell that have no value 
> or has valueLength as value, current will copy all row keys into a new byte[] 
> and new a KeyValue, we can eliminate the copy and have a wrap KeyOnlyCell 
> that ignore the cell's value.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)