Return-Path: Delivered-To: apmail-lucene-hadoop-dev-archive@locus.apache.org Received: (qmail 55151 invoked from network); 6 Nov 2007 23:07:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 6 Nov 2007 23:07:18 -0000 Received: (qmail 83355 invoked by uid 500); 6 Nov 2007 23:07:05 -0000 Delivered-To: apmail-lucene-hadoop-dev-archive@lucene.apache.org Received: (qmail 83319 invoked by uid 500); 6 Nov 2007 23:07:05 -0000 Mailing-List: contact hadoop-dev-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hadoop-dev@lucene.apache.org Delivered-To: mailing list hadoop-dev@lucene.apache.org Received: (qmail 83310 invoked by uid 99); 6 Nov 2007 23:07:05 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Nov 2007 15:07:05 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 06 Nov 2007 23:07:17 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id C187971418F for ; Tue, 6 Nov 2007 15:06:56 -0800 (PST) Message-ID: <4342523.1194390416789.JavaMail.jira@brutus> Date: Tue, 6 Nov 2007 15:06:56 -0800 (PST) From: "Jim Kellerman (JIRA)" To: hadoop-dev@lucene.apache.org Subject: [jira] Commented: (HADOOP-2139) [hbase] Increase parallelism in region servers In-Reply-To: <13792954.1193939210917.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HADOOP-2139?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12540617 ] Jim Kellerman commented on HADOOP-2139: --------------------------------------- Strategy: Associate memcache with HStore instead of HRegion - reduces contention between most other ops and scanners. If a scanner is open on a memcache, and an update arrives, push the memcache on a stack and create a new memcache for the update. This is unlikely to cause the generation of a lot of memcaches since scanners don't get created nearly as often. All operations other than Split lock the region for read. Locks for portions of a region will be contended at the column level. Splits need to lock the region for write since this is the only operation that cannot proceed in parallel with others. > [hbase] Increase parallelism in region servers > ---------------------------------------------- > > Key: HADOOP-2139 > URL: https://issues.apache.org/jira/browse/HADOOP-2139 > Project: Hadoop > Issue Type: Improvement > Components: contrib/hbase > Affects Versions: 0.16.0 > Reporter: Jim Kellerman > Assignee: Jim Kellerman > Fix For: 0.16.0 > > > There are a number of paths in the region server which block against one another including: > - log rolling > - cache flushes > - region splitting > - updates > - scanners > Investigate which can proceed in parallel and mechanisms for making some operations that currently do not run in parallel. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.