You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by zj...@apache.org on 2020/07/11 07:43:01 UTC

[zeppelin] branch master updated: [ZEPPELIN-4935]. IRInterpreter is broken due to missing of hadoop jars

This is an automated email from the ASF dual-hosted git repository.

zjffdu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/zeppelin.git


The following commit(s) were added to refs/heads/master by this push:
     new 8e47bd8  [ZEPPELIN-4935]. IRInterpreter is broken due to missing of hadoop jars
8e47bd8 is described below

commit 8e47bd8a7315636c084ffd44f362d48339905db0
Author: Jeff Zhang <zj...@apache.org>
AuthorDate: Fri Jul 3 10:09:46 2020 +0800

    [ZEPPELIN-4935]. IRInterpreter is broken due to missing of hadoop jars
    
    ### What is this PR for?
    
    Trivial PR to add hadoop jars to rlang module, otherwise IRInterpreter won't work because IRInterpreter depends on SparkBackend to communicate between R process and Java process. and SparkBackend depends on hadoop jar.
    
    ### What type of PR is it?
    [Bug Fix ]
    
    ### Todos
    * [ ] - Task
    
    ### What is the Jira issue?
    * https://issues.apache.org/jira/browse/ZEPPELIN-4935
    
    ### How should this be tested?
    * CI pass
    
    ### Screenshots (if appropriate)
    
    ### Questions:
    * Does the licenses files need update? No
    * Is there breaking changes for older versions? No
    * Does this needs documentation? No
    
    Author: Jeff Zhang <zj...@apache.org>
    
    Closes #3847 from zjffdu/ZEPPELIN-4935 and squashes the following commits:
    
    616a80874 [Jeff Zhang] [ZEPPELIN-4935]. IRInterpreter is broken due to missing of hadoop jars
---
 rlang/pom.xml | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/rlang/pom.xml b/rlang/pom.xml
index ad93178..5564545 100644
--- a/rlang/pom.xml
+++ b/rlang/pom.xml
@@ -110,6 +110,13 @@
         </dependency>
 
         <dependency>
+            <groupId>org.apache.hadoop</groupId>
+            <artifactId>hadoop-client</artifactId>
+            <version>2.7.7</version>
+            <scope>compile</scope>
+        </dependency>
+
+        <dependency>
             <groupId>org.jsoup</groupId>
             <artifactId>jsoup</artifactId>
             <version>${jsoup.version}</version>