Return-Path: Delivered-To: apmail-incubator-hama-dev-archive@minotaur.apache.org Received: (qmail 86363 invoked from network); 6 Mar 2009 02:04:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 6 Mar 2009 02:04:18 -0000 Received: (qmail 41051 invoked by uid 500); 6 Mar 2009 02:04:18 -0000 Delivered-To: apmail-incubator-hama-dev-archive@incubator.apache.org Received: (qmail 41034 invoked by uid 500); 6 Mar 2009 02:04:17 -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 40941 invoked by uid 99); 6 Mar 2009 02:04:17 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 05 Mar 2009 18:04:17 -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; Fri, 06 Mar 2009 02:04:16 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 5760F234C4B6 for ; Thu, 5 Mar 2009 18:03:56 -0800 (PST) Message-ID: <794372788.1236305036356.JavaMail.jira@brutus> Date: Thu, 5 Mar 2009 18:03:56 -0800 (PST) From: "Edward J. Yoon (JIRA)" To: hama-dev@incubator.apache.org Subject: [jira] Updated: (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:all-tabpanel ] Edward J. Yoon updated HAMA-154: -------------------------------- Status: Patch Available (was: Open) Submit to hudson. > [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, HAMA-154_v03.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.