Return-Path: X-Original-To: apmail-spark-commits-archive@minotaur.apache.org Delivered-To: apmail-spark-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 988C6100EF for ; Tue, 10 Sep 2013 19:41:04 +0000 (UTC) Received: (qmail 19344 invoked by uid 500); 10 Sep 2013 19:40:58 -0000 Delivered-To: apmail-spark-commits-archive@spark.apache.org Received: (qmail 19153 invoked by uid 500); 10 Sep 2013 19:40:56 -0000 Mailing-List: contact commits-help@spark.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@spark.incubator.apache.org Delivered-To: mailing list commits@spark.incubator.apache.org Received: (qmail 18258 invoked by uid 99); 10 Sep 2013 19:40:41 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Sep 2013 19:40:41 +0000 X-ASF-Spam-Status: No, hits=-2000.7 required=5.0 tests=ALL_TRUSTED,RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO mail.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 10 Sep 2013 19:40:39 +0000 Received: (qmail 17674 invoked by uid 99); 10 Sep 2013 19:40:15 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Sep 2013 19:40:15 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id C5E8F89FCB9; Tue, 10 Sep 2013 19:40:15 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: pwendell@apache.org To: commits@spark.incubator.apache.org Date: Tue, 10 Sep 2013 19:40:42 -0000 Message-Id: <0873182bf67e44a794619a99321bf667@git.apache.org> In-Reply-To: <44f5d3b31792433ea540b47a869d6728@git.apache.org> References: <44f5d3b31792433ea540b47a869d6728@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [28/50] git commit: Fix some review comments X-Virus-Checked: Checked by ClamAV on apache.org Fix some review comments Project: http://git-wip-us.apache.org/repos/asf/incubator-spark/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-spark/commit/b4588549 Tree: http://git-wip-us.apache.org/repos/asf/incubator-spark/tree/b4588549 Diff: http://git-wip-us.apache.org/repos/asf/incubator-spark/diff/b4588549 Branch: refs/heads/branch-0.8 Commit: b458854977c437e85fd89056e5d40383c8fa962e Parents: 170b386 Author: Matei Zaharia Authored: Sun Sep 8 21:25:49 2013 -0700 Committer: Matei Zaharia Committed: Sun Sep 8 21:25:49 2013 -0700 ---------------------------------------------------------------------- docs/cluster-overview.md | 2 +- docs/quick-start.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-spark/blob/b4588549/docs/cluster-overview.md ---------------------------------------------------------------------- diff --git a/docs/cluster-overview.md b/docs/cluster-overview.md index cf6b48c..7025c23 100644 --- a/docs/cluster-overview.md +++ b/docs/cluster-overview.md @@ -80,7 +80,7 @@ The following table summarizes terms you'll see used to refer to cluster concept Application - Any user program invoking Spark + User program built on Spark. Consists of a driver program and executors on the cluster. Driver program http://git-wip-us.apache.org/repos/asf/incubator-spark/blob/b4588549/docs/quick-start.md ---------------------------------------------------------------------- diff --git a/docs/quick-start.md b/docs/quick-start.md index 1b069ce..8f782db 100644 --- a/docs/quick-start.md +++ b/docs/quick-start.md @@ -36,7 +36,7 @@ scala> textFile.count() // Number of items in this RDD res0: Long = 74 scala> textFile.first() // First item in this RDD -res1: String = Welcome to the Spark documentation! +res1: String = # Apache Spark {% endhighlight %} Now let's use a transformation. We will use the [`filter`](scala-programming-guide.html#transformations) transformation to return a new RDD with a subset of the items in the file.