You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by bz...@apache.org on 2015/06/09 06:10:26 UTC

incubator-zeppelin git commit: Fixing YARN build for CDH

Repository: incubator-zeppelin
Updated Branches:
  refs/heads/master 95dbdc7aa -> 5753d357e


Fixing YARN build for CDH

https://issues.apache.org/jira/browse/ZEPPELIN-94

"mvn clean package -Pspark-1.3 -Dspark.version=1.3.1 -Phadoop-2.2 -Dhadoop.version=2.0.0-cdh4.7.1 -Pyarn -DskipTests"

resulted in

```
[INFO] Reactor Summary:
[INFO]
[INFO] Zeppelin .......................................... SUCCESS [4.219s]
[INFO] Zeppelin: Interpreter ............................. SUCCESS [16.483s]
[INFO] Zeppelin: Zengine ................................. SUCCESS [5.951s]
[INFO] Zeppelin: Spark ................................... FAILURE [4.358s]
[INFO] Zeppelin: Markdown interpreter .................... SKIPPED
[INFO] Zeppelin: Angular interpreter ..................... SKIPPED
[INFO] Zeppelin: Shell interpreter ....................... SKIPPED
[INFO] Zeppelin: Hive interpreter ........................ SKIPPED
[INFO] Zeppelin: Tajo interpreter ........................ SKIPPED
[INFO] Zeppelin: web Application ......................... SKIPPED
[INFO] Zeppelin: Server .................................. SKIPPED
[INFO] Zeppelin: Packaging distribution .................. SKIPPED
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 31.394s
[INFO] Finished at: Mon Jun 08 23:24:12 KST 2015
[INFO] Final Memory: 55M/744M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project zeppelin-spark: Could not resolve dependencies for project org.apache.zeppelin:zeppelin-spark:jar:0.5.0-incubating-SNAPSHOT: The following artifacts could not be resolved: org.apache.hadoop:hadoop-client:jar:2.0.0-cdh4.7.1, org.apache.hadoop:hadoop-yarn-api:jar:2.0.0-cdh4.7.1: Could not find artifact org.apache.hadoop:hadoop-client:jar:2.0.0-cdh4.7.1 in central (http://repo.maven.apache.org/maven2) -> [Help 1]
```

Author: Alexander Bezzubov <bz...@apache.org>

Closes #94 from bzz/fix-build-with-cdh and squashes the following commits:

29c3573 [Alexander Bezzubov] ZEPPELIN-94: adding CDH repo to fix CDH build


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

Branch: refs/heads/master
Commit: 5753d357e6c0f83fa8ea9159374a37d2bb80c570
Parents: 95dbdc7
Author: Alexander Bezzubov <bz...@apache.org>
Authored: Tue Jun 9 11:48:13 2015 +0900
Committer: Alexander Bezzubov <bz...@apache.org>
Committed: Tue Jun 9 13:10:07 2015 +0900

----------------------------------------------------------------------
 spark/pom.xml | 7 +++++++
 1 file changed, 7 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/5753d357/spark/pom.xml
----------------------------------------------------------------------
diff --git a/spark/pom.xml b/spark/pom.xml
index 3c46c19..821fb71 100644
--- a/spark/pom.xml
+++ b/spark/pom.xml
@@ -43,6 +43,13 @@
     <yarn.version>${hadoop.version}</yarn.version>
   </properties>
 
+  <repositories>
+    <repository>
+      <id>cloudera</id>
+      <url>https://repository.cloudera.com/artifactory/cloudera-repos/</url>
+    </repository>
+  </repositories>
+
   <dependencies>
     <dependency>
       <groupId>org.slf4j</groupId>