aboutsummaryrefslogtreecommitdiff
path: root/docs/running-on-yarn.md
Commit message (Collapse)AuthorAgeFilesLines
* yarn-client addJar fix and misc otherThomas Graves2014-01-091-2/+13
|
* Merge pull request #345 from colorant/yarnThomas Graves2014-01-081-0/+2
|\ | | | | | | | | | | support distributing extra files to worker for yarn client mode So that user doesn't need to package all dependency into one assemble jar as spark app jar
| * Export --file for YarnClient mode to support sending extra files to worker ↵Raymond Liu2014-01-071-0/+2
| | | | | | | | on yarn cluster
* | Code review feedbackHolden Karau2014-01-051-3/+3
|/
* Merge remote-tracking branch 'apache-github/master' into remove-binariesPatrick Wendell2014-01-031-7/+4
|\ | | | | | | | | | | Conflicts: core/src/test/scala/org/apache/spark/DriverSuite.scala docs/python-programming-guide.md
| * Merge pull request #317 from ScrapCodes/spark-915-segregate-scriptsPatrick Wendell2014-01-031-4/+4
| |\ | | | | | | | | | Spark-915 segregate scripts
| | * sbin/spark-class* -> bin/spark-class*Prashant Sharma2014-01-031-2/+2
| | |
| | * run-example -> bin/run-examplePrashant Sharma2014-01-021-1/+1
| | |
| | * spark-shell -> bin/spark-shellPrashant Sharma2014-01-021-1/+1
| | |
| | * Merge branch 'scripts-reorg' of github.com:shane-huang/incubator-spark into ↵Prashant Sharma2014-01-021-2/+2
| | |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | spark-915-segregate-scripts Conflicts: bin/spark-shell core/pom.xml core/src/main/scala/org/apache/spark/SparkContext.scala core/src/main/scala/org/apache/spark/scheduler/cluster/mesos/CoarseMesosSchedulerBackend.scala core/src/main/scala/org/apache/spark/ui/UIWorkloadGenerator.scala core/src/test/scala/org/apache/spark/DriverSuite.scala python/run-tests sbin/compute-classpath.sh sbin/spark-class sbin/stop-slaves.sh
| | | * added spark-class and spark-executor to sbinshane-huang2013-09-231-2/+2
| | | | | | | | | | | | | | | | Signed-off-by: shane-huang <shengsheng.huang@intel.com>
| * | | fix docs for yarnRaymond Liu2014-01-031-3/+0
| | | |
| * | | Update maven build documentationRaymond Liu2014-01-031-1/+1
| | | |
| * | | Fix yarn/README.md and update docs/running-on-yarn.mdRaymond Liu2014-01-031-1/+1
| |/ /
* | | fixed review commentsPrashant Sharma2014-01-031-2/+2
| | |
* | | Removed sbt folder and changed docs accordinglyPrashant Sharma2014-01-021-3/+3
|/ /
* | Fix list rendering in YARN markdown docs.Patrick Wendell2013-12-101-5/+7
| |
* | Various broken links in documentationPatrick Wendell2013-12-071-2/+2
| |
* | more docsAli Ghodsi2013-12-061-1/+1
| |
* | Updated documentation about the YARN v2.2 build processAli Ghodsi2013-12-061-0/+8
| |
* | Add YarnClientClusterScheduler and Backend.Raymond Liu2013-11-221-2/+25
| | | | | | | | | | | | | | With this scheduler, the user application is launched locally, While the executor will be launched by YARN on remote nodes. This enables spark-shell to run upon YARN.
* | Impove Spark on Yarn Error handlingtgravescs2013-11-191-0/+2
| |
* | Allow spark on yarn to be run from HDFS. Allows the spark.jar, app.jar, and ↵tgravescs2013-11-041-0/+1
| | | | | | | | log4j.properties to be put into hdfs.
* | Merge remote-tracking branch 'tgravescs/sparkYarnDistCache'Matei Zaharia2013-10-101-1/+8
|\ \ | | | | | | | | | | | | | | | | | | | | | Closes #11 Conflicts: docs/running-on-yarn.md yarn/src/main/scala/org/apache/spark/deploy/yarn/ClientArguments.scala
| * | Adding in the --addJars option to make SparkContext.addJar work on yarn and ↵tgravescs2013-10-031-0/+2
| | | | | | | | | | | | | | | | | | cleanup the classpaths
| * | Support distributed cache files and archives on spark on yarn and attempt to ↵Y.CORP.YAHOO.COM\tgraves2013-09-231-1/+6
| |/ | | | | | | cleanup the staging directory on exit
* / Allow users to set the application name for Spark on Yarntgravescs2013-10-021-0/+1
|/
* Clarify YARN exampleJey Kottalam2013-09-061-9/+22
|
* Review comment changes and update to org.apache packagingY.CORP.YAHOO.COM\tgraves2013-09-031-3/+3
|
* Merge remote-tracking branch 'mesos/master' into yarnUILinkY.CORP.YAHOO.COM\tgraves2013-09-031-28/+11
|\ | | | | | | | | | | | | | | Conflicts: core/src/main/scala/org/apache/spark/ui/UIUtils.scala core/src/main/scala/org/apache/spark/ui/jobs/PoolTable.scala core/src/main/scala/org/apache/spark/ui/jobs/StageTable.scala docs/running-on-yarn.md
| * More doc improvements + better warnings when you haven't built SparkMatei Zaharia2013-08-301-28/+11
| |
* | fix up minor thingsY.CORP.YAHOO.COM\tgraves2013-08-301-1/+1
| |
* | Link the Spark UI to the Yarn UIY.CORP.YAHOO.COM\tgraves2013-08-301-0/+4
|/
* Change build and run instructions to use assembliesMatei Zaharia2013-08-291-4/+4
| | | | | | | | | | | | | | | | 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
|/
* Update build docsJey Kottalam2013-08-211-13/+7
|
* update YARN docsJey Kottalam2013-08-151-2/+2
|
* Fixed a couple typos and formating problems in the YARN documentation.Reynold Xin2013-05-171-9/+11
|
* Fix example jar nameMridul Muralidharan2013-05-171-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
|
* 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.
* Add some basic documentationMridul Muralidharan2013-04-191-9/+22
|
* Fix broken link to YARN documentation.Andy Konwinski2013-03-131-1/+1
|
* Fixing YARN instructionsPatrick Wendell2012-10-091-3/+3
|
* Updating lots of docs to use the new special version number variables,Andy Konwinski2012-10-081-7/+8
| | | | | also adding the version to the navbar so it is easy to tell which version of Spark these docs were compiled for.
* Minor typosMatei Zaharia2012-09-261-2/+2
|