Repository: bigtop Updated Branches: refs/heads/master 209d08869 -> 11af728be
BIGTOP-3024: Zeppelin build is failed after Spark is bumpped to 2.2.1 After Spark is bumpped to 2.2.1 by BIGTOP-2991, zeppelin build is failed. The root cause is zeppelin now try to download spark-2.2.1.tgz and spark-2.2.1-bin-without-hadoop.tgz from http://d3kbcqa49mib13.cloudfront.net. This site currently doesn't offer spark 2.2.1 related packages. So the download link need to be updated to apache site: https://www.apache.org/dist/spark/ This closes #355 Change-Id: Icea4dc0ac6d65104c7a071e7b044161423dffec5 Signed-off-by: Jun He <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/11af728b Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/11af728b Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/11af728b Branch: refs/heads/master Commit: 11af728bee64455f4e1081d5cd9c27b9a06c53e3 Parents: 209d088 Author: Jun He <[email protected]> Authored: Thu May 3 11:06:14 2018 +0800 Committer: Jun He <[email protected]> Committed: Tue May 8 01:21:14 2018 +0000 ---------------------------------------------------------------------- bigtop-packages/src/common/zeppelin/do-component-build | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/bigtop/blob/11af728b/bigtop-packages/src/common/zeppelin/do-component-build ---------------------------------------------------------------------- diff --git a/bigtop-packages/src/common/zeppelin/do-component-build b/bigtop-packages/src/common/zeppelin/do-component-build index 37e516c..a4728fe 100644 --- a/bigtop-packages/src/common/zeppelin/do-component-build +++ b/bigtop-packages/src/common/zeppelin/do-component-build @@ -45,6 +45,8 @@ fi export MAVEN_OPTS="-Xmx1500m -Xms1500m" +# change spark src download url to apache +sed -i "s/http\:\/\/d3kbcqa49mib13\.cloudfront\.net/https\:\/\/www\.apache\.org\/dist\/spark\/spark-\$\{spark\.version\}/g" spark-dependencies/pom.xml mvn $BUILD_OPTS clean package mkdir -p build/dist
