aboutsummaryrefslogtreecommitdiff
path: root/docs/index.md
Commit message (Collapse)AuthorAgeFilesLines
...
* More updates, describing changes to recommended use of environment varsMatei Zaharia2013-08-311-1/+1
| | | | and new Python stuff
* Update docs about HDFS versionsMatei Zaharia2013-08-301-16/+11
|
* More doc improvements + better warnings when you haven't built SparkMatei Zaharia2013-08-301-21/+32
|
* Update some build instructions because only sbt assembly and mvn packageMatei Zaharia2013-08-291-1/+1
| | | | are now needed
* Change build and run instructions to use assembliesMatei Zaharia2013-08-291-2/+2
| | | | | | | | | | | | | | | | This commit makes Spark invocation saner by using an assembly JAR to find all of Spark's dependencies instead of adding all the JARs in lib_managed. It also packages the examples into an assembly and uses that as SPARK_EXAMPLES_JAR. Finally, it replaces the old "run" script with two better-named scripts: "run-examples" for examples, and "spark-class" for Spark internal classes (e.g. REPL, master, etc). This is also designed to minimize the confusion people have in trying to use "run" to run their own classes; it's not meant to do that, but now at least if they look at it, they can modify run-examples to do a decent job for them. As part of this, Bagel's examples are also now properly moved to the examples package instead of bagel.
* Updated link to SBTMatei Zaharia2013-04-071-1/+1
|
* Adds page to docs about building using Maven.Andy Konwinski2013-03-171-0/+3
| | | | | | | Adds links to new instructions in: * The main Spark project README.md * The docs nav menu called "More" * The docs Overview page under the "Building" and "Where to Go from Here" sections
* More doc tweaksMatei Zaharia2013-02-261-2/+3
|
* Some tweaks to docsMatei Zaharia2013-02-261-7/+1
|
* Some tweaks to docsMatei Zaharia2013-02-251-1/+1
|
* Merge branch 'master' into streamingTathagata Das2013-01-151-6/+12
|\ | | | | | | | | | | | | | | | | Conflicts: core/src/main/scala/spark/rdd/CoGroupedRDD.scala core/src/main/scala/spark/rdd/FilteredRDD.scala docs/_layouts/global.html docs/index.md run
| * Minor documentation and style fixes for PySpark.Josh Rosen2013-01-011-2/+6
| |
| * Add documentation for Python API.Josh Rosen2012-12-281-5/+6
| |
* | Streaming programming guide. STREAMING-2 #resolvePatrick Wendell2012-11-131-0/+1
|/
* Some doc fixes, including showing version number in nav bar againMatei Zaharia2012-10-131-4/+4
|
* Updates to documentation:Matei Zaharia2012-10-091-7/+4
| | | | | | | | - Edited quick start and tuning guide to simplify them a little - Simplified top menu bar - Made private a SparkContext constructor parameter that was left as public - Various small fixes
* Merge pull request #260 from andyk/update-docs-to-use-version-varsMatei Zaharia2012-10-091-1/+1
|\ | | | | Updates docs to use the new version num vars and adds Spark version in nav bar
| * Updating lots of docs to use the new special version number variables,Andy Konwinski2012-10-081-1/+1
| | | | | | | | | | also adding the version to the navbar so it is easy to tell which version of Spark these docs were compiled for.
* | Adding new download instructionsPatrick Wendell2012-10-081-1/+1
|/
* Adds liquid variables to docs templating system so that they can be usedAndy Konwinski2012-10-081-13/+13
| | | | | | | | | throughout the docs: SPARK_VERSION, SCALA_VERSION, and MESOS_VERSION. To use them, e.g. use {{site.SPARK_VERSION}}. Also removes uses of {{HOME_PATH}} which were being resolved to "" by the templating system anyway.
* A Spark "Quick Start" examplePatrick Wendell2012-10-011-0/+4
| | | | | | | This commit includes a quick start example that covers: 1) Basic usage of the Spark shell 2) A simple Spark job in Scala 3) A simple Spark job in Java
* Updates to standalone cluster, web UI and deploy docs.Matei Zaharia2012-09-261-2/+2
|
* More updates to docs, including tuning guideMatei Zaharia2012-09-261-0/+1
|
* Doc fixesMatei Zaharia2012-09-251-0/+4
|
* Various enhancements to the programming guide and HTML/CSSMatei Zaharia2012-09-251-2/+6
|
* More updates to documentationMatei Zaharia2012-09-251-16/+20
|
* Documentation updatesMatei Zaharia2012-09-251-20/+21
|
* Add Java Programming Guide; fix broken doc links.Josh Rosen2012-09-161-1/+1
|
* - Add docs/api to .gitignoreAndy Konwinski2012-09-161-4/+8
| | | | | | | | | | | | | - Rework/expand the nav bar with more of the docs site - Removing parts of docs about EC2 and Mesos that differentiate between running 0.5 and before - Merged subheadings from running-on-amazon-ec2.html that are still relevant (i.e., "Using a newer version of Spark" and "Accessing Data in S3") into ec2-scripts.html and deleted running-on-amazon-ec2.html - Added some TODO comments to a few docs - Updated the blurb about AMP Camp - Renamed programming-guide to spark-programming-guide - Fixing typos/etc. in Standalone Spark doc
* Added standalone and YARN docs. Merged standalone cluster into standalone docDenny2012-09-131-0/+2
|
* Small tweaks to generated doc pagesMatei Zaharia2012-09-121-2/+1
|
* Merge remote-tracking branch 'public-spark/dev' into docAndy Konwinski2012-09-121-0/+1
|\
| * Added a link to AMPCamp website in Spark docs.Reynold Xin2012-09-121-0/+1
| |
* | Fixing lots of broken links.Andy Konwinski2012-09-121-8/+8
|/
* Adding docs directory containing documentation currently on the wikiAndy Konwinski2012-09-121-0/+75
which can be compiled via jekyll, using the command `jekyll`. To compile and run a local webserver to serve the doc as a website, run `jekyll --server`.