aboutsummaryrefslogtreecommitdiff
path: root/docs/running-on-yarn.md
diff options
context:
space:
mode:
authorRaymond Liu <raymond.liu@intel.com>2014-01-02 14:24:48 +0800
committerRaymond Liu <raymond.liu@intel.com>2014-01-03 14:14:35 +0800
commitf442afc22ef2e8a10ea22d5a7b392d41a1c7fdf8 (patch)
treef53dd9dae7030a8a97d26e59749443cd0f78607a /docs/running-on-yarn.md
parent18b3633e54a8c902083f15e64983abca1eb0de7e (diff)
downloadspark-f442afc22ef2e8a10ea22d5a7b392d41a1c7fdf8.tar.gz
spark-f442afc22ef2e8a10ea22d5a7b392d41a1c7fdf8.tar.bz2
spark-f442afc22ef2e8a10ea22d5a7b392d41a1c7fdf8.zip
fix docs for yarn
Diffstat (limited to 'docs/running-on-yarn.md')
-rw-r--r--docs/running-on-yarn.md3
1 files changed, 0 insertions, 3 deletions
diff --git a/docs/running-on-yarn.md b/docs/running-on-yarn.md
index f47098554e..2c1b2cc294 100644
--- a/docs/running-on-yarn.md
+++ b/docs/running-on-yarn.md
@@ -116,8 +116,6 @@ For example:
# Building Spark for Hadoop/YARN 2.2.x
-Hadoop 2.2.x users must build Spark and publish it locally. The SBT build process handles Hadoop 2.2.x as a special case. This version of Hadoop has new YARN API changes and depends on a Protobuf version (2.5).
-
See [Building Spark with Maven](building-with-maven.html) for instructions on how to build Spark using the Maven process.
# Important Notes
@@ -126,4 +124,3 @@ See [Building Spark with Maven](building-with-maven.html) for instructions on ho
- The local directories used for spark will be the local directories configured for YARN (Hadoop Yarn config yarn.nodemanager.local-dirs). If the user specifies spark.local.dir, it will be ignored.
- The --files and --archives options support specifying file names with the # similar to Hadoop. For example you can specify: --files localtest.txt#appSees.txt and this will upload the file you have locally named localtest.txt into HDFS but this will be linked to by the name appSees.txt and your application should use the name as appSees.txt to reference it when running on YARN.
- The --addJars option allows the SparkContext.addJar function to work if you are using it with local files. It does not need to be used if you are using it with HDFS, HTTP, HTTPS, or FTP files.
-- YARN 2.2.x users cannot simply depend on the Spark packages without building Spark, as the published Spark artifacts are compiled to work with the pre 2.2 API. Those users must build Spark and publish it locally.