nastra commented on issue #7490:
URL: https://github.com/apache/iceberg/issues/7490#issuecomment-1531732783

   I was talking offline with @mayurchoubey and the issue ended up being mixed 
AWS SDK library versions on the classpath. 
   In order to fix the issue, it was required to specify each AWS SDK library 
individually rather than using the `bundle` jar.
   
   ```
       implementation 'org.apache.iceberg:iceberg-spark-runtime-3.3_2.13:1.2.1'
   
       // force awssdk version required by Iceberg
       implementation "software.amazon.awssdk:utils:2.20.18"
       implementation "software.amazon.awssdk:url-connection-client:2.20.18"
       implementation "software.amazon.awssdk:s3:2.20.18"
       implementation "software.amazon.awssdk:glue:2.20.18"
       implementation "software.amazon.awssdk:dynamodb:2.20.18"
       implementation "software.amazon.awssdk:kms:2.20.18"
       implementation "software.amazon.awssdk:sts:2.20.18"
       implementation "software.amazon.awssdk:sdk-core:2.20.18"
       implementation "software.amazon.awssdk:aws-core:2.20.18"
   ```


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