You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@carbondata.apache.org by ra...@apache.org on 2019/05/21 12:29:18 UTC

[carbondata] branch master updated: [HOTFIX] exclude logback from arrow dependency

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

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


The following commit(s) were added to refs/heads/master by this push:
     new df71291  [HOTFIX] exclude logback from arrow dependency
df71291 is described below

commit df71291ec6a87cbf1c3e03cf728959abf2990faf
Author: ajantha-bhat <aj...@gmail.com>
AuthorDate: Tue May 21 14:46:20 2019 +0530

    [HOTFIX] exclude logback from arrow dependency
    
    [HOTFIX] exclude logback from arrow dependency
    logack is a similar logging framework with default DEBUG log level, arrow was importing this by transitive dependency. Due to this all library log level set to debug causing huge logs.
    Excluded this from dependency now.
    
    This closes #3228
---
 store/sdk/pom.xml | 48 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 48 insertions(+)

diff --git a/store/sdk/pom.xml b/store/sdk/pom.xml
index a1d594d..6f04a58 100644
--- a/store/sdk/pom.xml
+++ b/store/sdk/pom.xml
@@ -49,6 +49,12 @@
       <groupId>org.apache.arrow</groupId>
       <artifactId>arrow-format</artifactId>
       <version>0.12.0</version>
+      <exclusions>
+        <exclusion>
+          <groupId>ch.qos.logback</groupId>
+          <artifactId>logback-classic</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.apache.arrow</groupId>
@@ -56,6 +62,10 @@
       <version>0.12.0</version>
       <exclusions>
         <exclusion>
+          <groupId>ch.qos.logback</groupId>
+          <artifactId>logback-classic</artifactId>
+        </exclusion>
+        <exclusion>
           <groupId>io.netty</groupId>
           <artifactId>netty-common</artifactId>
         </exclusion>
@@ -71,6 +81,10 @@
       <version>0.12.0</version>
       <exclusions>
         <exclusion>
+          <groupId>ch.qos.logback</groupId>
+          <artifactId>logback-classic</artifactId>
+        </exclusion>
+        <exclusion>
           <groupId>io.netty</groupId>
           <artifactId>netty-common</artifactId>
         </exclusion>
@@ -84,6 +98,12 @@
       <groupId>org.apache.arrow</groupId>
       <artifactId>arrow-plasma</artifactId>
       <version>0.12.0</version>
+      <exclusions>
+        <exclusion>
+          <groupId>ch.qos.logback</groupId>
+          <artifactId>logback-classic</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>org.apache.arrow</groupId>
@@ -91,6 +111,10 @@
       <version>0.12.0</version>
       <exclusions>
         <exclusion>
+          <groupId>ch.qos.logback</groupId>
+          <artifactId>logback-classic</artifactId>
+        </exclusion>
+        <exclusion>
           <groupId>io.netty</groupId>
           <artifactId>netty-buffer</artifactId>
         </exclusion>
@@ -100,21 +124,45 @@
       <groupId>org.apache.arrow</groupId>
       <artifactId>arrow-tools</artifactId>
       <version>0.12.0</version>
+      <exclusions>
+        <exclusion>
+          <groupId>ch.qos.logback</groupId>
+          <artifactId>logback-classic</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>com.fasterxml.jackson.core</groupId>
       <artifactId>jackson-core</artifactId>
       <version>${dep.jackson.version}</version>
+      <exclusions>
+        <exclusion>
+          <groupId>ch.qos.logback</groupId>
+          <artifactId>logback-classic</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>com.fasterxml.jackson.core</groupId>
       <artifactId>jackson-annotations</artifactId>
       <version>${dep.jackson.version}</version>
+      <exclusions>
+        <exclusion>
+          <groupId>ch.qos.logback</groupId>
+          <artifactId>logback-classic</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
     <dependency>
       <groupId>com.fasterxml.jackson.core</groupId>
       <artifactId>jackson-databind</artifactId>
       <version>${dep.jackson.version}</version>
+      <exclusions>
+        <exclusion>
+          <groupId>ch.qos.logback</groupId>
+          <artifactId>logback-classic</artifactId>
+        </exclusion>
+      </exclusions>
     </dependency>
   </dependencies>