Return-Path: X-Original-To: apmail-hbase-issues-archive@www.apache.org Delivered-To: apmail-hbase-issues-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 07912183B9 for ; Thu, 22 Oct 2015 08:45:29 +0000 (UTC) Received: (qmail 94882 invoked by uid 500); 22 Oct 2015 08:45:28 -0000 Delivered-To: apmail-hbase-issues-archive@hbase.apache.org Received: (qmail 94708 invoked by uid 500); 22 Oct 2015 08:45:28 -0000 Mailing-List: contact issues-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@hbase.apache.org Received: (qmail 93753 invoked by uid 99); 22 Oct 2015 08:45:28 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Oct 2015 08:45:28 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 1D5F42C1F85 for ; Thu, 22 Oct 2015 08:45:28 +0000 (UTC) Date: Thu, 22 Oct 2015 08:45:28 +0000 (UTC) From: "Hudson (JIRA)" To: issues@hbase.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HBASE-14663) HStore::close does not honor config hbase.rs.evictblocksonclose MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/HBASE-14663?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14968809#comment-14968809 ] Hudson commented on HBASE-14663: -------------------------------- FAILURE: Integrated in HBase-TRUNK #6937 (See [https://builds.apache.org/job/HBase-TRUNK/6937/]) HBASE-14663 HStore::close does not honor config (stack: rev ab677a19fc5d909890b4f74ddc3087e4699d81a1) * 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 > > 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 completionService = > new ExecutorCompletionService(storeFileCloserThreadPool); > for (final StoreFile f : result) { > completionService.submit(new Callable() { > @Override > public Void call() throws IOException { > f.closeReader(true); > return null; > } > }); > } -- This message was sent by Atlassian JIRA (v6.3.4#6332)