You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by "Heng Chen (JIRA)" <ji...@apache.org> on 2015/12/02 16:25:11 UTC

[jira] [Commented] (HBASE-14895) Seek only to the newly flushed file on scanner reset on flush

    [ https://issues.apache.org/jira/browse/HBASE-14895?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15035956#comment-15035956 ] 

Heng Chen commented on HBASE-14895:
-----------------------------------

It seems we could add some code in StoreScanner.updateReaders,  right?
{code: title=StoreScanner.updateReaders}
     this.heap = null; 
+    StoreFile recentFlush = getRecentFlushStoreFile();
+    if (recentFlush != null) {
+      seek(recentFlush.getFirstKey());
+    }
{code}


> Seek only to the newly flushed file on scanner reset on flush
> -------------------------------------------------------------
>
>                 Key: HBASE-14895
>                 URL: https://issues.apache.org/jira/browse/HBASE-14895
>             Project: HBase
>          Issue Type: Sub-task
>            Reporter: ramkrishna.s.vasudevan
>            Assignee: ramkrishna.s.vasudevan
>             Fix For: 2.0.0
>
>




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