You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by te...@apache.org on 2016/11/21 14:49:46 UTC

hbase git commit: HBASE-17123 Add postBulkLoadHFile variant that notifies the final paths for the hfiles - addendum calls existing BaseRegionObserver#postBulkLoadHFile()

Repository: hbase
Updated Branches:
  refs/heads/master 549c8d835 -> 7ff7b88db


HBASE-17123 Add postBulkLoadHFile variant that notifies the final paths for the hfiles - addendum calls existing BaseRegionObserver#postBulkLoadHFile()


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/7ff7b88d
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/7ff7b88d
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/7ff7b88d

Branch: refs/heads/master
Commit: 7ff7b88db591523d100e72ad8cb0d1e0fd2b99a7
Parents: 549c8d8
Author: tedyu <yu...@gmail.com>
Authored: Mon Nov 21 06:49:18 2016 -0800
Committer: tedyu <yu...@gmail.com>
Committed: Mon Nov 21 06:49:18 2016 -0800

----------------------------------------------------------------------
 .../org/apache/hadoop/hbase/coprocessor/BaseRegionObserver.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/7ff7b88d/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/BaseRegionObserver.java
----------------------------------------------------------------------
diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/BaseRegionObserver.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/BaseRegionObserver.java
index 3333e77..3442b64 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/BaseRegionObserver.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/coprocessor/BaseRegionObserver.java
@@ -514,7 +514,7 @@ public class BaseRegionObserver implements RegionObserver {
   public boolean postBulkLoadHFile(ObserverContext<RegionCoprocessorEnvironment> ctx,
     List<Pair<byte[], String>> stagingFamilyPaths, Map<byte[], List<Path>> finalPaths,
     boolean hasLoaded) throws IOException {
-    return hasLoaded;
+    return postBulkLoadHFile(ctx, stagingFamilyPaths, hasLoaded);
   }
 
   @Override