-
Type:
Bug
-
Status: Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: 1.0.0
-
Component/s: BlockCache, regionserver
-
Labels:None
-
Hadoop Flags:Reviewed
I noticed moving regions was slow and due to the wait for the bucket cache to clear. I tried setting hbase.rs.evictblocksonclose and it did not help.
I see the HStore::close method has evictonclose hard coded to true instead of letting the config dictate:
// close each store file in parallel
CompletionService<Void> completionService =
new ExecutorCompletionService<Void>(storeFileCloserThreadPool);
for (final StoreFile f : result) {
completionService.submit(new Callable<Void>() {
@Override
public Void call() throws IOException
});
}
- relates to
-
HBASE-24529 hbase.rs.evictblocksonclose is not honored when removing compacted files and closing the storefiles
-
- Resolved
-