Return-Path: Delivered-To: apmail-incubator-hama-commits-archive@locus.apache.org Received: (qmail 30664 invoked from network); 19 Dec 2008 08:35:41 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 19 Dec 2008 08:35:41 -0000 Received: (qmail 47228 invoked by uid 500); 19 Dec 2008 08:35:54 -0000 Delivered-To: apmail-incubator-hama-commits-archive@incubator.apache.org Received: (qmail 47213 invoked by uid 500); 19 Dec 2008 08:35:54 -0000 Mailing-List: contact hama-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hama-dev@ Delivered-To: mailing list hama-commits@incubator.apache.org Received: (qmail 47202 invoked by uid 99); 19 Dec 2008 08:35:54 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Dec 2008 00:35:54 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [140.211.11.130] (HELO eos.apache.org) (140.211.11.130) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 19 Dec 2008 08:35:33 +0000 Received: from eos.apache.org (localhost [127.0.0.1]) by eos.apache.org (Postfix) with ESMTP id 9622B118D9 for ; Fri, 19 Dec 2008 08:35:12 +0000 (GMT) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: Apache Wiki To: hama-commits@incubator.apache.org Date: Fri, 19 Dec 2008 08:35:12 -0000 Message-ID: <20081219083512.5686.65862@eos.apache.org> Subject: [Hama Wiki] Update of "Architecture" by udanax X-Virus-Checked: Checked by ClamAV on apache.org Dear Wiki user, You have subscribed to a wiki page or wiki category on "Hama Wiki" for change notification. The following page has been changed by udanax: http://wiki.apache.org/hama/Architecture ------------------------------------------------------------------------------ = Overview = Hama use a [http://hadoop.apache.org/hbase/ Hbase] to store the matrices -- Matrices are basically tables. They are ways of storing numbers and other things. Typical matrix has rows and columns. Actually called a 2-way matrix because it has two dimensions. For example, you might have respondents-by-attitudes. Of course, you might collect the same data on the same people at 5 points in time. In that case, you either have 5 different 2-way matrices, or you could think of it as a 3-way matrix, that is respondent-by-attitude-by-time. + + == Building Block == + + {{{ + + Results/Graphs + ↑ + +------------+ + | Hama | + +------------+ + ↑ + *------------------------------------------------------------------------------* Analysis + | + +-------+ + +------------→| Hbase |←---------- + | +-------+ + | + *--------------+---------------------------------------------------------------* Storage + | + +------+------+ +-------------+ + ---→| Collector A |←----------+ ... | Collector X |←--+ + +-------------+ | +-------------+ | + *------------------------------------------------------------------------------* Collection + | | + +--------+ +--------+ +---+----+ +------+---+ + | Server | | Server | .... | Server | | Other DB | + +--------+ +--------+ +--------+ +----------+ + }}} ----