Return-Path: Delivered-To: apmail-hadoop-core-commits-archive@www.apache.org Received: (qmail 27983 invoked from network); 4 Apr 2009 17:50:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 4 Apr 2009 17:50:33 -0000 Received: (qmail 26469 invoked by uid 500); 4 Apr 2009 17:50:33 -0000 Delivered-To: apmail-hadoop-core-commits-archive@hadoop.apache.org Received: (qmail 26382 invoked by uid 500); 4 Apr 2009 17:50: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 26373 invoked by uid 99); 4 Apr 2009 17:50:32 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 Apr 2009 17:50:32 +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; Sat, 04 Apr 2009 17:50:30 +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 n34HoA0e010607 for ; Sat, 4 Apr 2009 17:50:10 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: Sat, 04 Apr 2009 17:50:10 -0000 Message-ID: <20090404175010.10569.94110@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 ------------------------------------------------------------------------------ HBase is an [http://apache.org/ Apache] open source project whose goal is to provide Bigtable-like storage for the Hadoop Distributed Computing Environment. HBase leverages the distributed data storage provided by the [http://hadoop.apache.org/core/docs/current/hdfs_design.html Hadoop Distributed File System (HDFS)] and use [http://hadoop.apache.org/zookeeper/docs/current/zookeeperOver.html ZooKeeper] for coordination between HBase nodes. - Data is logically organized into tables, rows and columns. An iterator-like interface is available for scanning through a row range and, of course, there is the ability to retrieve a column value for a specific row key. Any particular column may have multiple versions for the same row key. + Data is logically organized into tables, rows and columns. An iterator-like interface is available for scanning through a row range and, of course, there is the ability to retrieve a column value for a specific row key. Any particular column may have multiple versions for the same row key. [[Anchor(datamodel)]] = Data Model = @@ -115, +115 @@ [[Anchor(master)]] == HMaster == - There is only one HMaster for a single HBase deployment. + There is only one HMaster for a single HBase deployment. To ensure that there is always one active HMaster uses [http://hadoop.apache.org/zookeeper/docs/current/recipes.html#sc_leaderElection leader election algorithm] and it's address is stored in !ZooKeaper. HMaster duties: @@ -123, +123 @@ * Assigning/unassigning regions to/from H!RegionServers (unassigning is for load balance) * Monitor the health of each H!RegionServer * Changes to the table schema and handling table administrative functions + + == Cluster initialization == + + === Assigning regions to HRegionServers ===