HBASE-17123 Add postBulkLoadHFile variant that notifies the final paths for the hfiles - addendum calls existing BaseRegionObserver#postBulkLoadHFile()
This commit is contained in:
parent
549c8d835a
commit
7ff7b88db5
|
@ -514,7 +514,7 @@ public class BaseRegionObserver implements RegionObserver {
|
||||||
public boolean postBulkLoadHFile(ObserverContext<RegionCoprocessorEnvironment> ctx,
|
public boolean postBulkLoadHFile(ObserverContext<RegionCoprocessorEnvironment> ctx,
|
||||||
List<Pair<byte[], String>> stagingFamilyPaths, Map<byte[], List<Path>> finalPaths,
|
List<Pair<byte[], String>> stagingFamilyPaths, Map<byte[], List<Path>> finalPaths,
|
||||||
boolean hasLoaded) throws IOException {
|
boolean hasLoaded) throws IOException {
|
||||||
return hasLoaded;
|
return postBulkLoadHFile(ctx, stagingFamilyPaths, hasLoaded);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue