Return-Path: X-Original-To: apmail-mahout-commits-archive@www.apache.org Delivered-To: apmail-mahout-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id C179C17683 for ; Fri, 17 Oct 2014 18:05:50 +0000 (UTC) Received: (qmail 646 invoked by uid 500); 17 Oct 2014 18:05:50 -0000 Delivered-To: apmail-mahout-commits-archive@mahout.apache.org Received: (qmail 593 invoked by uid 500); 17 Oct 2014 18:05:50 -0000 Mailing-List: contact commits-help@mahout.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@mahout.apache.org Delivered-To: mailing list commits@mahout.apache.org Received: (qmail 584 invoked by uid 99); 17 Oct 2014 18:05:50 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 17 Oct 2014 18:05:50 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 2007499A4A9; Fri, 17 Oct 2014 18:05:50 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: pat@apache.org To: commits@mahout.apache.org Message-Id: <1f6e655de2d147d2848307788fb98b95@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: git commit: fixed bug, now reporting correct app name to Spark Date: Fri, 17 Oct 2014 18:05:50 +0000 (UTC) Repository: mahout Updated Branches: refs/heads/master 666d314fb -> 6651a3286 fixed bug, now reporting correct app name to Spark Project: http://git-wip-us.apache.org/repos/asf/mahout/repo Commit: http://git-wip-us.apache.org/repos/asf/mahout/commit/6651a328 Tree: http://git-wip-us.apache.org/repos/asf/mahout/tree/6651a328 Diff: http://git-wip-us.apache.org/repos/asf/mahout/diff/6651a328 Branch: refs/heads/master Commit: 6651a328679742ce6c14ce8a4e6ab0bc0a05f7e9 Parents: 666d314 Author: pferrel Authored: Thu Oct 16 10:32:28 2014 -0700 Committer: pferrel Committed: Thu Oct 16 10:32:28 2014 -0700 ---------------------------------------------------------------------- .../main/scala/org/apache/mahout/drivers/MahoutOptionParser.scala | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mahout/blob/6651a328/math-scala/src/main/scala/org/apache/mahout/drivers/MahoutOptionParser.scala ---------------------------------------------------------------------- diff --git a/math-scala/src/main/scala/org/apache/mahout/drivers/MahoutOptionParser.scala b/math-scala/src/main/scala/org/apache/mahout/drivers/MahoutOptionParser.scala index c6968b8..046bc87 100644 --- a/math-scala/src/main/scala/org/apache/mahout/drivers/MahoutOptionParser.scala +++ b/math-scala/src/main/scala/org/apache/mahout/drivers/MahoutOptionParser.scala @@ -59,6 +59,7 @@ class MahoutOptionParser(programName: String) extends OptionParser[Map[String, A def parseSparkOptions = { opts = opts ++ MahoutOptionParser.SparkOptions + opts = opts + ("appName" -> programName) note("\nSpark config options:") opt[String]("master") abbr ("ma") text ("Spark Master URL (optional). Default: \"local\". Note that you can specify the number of cores to get a performance improvement, for example \"local[4]\"") action { (x, options) =>