Return-Path: Delivered-To: apmail-hadoop-core-commits-archive@www.apache.org Received: (qmail 95261 invoked from network); 7 Apr 2009 21:27:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 7 Apr 2009 21:27:22 -0000 Received: (qmail 17840 invoked by uid 500); 7 Apr 2009 21:26:35 -0000 Delivered-To: apmail-hadoop-core-commits-archive@hadoop.apache.org Received: (qmail 16731 invoked by uid 500); 7 Apr 2009 21:26:32 -0000 Mailing-List: contact core-commits-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: core-dev@hadoop.apache.org Delivered-To: mailing list core-commits@hadoop.apache.org Received: (qmail 15301 invoked by uid 99); 7 Apr 2009 21:16:31 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Apr 2009 21:16:31 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [192.87.106.226] (HELO aurora.apache.org) (192.87.106.226) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Apr 2009 21:16:29 +0000 Received: from aurora.apache.org (localhost [127.0.0.1]) by aurora.apache.org (8.13.8+Sun/8.13.8) with ESMTP id n37LG8FR005180 for ; Tue, 7 Apr 2009 21:16:08 GMT Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Apache Wiki To: core-commits@hadoop.apache.org Date: Tue, 07 Apr 2009 21:16:08 -0000 Message-ID: <20090407211608.5137.97846@aurora.apache.org> Subject: [Hadoop Wiki] Trivial Update of "Hbase/DesignOverview" by EvgenyRyabitskiy X-Virus-Checked: Checked by ClamAV on apache.org Dear Wiki user, You have subscribed to a wiki page or wiki category on "Hadoop Wiki" for change notification. The following page has been changed by EvgenyRyabitskiy: http://wiki.apache.org/hadoop/Hbase/DesignOverview ------------------------------------------------------------------------------ * [#intro Introduction] * [#datamodel Data Model] * [#conceptual Conceptual View] - * [#physical Physical Storage View] + * [#internal Internal View] * [#api API] * [#design Architecture Design] * [#master HBaseMaster] @@ -53, +53 @@ ||<:> t5 ||<:> "..." || || || || ||<:> t3 ||<:> "..." || || || || - [[Anchor(physical)]] + [[Anchor(internal)]] - == Physical Storage View == + == Internal View == Although at a conceptual level, tables may be viewed as a sparse set of rows, physically they are stored on a per-column family basis. This is an important consideration for schema and application designers to keep in mind. @@ -104, +104 @@ [[Anchor(design)]] = Architecture Design = + + HBase has Multiple Client - Multiple Server Client-Server architecture. There are three major components of the HBase architecture: 1. The HMaster (HBase master server) @@ -221, +223 @@ [[Anchor(client)]] == HBase Client == + HBase is a Heavy Client System. Each client manages its own connection to appropriate server. + The HBase client is responsible for finding H!RegionServers that are serving the particular row range of interest. On instantiation, the HBase client communicates with the H!BaseMaster to find the location of the ROOT region. This is the only communication between the client and the master. Once the ROOT region is located, the client contacts that region server and scans the ROOT region to find the META region that will contain the location of the user region that contains the desired row range. It then contacts the region server that is serving that META region and scans that META region to determine the location of the user region.