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: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org

Reply via email to