You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by "stack (JIRA)" <ji...@apache.org> on 2018/03/21 22:09:11 UTC

[jira] [Updated] (HBASE-18251) Remove unnecessary traversing to the first and last keys in the CellSet

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

stack updated HBASE-18251:
--------------------------
    Fix Version/s:     (was: 3.0.0)

> Remove unnecessary traversing to the first and last keys in the CellSet
> -----------------------------------------------------------------------
>
>                 Key: HBASE-18251
>                 URL: https://issues.apache.org/jira/browse/HBASE-18251
>             Project: HBase
>          Issue Type: Improvement
>    Affects Versions: 2.0.0-alpha-1
>            Reporter: Anastasia Braginsky
>            Assignee: Toshihiro Suzuki
>            Priority: Major
>             Fix For: 1.4.0, 2.0.0-alpha-2, 2.0.0
>
>         Attachments: HBASE-18251-v2.patch, HBASE-18251-v2.patch, HBASE-18251.patch
>
>
> The implementation of finding the first and last keys in the CellSet is as following:
> {code}
>  public Cell first() {
>     return this.delegatee.get(this.delegatee.firstKey());
>   }
>   public Cell last() {
>     return this.delegatee.get(this.delegatee.lastKey());
>   }
> {code}
> Recall we have Cell to Cell mapping, therefore the methods bringing the first/last key, which allready return Cell. Thus no need to waist time on the get() method for the same Cell.
> Fix: return just the first/lastKey(), should be at least twice more effective.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)