Return-Path: Delivered-To: apmail-hbase-issues-archive@www.apache.org Received: (qmail 52748 invoked from network); 26 Sep 2010 03:43:59 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 26 Sep 2010 03:43:59 -0000 Received: (qmail 94583 invoked by uid 500); 26 Sep 2010 03:43:59 -0000 Delivered-To: apmail-hbase-issues-archive@hbase.apache.org Received: (qmail 94502 invoked by uid 500); 26 Sep 2010 03:43:57 -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 94491 invoked by uid 99); 26 Sep 2010 03:43:56 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 26 Sep 2010 03:43:56 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.22] (HELO thor.apache.org) (140.211.11.22) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 26 Sep 2010 03:43:54 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o8Q3hWau026730 for ; Sun, 26 Sep 2010 03:43:33 GMT Message-ID: <27943476.404151285472612868.JavaMail.jira@thor> Date: Sat, 25 Sep 2010 23:43:32 -0400 (EDT) From: "ryan rawson (JIRA)" To: issues@hbase.apache.org Subject: [jira] Commented: (HBASE-3040) BlockIndex readIndex too slowly in heavy write scenario In-Reply-To: <18986315.403741285471892752.JavaMail.jira@thor> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HBASE-3040?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12914907#action_12914907 ] ryan rawson commented on HBASE-3040: ------------------------------------ Could you be more specific? Do you have some example code? Right now each hfile's block index.is loaded (or attempted) using one load. region server host), sequential put column families region servers, new region server open region, readIndex of this region's storefile(about 1000 blocks) spent 30~50ms, with the data import region server spent more and more time (sometimes up to several seconds) to load 1000 block indices within one DFS read instead of 1000 reads. > BlockIndex readIndex too slowly in heavy write scenario > ------------------------------------------------------- > > Key: HBASE-3040 > URL: https://issues.apache.org/jira/browse/HBASE-3040 > Project: HBase > Issue Type: Improvement > Components: regionserver > Affects Versions: 0.20.6 > Environment: 1master, 7 region servers, 4 * 7 clients(all clients run on region server host), sequential put > Reporter: andychen > > region size is configured with 128M, block size is 64K, the table has 5 column families > at the beginning, when region split, master assigns daughters to new region servers, new region server open region, readIndex of this region's storefile(about 1000 blocks) spent 30~50ms, with the data import region server spent more and more time (sometimes up to several seconds) to load 1000 block indices > at right now, we resolve this issue by getting all indices of one hfile within one DFS read instead of 1000 reads. > is there any other better resolution? -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.