summaryrefslogtreecommitdiff
path: root/site
diff options
context:
space:
mode:
Diffstat (limited to 'site')
l---------site/docs/latest2
-rw-r--r--site/documentation.html3
-rw-r--r--site/downloads.html5
-rw-r--r--site/examples.html2
4 files changed, 7 insertions, 5 deletions
diff --git a/site/docs/latest b/site/docs/latest
index b09a54cb9..8adc70fdd 120000
--- a/site/docs/latest
+++ b/site/docs/latest
@@ -1 +1 @@
-0.7.3 \ No newline at end of file
+0.8.0 \ No newline at end of file
diff --git a/site/documentation.html b/site/documentation.html
index abadbfd36..5ee734d0b 100644
--- a/site/documentation.html
+++ b/site/documentation.html
@@ -112,7 +112,8 @@
<p>Setup instructions, programming guides, and other documentation are available for each version of Spark below:</p>
<ul>
- <li><a href="/docs/latest/">Spark 0.7.3 (latest release)</a></li>
+ <li><a href="/docs/latest/">Spark 0.8.0 (latest release)</a></li>
+ <li><a href="/docs/0.7.3/">Spark 0.7.3</a></li>
<li><a href="/docs/0.6.2/">Spark 0.6.2</a></li>
<li><a href="https://github.com/mesos/spark/wiki/Spark-0.5-Documentation">Spark 0.5.x</a> (hosted on GitHub)</li>
</ul>
diff --git a/site/downloads.html b/site/downloads.html
index 4f7d1f8c9..0a717d10c 100644
--- a/site/downloads.html
+++ b/site/downloads.html
@@ -108,13 +108,14 @@
<article class="page type-page status-publish hentry">
<h2>Download Spark</h2>
-<p>The latest release of Spark is 0.7.3. You can either download it as a <a href="http://spark-project.org/download/spark-0.7.3-sources.tgz">source package</a> (4 MB tar.gz) or get prebuilt packages for <a href="http://spark-project.org/download/spark-0.7.3-prebuilt-hadoop1.tgz">Hadoop 1 / CDH3</a> or <a href="http://spark-project.org/download/spark-0.7.3-prebuilt-cdh4.tgz">CDH 4</a> (61 MB tar.gz).</p>
+<p>The latest release of Spark is 0.8.0. You can either download it as a <a href="http://spark-project.org/download/spark-0.8.0-incubating.tgz">source package</a> (4 MB tar.gz) or as a prebuilt package for <a href="http://spark-project.org/download/spark-0.8.0-incubating-bin-hadoop1.tgz">Hadoop 1 / CDH3</a> or <a href="http://spark-project.org/download/spark-0.8.0-incubating-bin-cdh4.tgz">CDH 4</a> (125 MB tar.gz).</p>
-<p>If you are interested in working with the newest under-development code or contributing to Spark development, you can also check out the master branch from Git: <tt>git clone git://github.com/mesos/spark.git</tt>.</p>
+<p>If you are interested in working with the newest under-development code or contributing to Spark development, you can also check out the master branch from Git: <tt>git clone git://github.com/apache/incubator-spark.git</tt>.</p>
<p>Once you&#8217;ve downloaded Spark, you can find instructions for installing and building it on the <a href="/documentation.html">documentation page</a>.</p>
<h3>Previous Releases</h3>
<ul>
+ <li><a href="http://spark-project.org/download/spark-0.8.0-incubating.tgz">Spark 0.8.0</a> (September 25, 2013) <a href="/releases/spark-release-0-8-0.html">(release notes)</a> (prebuilt: <a href="http://spark-project.org/download/spark-0.8.0-incubating-bin-hadoop1.tgz">Hadoop 1 / CDH3</a>, <a href="http://spark-project.org/download/spark-0.8.0-incubating-bin-cdh4.tgz">CDH 4</a>)</li>
<li><a href="http://spark-project.org/download/spark-0.7.3-sources.tgz">Spark 0.7.3</a> (July 16, 2013) <a href="/releases/spark-release-0-7-3.html">(release notes)</a> (prebuilt: <a href="http://spark-project.org/download/spark-0.7.3-prebuilt-hadoop1.tgz">Hadoop 1 / CDH3</a>, <a href="http://spark-project.org/download/spark-0.7.3-prebuilt-cdh4.tgz">CDH 4</a>)</li>
<li><a href="http://spark-project.org/download/spark-0.7.2-sources.tgz">Spark 0.7.2</a> (June 2, 2013) <a href="/releases/spark-release-0-7-2.html">(release notes)</a> (prebuilt: <a href="http://spark-project.org/download/spark-0.7.2-prebuilt-hadoop1.tgz">Hadoop 1 / CDH3</a>, <a href="http://spark-project.org/download/spark-0.7.2-prebuilt-cdh4.tgz">CDH 4</a>)</li>
<li><a href="http://spark-project.org/download/spark-0.7.0-sources.tgz">Spark 0.7.0</a> (February 27, 2013) <a href="/releases/spark-release-0-7-0.html">(release notes)</a></li>
diff --git a/site/examples.html b/site/examples.html
index be37739a0..fd051b9b5 100644
--- a/site/examples.html
+++ b/site/examples.html
@@ -109,7 +109,7 @@
<article class="page type-page status-publish hentry">
<h2>Spark Examples</h2>
-<p>Spark is built around <em>distributed datasets</em> that support types of parallel operations: transformations, which are lazy and yield another distributed dataset (e.g., <code>map</code>, <code>filter</code>, and <code>join</code>), and actions, which force the computation of a dataset and return a result (e.g., <code>count</code>). The following examples show off some of the available operations and features.</p>
+<p>Spark is built around <em>distributed datasets</em> that support types of parallel operations: transformations, which are lazy and yield another distributed dataset (e.g., <code>map</code>, <code>filter</code>, and <code>join</code>), and actions, which force the computation of a dataset and return a result (e.g., <code>count</code>). The following examples show off some of the available operations and features. Several additional examples are distributed with Spark, both for core Spark (<a href="https://github.com/apache/incubator-spark/tree/master/examples/src/main/scala/org/apache/spark/examples">Scala examples</a>, <a href="https://github.com/apache/incubator-spark/tree/master/examples/src/main/java/org/apache/spark/examples">Java examples</a>, <a href="https://github.com/apache/incubator-spark/tree/master/python/examples">Python examples</a>) and streaming Spark (<a href="https://github.com/apache/incubator-spark/tree/master/examples/src/main/scala/org/apache/spark/streaming/examples">Scala examples</a>, <a href="https://github.com/apache/incubator-spark/tree/master/examples/src/main/java/org/apache/spark/streaming/examples">Java examples</a>).</p>
<h3>Text Search</h3>