gianm commented on issue #8647: use the latest release of datasketches
URL: https://github.com/apache/incubator-druid/pull/8647#issuecomment-558321928
 
 
   > I ran `mvn dependency:tree` in `extensions-core/datasketches` and it looks 
like `com.yahoo.datasketches:sketches-core:0.9.0` is a transitive dependency of 
`org.apache.calcite:calcite-core:1.21`.
   
   It is, but we exclude it:
   
   ```xml
       <dependency>
         <groupId>org.apache.calcite</groupId>
         <artifactId>calcite-core</artifactId>
         <exclusions>
           <!--
             ~ Calcite 1.15.0 uses sketches-core 0.9.0 for a profiling feature:
             ~ (https://issues.apache.org/jira/browse/CALCITE-1616).
             ~ This conflicts with druid-datasketches which uses a newer 
version of sketches-core.
             ~ Druid does not use this Calcite profiling feature, so we exclude 
sketches-core here.
             -->
           <exclusion>
             <groupId>com.yahoo.datasketches</groupId>
             <artifactId>sketches-core</artifactId>
           </exclusion>
           <!--
             ~ We don't use Calcite's YAML features.
             -->
           <exclusion>
             <groupId>com.fasterxml.jackson.dataformat</groupId>
             <artifactId>jackson-dataformat-yaml</artifactId>
           </exclusion>
           <exclusion>
             <groupId>org.yaml</groupId>
             <artifactId>snakeyaml</artifactId>
           </exclusion>
         </exclusions>
       </dependency>
   
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to