[
https://issues.apache.org/jira/browse/HBASE-14663?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14972050#comment-14972050
]
Hudson commented on HBASE-14663:
--------------------------------
FAILURE: Integrated in HBase-0.98 #1165 (See
[https://builds.apache.org/job/HBase-0.98/1165/])
HBASE-14663 HStore::close does not honor config (apurtell: rev
ba02635a47fda86ae88cbc32c2ec5e3a0defe1fc)
* hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/HStore.java
> HStore::close does not honor config hbase.rs.evictblocksonclose
> ---------------------------------------------------------------
>
> Key: HBASE-14663
> URL: https://issues.apache.org/jira/browse/HBASE-14663
> Project: HBase
> Issue Type: Bug
> Components: BlockCache, regionserver
> Affects Versions: 1.0.0
> Reporter: Randy Fox
> Assignee: Vladimir Rodionov
> Priority: Minor
> Fix For: 2.0.0, 1.2.0, 1.3.0, 1.0.3, 1.1.3, 0.98.16
>
> Attachments: HBASE-14663-v1.patch
>
>
> 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 {
> f.closeReader(true);
> return null;
> }
> });
> }
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)