aboutsummaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* Change build and run instructions to use assembliesMatei Zaharia2013-08-297-13/+13
| | | | | | | | | | | | | | | | 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.
* Merge pull request #865 from tgravescs/fixtmpdirMatei Zaharia2013-08-281-3/+1
|\ | | | | Spark on Yarn should use yarn approved directories for spark.local.dir and tmp
| * Update docs and remove old reference to --user optionY.CORP.YAHOO.COM\tgraves2013-08-261-3/+1
| |
* | fix typosY.CORP.YAHOO.COM\tgraves2013-08-261-1/+1
| |
* | Add ability for user to specify environment variablesY.CORP.YAHOO.COM\tgraves2013-08-261-0/+6
|/
* Version bump for ec2 docsPatrick Wendell2013-08-241-1/+1
|
* Merge remote-tracking branch 'mesos/master' into ec2-updatesPatrick Wendell2013-08-246-29/+84
|\
| * Merge pull request #701 from ScrapCodes/documentation-suggestionsMatei Zaharia2013-08-222-3/+51
| |\ | | | | | | Documentation suggestions for spark streaming.
| | * Linking custom receiver guidePrashant Sharma2013-08-231-0/+3
| | |
| | * Improved documentation for spark custom receiverPrashant Sharma2013-08-231-3/+48
| | |
| * | Remove references to unsupported Hadoop versionsJey Kottalam2013-08-211-1/+1
| | |
| * | Update build docsJey Kottalam2013-08-212-24/+31
| | |
| * | Update jekyll plugin to match docs/README.mdJey Kottalam2013-08-211-1/+1
| | |
| * | Update docs for Spark UI portMatei Zaharia2013-08-201-1/+1
| | |
* | | Merge branch 'master' into ec2-updatesPatrick Wendell2013-08-217-53/+90
|\| | | | | | | | | | | | | | Conflicts: ec2/spark_ec2.py
| * | Merge remote-tracking branch 'jey/hadoop-agnostic'Matei Zaharia2013-08-201-2/+2
| |\ \ | | | | | | | | | | | | | | | | Conflicts: core/src/main/scala/spark/PairRDDFunctions.scala
| | * | update YARN docsJey Kottalam2013-08-151-2/+2
| | | |
| * | | Address some review comments:Matei Zaharia2013-08-181-2/+28
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | - When a resourceOffers() call has multiple offers, force the TaskSets to consider them in increasing order of locality levels so that they get a chance to launch stuff locally across all offers - Simplify ClusterScheduler.prioritizeContainers - Add docs on the new configuration options
| * | Merge pull request #809 from shivaram/sgd-cleanupEvan Sparks2013-08-122-1/+2
| |\ \ | | | | | | | | Clean up scaladoc in ML Lib.
| | * | Add ML Lib scaladoc to API dropdownShivaram Venkataraman2013-08-111-0/+1
| | | |
| | * | Clean up scaladoc in ML Lib.Shivaram Venkataraman2013-08-111-1/+1
| | | | | | | | | | | | | | | | | | | | Also build and copy ML Lib scaladoc in Spark docs build. Some more minor cleanup with respect to naming, test locations etc.
| * | | Removing dead docsPatrick Wendell2013-08-111-41/+0
| |/ /
| * | Merge pull request #787 from ash211/masterMatei Zaharia2013-08-061-1/+1
| |\ \ | | | | | | | | Update spark-standalone.md
| | * | Update spark-standalone.mdAndrew Ash2013-08-071-1/+1
| | | |
| * | | Merge remote-tracking branch 'dlyubimov/SPARK-827'Matei Zaharia2013-07-311-0/+8
| |\ \ \ | | | | | | | | | | | | | | | | | | | | Conflicts: docs/configuration.md
| | * | | typoDmitriy Lyubimov2013-07-271-1/+1
| | | | |
| | * | | changes per comments.Dmitriy Lyubimov2013-07-271-0/+8
| | | | |
| * | | | Documentation update for compression codec.Reynold Xin2013-07-301-3/+18
| | | | |
| * | | | Add docs about ipythonMatei Zaharia2013-07-291-3/+31
| | | | |
* | | | | Merge branch 'master' into ec2-updatesPatrick Wendell2013-07-319-40/+120
|\| | | | | | | | | | | | | | | | | | | | | | | | Conflicts: ec2/deploy.generic/root/mesos-ec2/ec2-variables.sh
| * | | | Consistently invoke bash with /usr/bin/env bash in scripts to make code more ↵Ubuntu2013-07-181-1/+1
| | | | | | | | | | | | | | | | | | | | portable (JIRA Ticket SPARK-817)
| * | | | Add Apache license headers and LICENSE and NOTICE filesMatei Zaharia2013-07-161-0/+17
| | |_|/ | |/| |
| * | | Add an option to disable reference tracking in KryoMatei Zaharia2013-07-151-1/+11
| | | |
| * | | Fixes typos in Spark Streaming Programming GuideAndy Konwinski2013-07-121-2/+2
| | | | | | | | | | | | These typos were reported on the spark-users mailing list, see: https://groups.google.com/d/msg/spark-users/SyLGgJlKCrI/LpeBypOkSMUJ
| * | | Merge remote-tracking branch 'pwendell/ui-updates'Matei Zaharia2013-07-061-2/+9
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: core/src/main/scala/spark/scheduler/DAGScheduler.scala core/src/main/scala/spark/util/AkkaUtils.scala pom.xml
| | * | | Adding config option for retained stagesPatrick Wendell2013-06-261-2/+9
| | |/ /
| * | | Clarify that PySpark is not supported on Windowsroot2013-07-011-3/+2
| | | |
| * | | Update docs on SCALA_LIBRARY_PATHMatei Zaharia2013-06-301-1/+3
| | | |
| * | | Made use of spark.executor.memory setting consistent and documented itMatei Zaharia2013-06-303-17/+25
| | | | | | | | | | | | | | | | | | | | | | | | Conflicts: core/src/main/scala/spark/SparkContext.scala
| * | | Simplify Python docs a little to do substring searchMatei Zaharia2013-06-261-4/+3
| | | |
| * | | Merge branch 'master' into streamingTathagata Das2013-06-2417-108/+245
| |\ \ \ | | | | | | | | | | | | | | | | | | | | Conflicts: .gitignore
| | * | | ADD_JARS environment variable for spark-shellMatei Zaharia2013-06-221-2/+8
| | |/ /
| | * | Fixed a couple typos and formating problems in the YARN documentation.Reynold Xin2013-05-171-9/+11
| | | |
| | * | Merge branch 'master' of https://github.com/mridulm/sparkReynold Xin2013-05-171-1/+1
| | |\ \
| | | * | Fix example jar nameMridul Muralidharan2013-05-171-1/+1
| | | | |
| | * | | Updated Scala version in docs generation ruby script.Reynold Xin2013-05-161-1/+1
| | |/ /
| | * | Fix documentation to use yarn-standalone as masterMridul Muralidharan2013-05-161-2/+2
| | | |
| | * | Fix running on yarn documentationMridul Muralidharan2013-05-161-4/+22
| | | |
| | * | Docs: Mention spark shell's default for MASTERAndrew Ash2013-05-151-0/+2
| | | |
| | * | 1) Add support for HADOOP_CONF_DIR (and/or YARN_CONF_DIR - use either) : ↵Mridul Muralidharan2013-05-111-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | which is used to specify the client side configuration directory : which needs to be part of the CLASSPATH. 2) Move from var+=".." to var="$var.." : the former does not work on older bash shells unfortunately.