aboutsummaryrefslogtreecommitdiff
path: root/make-distribution.sh
diff options
context:
space:
mode:
authorAndrew Or <andrew@databricks.com>2014-11-12 13:39:45 -0800
committerAndrew Or <andrew@databricks.com>2014-11-12 13:39:45 -0800
commitaa43a8da012cf0dac7c7fcccde5f028a942599f0 (patch)
treea0a79cd9c29f677ba85c2b0d29979fb5dafdee37 /make-distribution.sh
parent6e3c5a296c90a551be5e6c7292a66f2e65338240 (diff)
downloadspark-aa43a8da012cf0dac7c7fcccde5f028a942599f0.tar.gz
spark-aa43a8da012cf0dac7c7fcccde5f028a942599f0.tar.bz2
spark-aa43a8da012cf0dac7c7fcccde5f028a942599f0.zip
[SPARK-4281][Build] Package Yarn shuffle service into its own jar
This is another addendum to #3082, which added the Yarn shuffle service to run inside the NM. This PR makes the feature much more usable by packaging enough dependencies into the jar to run the service inside an NM. After these changes, the user can run `./make-distribution.sh` and find a `spark-network-yarn*.jar` in their `lib` directory. The equivalent change is done in SBT by making the `network-yarn` module an assembly project. Author: Andrew Or <andrew@databricks.com> Closes #3147 from andrewor14/yarn-shuffle-build and squashes the following commits: bda58d0 [Andrew Or] Fix line too long 81e9705 [Andrew Or] Merge branch 'master' of github.com:apache/spark into yarn-shuffle-build fb7f398 [Andrew Or] Rename jar to spark-{VERSION}-yarn-shuffle.jar 65db822 [Andrew Or] Actually mark slf4j as provided abcefd1 [Andrew Or] Do the same for SBT c653028 [Andrew Or] Package network-yarn and its dependencies
Diffstat (limited to 'make-distribution.sh')
-rwxr-xr-xmake-distribution.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/make-distribution.sh b/make-distribution.sh
index d46edbc50d..55cbdc14ac 100755
--- a/make-distribution.sh
+++ b/make-distribution.sh
@@ -181,6 +181,7 @@ echo "Spark $VERSION$GITREVSTRING built for Hadoop $SPARK_HADOOP_VERSION" > "$DI
# Copy jars
cp "$FWDIR"/assembly/target/scala*/*assembly*hadoop*.jar "$DISTDIR/lib/"
cp "$FWDIR"/examples/target/scala*/spark-examples*.jar "$DISTDIR/lib/"
+cp "$FWDIR"/network/yarn/target/scala*/spark-*-yarn-shuffle.jar "$DISTDIR/lib/"
# Copy example sources (needed for python and SQL)
mkdir -p "$DISTDIR/examples/src/main"