nsivabalan commented on issue #6747: URL: https://github.com/apache/hudi/issues/6747#issuecomment-1284333773
here is my inference so far. to run deltastreamer, you just need hudi-utilities-bundle. spark-bundle in addition is not required. ``` --jars /usr/lib/spark/external/lib/spark-avro.jar,/usr/lib/hudi/hudi-spark-bundle.jar,/usr/lib/hudi/hudi-utilities-bundle.jar --packages org.apache.hudi:hudi-spark-bundle_2.12:0.9.0,org.apache.spark:spark-avro_2.12:3.0.1 ``` From your command, looks like you are adding spark bundle via --packages and both spark and utilties. can you remove pulling in spark bundles. and wrt utilities, try to pull in just once. also, you don't even need to pull in via --packages. bcoz, spark-submit expects an app jar anyways. ``` spark-submit . . --class CLASSNAME JAR_LOCATION param1 param2 . . `` -- 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]
