can-sun commented on issue #5768:
URL: https://github.com/apache/iceberg/issues/5768#issuecomment-1248455341

   Thanks! I saw the latest version released for spark3-runtime is **0.13.2**. 
Any plan for the release  of >= 0.14.0? 
   
   ```
   # add Iceberg dependency
   ICEBERG_VERSION=0.14.0
   DEPENDENCIES="org.apache.iceberg:iceberg-spark3-runtime:$ICEBERG_VERSION"
   
   # add AWS dependnecy
   AWS_SDK_VERSION=2.17.131
   AWS_MAVEN_GROUP=software.amazon.awssdk
   AWS_PACKAGES=(
       "bundle"
       "url-connection-client"
   )
   for pkg in "${AWS_PACKAGES[@]}"; do
       DEPENDENCIES+=",$AWS_MAVEN_GROUP:$pkg:$AWS_SDK_VERSION"
   done
   
   # start Spark SQL client shell
   spark-sql --packages $DEPENDENCIES \
       --conf 
spark.sql.catalog.my_catalog=org.apache.iceberg.spark.SparkCatalog \
       --conf 
spark.sql.catalog.my_catalog.warehouse=s3://my-bucket/my/key/prefix \
       --conf 
spark.sql.catalog.my_catalog.catalog-impl=org.apache.iceberg.aws.glue.GlueCatalog
 \
       --conf 
spark.sql.catalog.my_catalog.io-impl=org.apache.iceberg.aws.s3.S3FileIO
   ```
   
   The above code snippet is from documentation 
https://iceberg.apache.org/docs/latest/aws/
   
   spark3-runtime 0.14.0 is used however I believed it was somehow to released 
yet.
   
   


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