nsivabalan edited a comment on issue #3395:
URL: https://github.com/apache/hudi/issues/3395#issuecomment-895329692


   Can you try w/ scala version 2.11. 
   If not, artifacts for bundle has to change. 
   
   ```
   // spark-shell for spark 3
   spark-shell \
     --packages 
org.apache.hudi:hudi-spark3-bundle_2.12:0.8.0,org.apache.spark:spark-avro_2.12:3.0.1
 \
     --conf 'spark.serializer=org.apache.spark.serializer.KryoSerializer'
     
   // spark-shell for spark 2 with scala 2.12
   spark-shell \
     --packages 
org.apache.hudi:hudi-spark-bundle_2.12:0.8.0,org.apache.spark:spark-avro_2.12:2.4.4
 \
     --conf 'spark.serializer=org.apache.spark.serializer.KryoSerializer'
     
   // spark-shell for spark 2 with scala 2.11
   spark-shell \
     --packages 
org.apache.hudi:hudi-spark-bundle_2.11:0.8.0,org.apache.spark:spark-avro_2.11:2.4.4
 \
     --conf 'spark.serializer=org.apache.spark.serializer.KryoSerializer'
   ```
   
   Here are the 3 diff possible configurations wrt spark and scala version. 


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