You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by mo...@apache.org on 2015/10/18 12:16:51 UTC

incubator-zeppelin git commit: Spark 1.1.x and 1.2.x is removed from http://www.apache.org/dist/spark/

Repository: incubator-zeppelin
Updated Branches:
  refs/heads/master 7998ffd54 -> ecc497011


Spark 1.1.x and 1.2.x is removed from http://www.apache.org/dist/spark/

Issue described https://issues.apache.org/jira/browse/ZEPPELIN-350

This PR fixes CI test failure by changing spark package download address from http://www.us.apache.org/dist/spark to http://archive.apache.org/dist/spark

Author: Lee moon soo <mo...@apache.org>

Closes #351 from Leemoonsoo/ZEPPELIN-350 and squashes the following commits:

0f6a749 [Lee moon soo] Update spark.download.url, too
0ead0b9 [Lee moon soo] Change address to archive.apache.org from www.apache.org to download all spark packages


Project: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/commit/ecc49701
Tree: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/tree/ecc49701
Diff: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/diff/ecc49701

Branch: refs/heads/master
Commit: ecc497011a9c355d26f15b919509057c04c070ae
Parents: 7998ffd
Author: Lee moon soo <mo...@apache.org>
Authored: Sun Oct 18 06:48:48 2015 +0900
Committer: Lee moon soo <mo...@apache.org>
Committed: Sun Oct 18 19:17:44 2015 +0900

----------------------------------------------------------------------
 spark-dependencies/pom.xml   | 4 ++--
 testing/startSparkCluster.sh | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/ecc49701/spark-dependencies/pom.xml
----------------------------------------------------------------------
diff --git a/spark-dependencies/pom.xml b/spark-dependencies/pom.xml
index 90dabb9..8a14757 100644
--- a/spark-dependencies/pom.xml
+++ b/spark-dependencies/pom.xml
@@ -50,7 +50,7 @@
     <akka.group>org.spark-project.akka</akka.group>
     <akka.version>2.3.4-spark</akka.version>
 
-    <spark.download.url>http://www.apache.org/dist/spark/spark-${spark.version}/spark-${spark.version}.tgz</spark.download.url>
+    <spark.download.url>http://archive.apache.org/dist/spark/spark-${spark.version}/spark-${spark.version}.tgz</spark.download.url>
     <py4j.version>0.8.2.1</py4j.version>
   </properties>
 
@@ -594,7 +594,7 @@
     <profile>
       <id>pyspark</id>
       <properties>
-        <spark.download.url>http://www.apache.org/dist/spark/spark-${spark.version}/spark-${spark.version}.tgz
+        <spark.download.url>http://archive.apache.org/dist/spark/spark-${spark.version}/spark-${spark.version}.tgz
         </spark.download.url>
       </properties>
       <build>

http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/ecc49701/testing/startSparkCluster.sh
----------------------------------------------------------------------
diff --git a/testing/startSparkCluster.sh b/testing/startSparkCluster.sh
index 7cdd996..1f70fe6 100755
--- a/testing/startSparkCluster.sh
+++ b/testing/startSparkCluster.sh
@@ -31,7 +31,7 @@ ZEPPELIN_HOME="$(cd "${FWDIR}/.."; pwd)"
 export SPARK_HOME=${ZEPPELIN_HOME}/spark-${SPARK_VERSION}-bin-hadoop${HADOOP_VERSION}
 echo "SPARK_HOME is ${SPARK_HOME} " 
 if [ ! -d "${SPARK_HOME}" ]; then
-    wget -q http://www.us.apache.org/dist/spark/spark-${SPARK_VERSION}/spark-${SPARK_VERSION}-bin-hadoop${HADOOP_VERSION}.tgz
+    wget -q http://archive.apache.org/dist/spark/spark-${SPARK_VERSION}/spark-${SPARK_VERSION}-bin-hadoop${HADOOP_VERSION}.tgz
     tar zxf spark-${SPARK_VERSION}-bin-hadoop${HADOOP_VERSION}.tgz
 fi