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

This commit is contained in:
tedyu 2016-11-21 06:49:18 -08:00
parent 549c8d835a
commit 7ff7b88db5
1 changed files with 1 additions and 1 deletions

View File

@ -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