Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Delta Lake support for Spark 3.4.1 and Delta Lake tests on Spark 3.4.x #9262

Merged
merged 1 commit into from
Sep 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion aggregator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@
<dependencies>
<dependency>
<groupId>com.nvidia</groupId>
<artifactId>rapids-4-spark-delta-stub_${scala.binary.version}</artifactId>
<artifactId>rapids-4-spark-delta-24x_${scala.binary.version}</artifactId>
<version>${project.version}</version>
<classifier>${spark.version.classifier}</classifier>
</dependency>
Expand Down
5 changes: 5 additions & 0 deletions jenkins/spark-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ run_delta_lake_tests() {
echo "run_delta_lake_tests SPARK_VER = $SPARK_VER"
SPARK_32X_PATTERN="(3\.2\.[0-9])"
SPARK_33X_PATTERN="(3\.3\.[0-9])"
SPARK_34X_PATTERN="(3\.4\.[0-9])"

if [[ $SPARK_VER =~ $SPARK_32X_PATTERN ]]; then
# There are multiple versions of deltalake that support SPARK 3.2.X
Expand All @@ -197,6 +198,10 @@ run_delta_lake_tests() {
DELTA_LAKE_VERSIONS="2.1.1 2.2.0"
fi

if [[ $SPARK_VER =~ $SPARK_34X_PATTERN ]]; then
DELTA_LAKE_VERSIONS="2.4.0"
fi

if [ -z "$DELTA_LAKE_VERSIONS" ]; then
echo "Skipping Delta Lake tests. $SPARK_VER"
else
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@
<slf4j.version>2.0.6</slf4j.version>
</properties>
<modules>
<module>delta-lake/delta-stub</module>
<module>delta-lake/delta-24x</module>
</modules>
</profile>
<profile>
Expand Down