Return-Path: Delivered-To: apmail-incubator-hama-commits-archive@minotaur.apache.org Received: (qmail 56155 invoked from network); 25 May 2010 07:07:46 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 25 May 2010 07:07:46 -0000 Received: (qmail 78640 invoked by uid 500); 25 May 2010 07:07:46 -0000 Delivered-To: apmail-incubator-hama-commits-archive@incubator.apache.org Received: (qmail 78608 invoked by uid 500); 25 May 2010 07:07:45 -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@incubator.apache.org Delivered-To: mailing list hama-commits@incubator.apache.org Received: (qmail 78592 invoked by uid 99); 25 May 2010 07:07:44 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 25 May 2010 07:07:44 +0000 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.130] (HELO eos.apache.org) (140.211.11.130) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 25 May 2010 07:07:42 +0000 Received: from eos.apache.org (localhost [127.0.0.1]) by eos.apache.org (Postfix) with ESMTP id C2325174F1 for ; Tue, 25 May 2010 07:07:20 +0000 (GMT) MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable From: Apache Wiki To: Apache Wiki Date: Tue, 25 May 2010 07:07:20 -0000 Message-ID: <20100525070720.29057.83750@eos.apache.org> Subject: =?utf-8?q?=5BHama_Wiki=5D_Update_of_=22Architecture=22_by_Edward_J=2E_Yoo?= =?utf-8?q?n?= 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 chan= ge notification. The "Architecture" page has been changed by Edward J. Yoon. http://wiki.apache.org/hama/Architecture?action=3Ddiff&rev1=3D99&rev2=3D100 -------------------------------------------------- = =3D=3D BSP framework =3D=3D = - The BSP package is a implementation of BSP (Bulk Synchronous Parallel) ov= er Hadoop RPC(sockets). = + =3D=3D=3D BSP Job Configuration =3D=3D=3D = - The BSP package consists of the following components: - * [[BSPMaster|BSP Master]] - * [[GroomServer|Groom Server]] + * work in progress [[https://issues.apache.org/jira/browse/HAMA-244|HAM= A-244]] + {{{ + // BSP job configuration = + BSPJob bsp =3D new BSPJob(); = + // Set the job name = + bsp.setJobName("BSP test job"); = + = + // Set in/output path and formatter = + bsp.setInputPath(conf, new Path("input path")); = + bsp.setOutputPath(conf, new Path("output path")); = + bsp.setInputFormat(MyInputFormat.class); = + bsp.setOutputFormat(MyOutputFormat.class); = + = + // Set the BSP code = + bsp.setBSPCode(BSPProgram.class); = + BSPJobClient.runJob(bsp); + }}} = =3D=3D Shell/DSL =3D=3D =20