zhangyue19921010 commented on pull request #3623:
URL: https://github.com/apache/hudi/pull/3623#issuecomment-966008544


   Hi @codope Thanks a lot for your attention. Here was what I did in our prd 
presto cluster
   add  these dependency in presto root pom
   ```
               <dependency>
                   <groupId>org.apache.hudi</groupId>
                   <artifactId>hudi-presto-bundle</artifactId>
                   <version>${dep.hudi.version}</version>
               </dependency>
   ```
   and 
   ```
           <dependency>
               <groupId>org.apache.hudi</groupId>
               <artifactId>hudi-presto-bundle</artifactId>
               <exclusions>
                   <exclusion>
                       <artifactId>jackson-xc</artifactId>
                       <groupId>org.codehaus.jackson</groupId>
                   </exclusion>
                   <exclusion>
                       <artifactId>fastutil</artifactId>
                       <groupId>it.unimi.dsi</groupId>
                   </exclusion>
                   <exclusion>
                       <artifactId>kryo-shaded</artifactId>
                       <groupId>com.esotericsoftware</groupId>
                   </exclusion>
                   <exclusion>
                       <artifactId>parquet-column</artifactId>
                       <groupId>org.apache.parquet</groupId>
                   </exclusion>
                   <exclusion>
                       <artifactId>avro</artifactId>
                       <groupId>org.apache.avro</groupId>
                   </exclusion>
                   <exclusion>
                       <artifactId>hadoop-hdfs</artifactId>
                       <groupId>org.apache.hadoop</groupId>
                   </exclusion>
                   <exclusion>
                       <artifactId>parquet-hadoop</artifactId>
                       <groupId>org.apache.parquet</groupId>
                   </exclusion>
                   <exclusion>
                       <artifactId>hadoop-mapreduce-client-core</artifactId>
                       <groupId>org.apache.hadoop</groupId>
                   </exclusion>
                   <exclusion>
                       <artifactId>parquet-common</artifactId>
                       <groupId>org.apache.parquet</groupId>
                   </exclusion>
                   <exclusion>
                       <artifactId>hadoop-common</artifactId>
                       <groupId>org.apache.hadoop</groupId>
                   </exclusion>
                   <exclusion>
                       <groupId>log4j</groupId>
                       <artifactId>log4j</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.slf4j</groupId>
                       <artifactId>jcl-over-slf4j</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>commons-logging</groupId>
                       <artifactId>commons-logging</artifactId>
                   </exclusion>
                   <exclusion>
                       <artifactId>slf4j-api</artifactId>
                       <groupId>org.slf4j</groupId>
                   </exclusion>
                   <exclusion>
                       <artifactId>slf4j-log4j12</artifactId>
                       <groupId>org.slf4j</groupId>
                   </exclusion>
                   <exclusion>
                       <artifactId>hbase-shaded-server</artifactId>
                       <groupId>org.apache.hbase</groupId>
                   </exclusion>
               </exclusions>
           </dependency>
   ```
   in presto-hive part


-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to