devanshguptatrepp commented on issue #7135:
URL: https://github.com/apache/hudi/issues/7135#issuecomment-1306695004

   Here are the spark-submit commands that I have tried:
   1. `spark-submit --deploy-mode client --jars 
s3a://bucketName/binaries/hudi/etl/hudi-spark-bundle_2.12-0.11.0.jar --class 
com.trepp.EntryClass 
s3://bucketName/application-1.0-SNAPSHOT-jar-with-dependencies.jar`
   2. `spark-submit --deploy-mode client --jars 
s3a://bucketName/binaries/hudi/etl/hudi-spark-bundle_2.12-0.12.0.jar --class 
com.trepp.EntryClass 
s3://bucketName/application-1.0-SNAPSHOT-jar-with-dependencies.jar`
   
   In my pom.xml, I have the following dependencies:
   `<dependency>
               <groupId>org.apache.hudi</groupId>
               <artifactId>hudi-spark_2.12</artifactId>
               <version>0.12.0</version>
               <exclusions>
                   <exclusion>
                       <groupId>org.glassfish</groupId>
                       <artifactId>javax.el</artifactId>
                   </exclusion>
                   <exclusion>
                       <artifactId>jackson-databind</artifactId>
                       <groupId>com.fasterxml.jackson.core</groupId>
                   </exclusion>
                   <exclusion>
                       <artifactId>jackson-module-scala_2.11</artifactId>
                       <groupId>com.fasterxml.jackson.module</groupId>
                   </exclusion>
                   <exclusion>
                       <artifactId>hudi-spark-client</artifactId>
                       <groupId>org.apache.hudi</groupId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.hudi</groupId>
                       <artifactId>hudi-spark-common_2.11</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.hudi</groupId>
                       <artifactId>hudi-spark2_2.11</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.hudi</groupId>
                       <artifactId>hudi-spark2-common</artifactId>
                   </exclusion>
               </exclusions>
           </dependency>
   
           <dependency>
               <groupId>org.apache.hudi</groupId>
               <artifactId>hudi-spark-common_2.12</artifactId>
               <version>0.12.0</version>
               <exclusions>
                   <exclusion>
                       <groupId>org.glassfish</groupId>
                       <artifactId>javax.el</artifactId>
                   </exclusion>
                   <exclusion>
                       <groupId>org.apache.hudi</groupId>
                       <artifactId>hudi-spark-common_2.12</artifactId>
                   </exclusion>
               </exclusions>
           </dependency>
   
           <!-- 
https://mvnrepository.com/artifact/org.apache.hudi/hudi-spark3-bundle -->
           <dependency>
               <groupId>org.apache.hudi</groupId>
               <artifactId>hudi-spark3-bundle_2.12</artifactId>
               <version>0.12.0</version>
           </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.

To unsubscribe, e-mail: [email protected]

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

Reply via email to