andythsu commented on issue #10078:
URL: https://github.com/apache/iceberg/issues/10078#issuecomment-2338251099

   @clamar14 @nastra I ended up using different jars and putting everything 
together instead of using `iceberg-aws-bundle` 
   ```
   def get_builder() -> SparkSession.Builder:
       return (
           SparkSession.builder \
       .config(
           "spark.jars",
           (
               f"{JARS_BASE_PATH}/iceberg-spark-runtime-3.4_2.12-1.6.0.jar"
               f",{JARS_BASE_PATH}/iceberg-spark-extensions-3.4_2.12-1.6.0.jar"
               f",{JARS_BASE_PATH}/hadoop-aws-3.3.2.jar" # needed for hadoop s3 
file system
               f",{JARS_BASE_PATH}/aws-java-sdk-bundle-1.12.769.jar"
               f",{JARS_BASE_PATH}/protobuf-java-3.2.0.jar"
           )
       ...
       )
   ```


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


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

Reply via email to