summaryrefslogblamecommitdiff
path: root/downloads.md
blob: 856ef1775f54df8ab442e8ac8dda8f5dc788f8d5 (plain) (tree)
1
2
3
4
5
6
7
8
9








                






                               
                 
 


                                                                                                                                    
 
                          

                                                                                        
                         
                                                                                        
 
                          
                                                                                         
 
                                                      
 
                                                                        
 


                                                                                                           

                                                                                                                                                           

                             
                               
                  
 















                                                                                                                                                                                                                                                                                    
                             

                                




                                                                                                                                                                
                                                                       
                                                             

                                                                                                                                                              
 
                                       
                           
---
layout: global
title: Downloads
type: singular
navigation:
  weight: 3
  show: true
---

<script type="text/javascript">
$(document).ready(function() {
  initDownloads();
  initReleaseNotes();
});
</script>

## Download Spark

The latest release of Spark is Spark 1.4.1, released on July 15, 2015
<a href="{{site.url}}releases/spark-release-1-4-1.html">(release notes)</a>
<a href="https://git-wip-us.apache.org/repos/asf?p=spark.git;a=commit;h=dbaa5c294eb565f84d7032e387e4b8c1a56e4cd2">(git tag)</a><br/>

1. Choose a Spark release:
  <select id="sparkVersionSelect" onChange="javascript:onVersionSelect();"></select><br>

2. Choose a package type:
  <select id="sparkPackageSelect" onChange="javascript:onPackageSelect();"></select><br>

3. Choose a download type:
  <select id="sparkDownloadSelect" onChange="javascript:onDownloadSelect()"></select><br>

4. Download Spark: <span id="spanDownloadLink"></span>

5. Verify this release using the <span id="sparkDownloadVerify"></span>.

_Note: Scala 2.11 users should download the Spark source package and build
[with Scala 2.11 support](http://spark.apache.org/docs/latest/building-spark.html#building-for-scala-211)._

### Link with Spark
Spark artifacts are [hosted in Maven Central](http://search.maven.org/#browse%7C1686516968). You can add a Maven dependency with the following coordinates:

    groupId: org.apache.spark
    artifactId: spark-core_2.10
    version: 1.4.1

### Nightly Packages and Artifacts
Packages are built regularly off of Spark's master branch and release branches. These provide access to the bleeding-edge of Spark master or the most recent fixes not yet incorporated into a maintenance release. Spark nightly packages are available at:

    # Latest master build
    http://people.apache.org/~pwendell/spark-nightly/spark-master-bin/latest

    # All nightly builds
    http://people.apache.org/~pwendell/spark-nightly/

Spark also publishes SNAPSHOT releases of its Maven artifacts for both master and maintenance branches on a nightly basis. To link to a SNAPSHOT you need to add the ASF snapshot repository to your build. Note that SNAPSHOT artifacts are ephemeral and may change or be removed.
    
    # To use these you must add the ASF snapshot repository
    # at http://repository.apache.org/snapshots/

    groupId: org.apache.spark
    artifactId: spark-core_2.10
    version: 1.5.0-SNAPSHOT  

### Spark Source Code Management
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:

    # Master development branch
    git clone git://github.com/apache/spark.git

    # 1.4 maintenance branch with stability fixes on top of Spark 1.4.1
    git clone git://github.com/apache/spark.git -b branch-1.4

Once you've downloaded Spark, you can find instructions for installing and building it on the <a href="{{site.url}}documentation.html">documentation page</a>.

<h3 id="all-releases">All Releases</h3>
<ul id="sparkReleaseNotes">