Return-Path: X-Original-To: apmail-hama-dev-archive@www.apache.org Delivered-To: apmail-hama-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6A0C1106D7 for ; Thu, 12 Dec 2013 05:29:17 +0000 (UTC) Received: (qmail 41649 invoked by uid 500); 12 Dec 2013 05:29:11 -0000 Delivered-To: apmail-hama-dev-archive@hama.apache.org Received: (qmail 41442 invoked by uid 500); 12 Dec 2013 05:29:08 -0000 Mailing-List: contact dev-help@hama.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hama.apache.org Delivered-To: mailing list dev@hama.apache.org Received: (qmail 41285 invoked by uid 99); 12 Dec 2013 05:29:04 -0000 Received: from minotaur.apache.org (HELO minotaur.apache.org) (140.211.11.9) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Dec 2013 05:29:04 +0000 Received: from localhost (HELO mail-ie0-f169.google.com) (127.0.0.1) (smtp-auth username edwardyoon, mechanism plain) by minotaur.apache.org (qpsmtpd/0.29) with ESMTP; Thu, 12 Dec 2013 05:29:03 +0000 Received: by mail-ie0-f169.google.com with SMTP id e14so12768404iej.14 for ; Wed, 11 Dec 2013 21:29:02 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:date:message-id:subject:from:to :content-type; bh=y6ViYxfv+TdCOxEv6QA45x3jCssEp2HXlma1r1tCQW8=; b=kPYqFkjCp523pJD88+fPHcHPHQtqxnX+H6H4yTxCyX8Xchln7MocTqc1xsH3GR6Nyi vCy6ntieNBE8Uq8/ZEMJVOFW4lAWVxjuMTjebodNJ4lxGNq3Ev95y404vTv5Z3Az/X6O kuUcDt+mW745TzWowIeeECc2yZJvfA1sEC28YBbAtzjFkGZWKXWLEsRKjEJeMjTB1MWO dh701rQca+hPTQxwVxlDUW0WdLME7YSoC2vEd0fKR2R8qhd4miiNQB8uSKoF90B77fK2 yJ4CtpkBIDT8zF5AYTY4jlUC3T9c/J42bikZt+worOWm73ekCdVIiEmPFW3zpBbY8/B4 lrjg== X-Gm-Message-State: ALoCoQkYuFLZuatTe78hmoZAxmc8OehlEjkIAj6vVG9OyCEpUOdWbYPV/2W9gCpdBhsPkap64XOc MIME-Version: 1.0 X-Received: by 10.50.12.71 with SMTP id w7mr28991950igb.32.1386826142663; Wed, 11 Dec 2013 21:29:02 -0800 (PST) Received: by 10.64.71.39 with HTTP; Wed, 11 Dec 2013 21:29:02 -0800 (PST) Date: Thu, 12 Dec 2013 14:29:02 +0900 Message-ID: Subject: Small bug fix patch From: "Edward J. Yoon" To: "dev@hama.apache.org" Content-Type: text/plain; charset=UTF-8 KMeans and NeuralNetwork doesn't load config file, so it always uses local filesystem. - Configuration conf = new Configuration(); + HamaConfiguration conf = new HamaConfiguration(); + Path in = new Path(args[0]); Path out = new Path(args[1]); FileSystem fs = FileSystem.get(conf); -- Best Regards, Edward J. Yoon @eddieyoon