You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2019/10/11 18:24:04 UTC

[hbase] branch master updated: HBASE-23145 Remove out-of-date comments in StoreFlusher.java (#709)

This is an automated email from the ASF dual-hosted git repository.

stack pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/master by this push:
     new 473816d  HBASE-23145 Remove out-of-date comments in StoreFlusher.java (#709)
473816d is described below

commit 473816d92251b5d4ca5c13bd208f078214c8194a
Author: OlegPt <av...@gmail.com>
AuthorDate: Sat Oct 12 02:23:56 2019 +0800

    HBASE-23145 Remove out-of-date comments in StoreFlusher.java (#709)
    
    Signed-off-by: Viraj Jasani <vi...@gmail.com>
---
 .../main/java/org/apache/hadoop/hbase/regionserver/StoreFlusher.java   | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/StoreFlusher.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/StoreFlusher.java
index 4c539ce..177f24d 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/StoreFlusher.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/StoreFlusher.java
@@ -127,9 +127,6 @@ abstract class StoreFlusher {
         hasMore = scanner.next(kvs, scannerContext);
         if (!kvs.isEmpty()) {
           for (Cell c : kvs) {
-            // If we know that this KV is going to be included always, then let us
-            // set its memstoreTS to 0. This will help us save space when writing to
-            // disk.
             sink.append(c);
             if (control) {
               throughputController.control(flushName, c.getSerializedSize());