openinx opened a new pull request #4158: URL: https://github.com/apache/iceberg/pull/4158
This PR is trying to address the comment from [here](https://github.com/apache/iceberg-docs/pull/27#discussion_r800297155). The current spark2.4, spark3.0 have the following unaligned module name for me (spark3.1 & spark3.2 are more clear). ``` # Spark 2.4 iceberg-spark-runtime-0.13.1.jar # Spark 3.0 iceberg-spark3-runtime-0.13.1.jar # Spark 3.1 iceberg-spark-runtime-3.1_2.12-0.13.1.jar # Spark 3.2 iceberg-spark-runtime-3.2_2.12-0.13.1.jar ``` After applied this PR, the current spark runtime jar are named as: ``` ./gradlew clean build -x test -DsparkVersions=2.4,3.0,3.1,3.2 -DscalaVersion=2.12 -DknownScalaVersions=2.12 -x javadoc -Pquick -DflinkVersions= -DhiveVersions= ➜ iceberg git:(align-spark-module-name) find spark | grep runtime | grep SNAPSHOT.jar spark/v3.2/spark-runtime/build/libs/iceberg-spark-runtime-3.2_2.12-0.13.0-SNAPSHOT.jar spark/v2.4/spark-runtime/build/libs/iceberg-spark-runtime-2.4_2.12-0.13.0-SNAPSHOT.jar spark/v3.0/spark-runtime/build/libs/iceberg-spark-runtime-3.0_2.12-0.13.0-SNAPSHOT.jar spark/v3.1/spark-runtime/build/libs/iceberg-spark-runtime-3.1_2.12-0.13.0-SNAPSHOT.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]
