Return-Path: Delivered-To: apmail-incubator-hama-dev-archive@minotaur.apache.org Received: (qmail 24249 invoked from network); 4 Mar 2009 09:10:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 4 Mar 2009 09:10:21 -0000 Received: (qmail 32670 invoked by uid 500); 4 Mar 2009 09:10:20 -0000 Delivered-To: apmail-incubator-hama-dev-archive@incubator.apache.org Received: (qmail 32647 invoked by uid 500); 4 Mar 2009 09:10:20 -0000 Mailing-List: contact hama-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hama-dev@incubator.apache.org Delivered-To: mailing list hama-dev@incubator.apache.org Received: (qmail 32314 invoked by uid 99); 4 Mar 2009 09:10:20 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Mar 2009 01:10:19 -0800 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.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Mar 2009 09:10:17 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 506FD234C4C0 for ; Wed, 4 Mar 2009 01:09:56 -0800 (PST) Message-ID: <1236579587.1236157796325.JavaMail.jira@brutus> Date: Wed, 4 Mar 2009 01:09:56 -0800 (PST) From: "Edward J. Yoon (JIRA)" To: hama-dev@incubator.apache.org Subject: [jira] Commented: (HAMA-154) [Performance]Combine multi-mapreduce jobs into a single mapreduce job while computing such as 'C=alpha*B + A' In-Reply-To: <19041584.1235353625312.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/HAMA-154?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12678647#action_12678647 ] Edward J. Yoon commented on HAMA-154: ------------------------------------- It's my test result. Matrix a, b : 5000 * 5000 c = a.add(0.343, b); turnk version : 20 minutes patch applied version : 8 minutes > [Performance]Combine multi-mapreduce jobs into a single mapreduce job while computing such as 'C=alpha*B + A' > -------------------------------------------------------------------------------------------------------------- > > Key: HAMA-154 > URL: https://issues.apache.org/jira/browse/HAMA-154 > Project: Hama > Issue Type: Improvement > Components: implementation > Affects Versions: 0.1.0 > Reporter: Samuel Guo > Fix For: 0.1.0 > > Attachments: HAMA-154.patch, HAMA-154_v02.patch > > > now, In Hama we use two map-reduce jobs to do 'C=alpha*B + A'. > first job is to generate a matrix B' = alpha * B > second job is to generate the result matrix C = B' + A > I think the first map-reduce job is unneccesary for we can do the constant-multiplication during Addition-MapReducing. > And we also encount the same problem during computing 'A1 + A2 + ... + An'. > we need to generate (n-1) hbase-tables for the temp results during addition. Can we just combine n-1 addition-mapreduce jobs into only a simple one? -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.