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

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


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

commit 38aac69d0821817a341ebac49eb56bd6d776dacd
Author: Jeff Zhang <zjf...@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 <zjf...@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
    
    (cherry picked from commit 8e47bd8a7315636c084ffd44f362d48339905db0)
    Signed-off-by: Jeff Zhang <zjf...@apache.org>
---
 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>

Reply via email to