Skip to content

Commit 484727d

Browse files
authored
Merge pull request #11681 from NVIDIA/merge-branch-24.10-to-main
Merge branch-24.10 into main [skip ci]
2 parents 0959c6f + c9c362a commit 484727d

File tree

66 files changed

+182
-135
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+182
-135
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Change log
2-
Generated on 2024-10-18
2+
Generated on 2024-10-31
33

44
## Release 24.10
55

@@ -26,6 +26,7 @@ Generated on 2024-10-18
2626
### Bugs Fixed
2727
|||
2828
|:---|:---|
29+
|[#11558](https://github.com/NVIDIA/spark-rapids/issues/11558)|[BUG] test_sortmerge_join_ridealong fails on DB 13.3|
2930
|[#11573](https://github.com/NVIDIA/spark-rapids/issues/11573)|[BUG] very long tail task is observed when many tasks are contending for PrioritySemaphore|
3031
|[#11367](https://github.com/NVIDIA/spark-rapids/issues/11367)|[BUG] Error "table_view.cpp:36: Column size mismatch" when using approx_percentile on a string column|
3132
|[#11543](https://github.com/NVIDIA/spark-rapids/issues/11543)|[BUG] test_yyyyMMdd_format_for_legacy_mode[DATAGEN_SEED=1727619674, TZ=UTC] failed GPU and CPU are not both null|
@@ -68,6 +69,8 @@ Generated on 2024-10-18
6869
### PRs
6970
|||
7071
|:---|:---|
72+
|[#11676](https://github.com/NVIDIA/spark-rapids/pull/11676)| Fix race condition with Parquet filter pushdown modifying shared hadoop Configuration|
73+
|[#11626](https://github.com/NVIDIA/spark-rapids/pull/11626)|Update latest changelog [skip ci]|
7174
|[#11624](https://github.com/NVIDIA/spark-rapids/pull/11624)|Update the download link [skip ci]|
7275
|[#11577](https://github.com/NVIDIA/spark-rapids/pull/11577)|Update latest changelog [skip ci]|
7376
|[#11576](https://github.com/NVIDIA/spark-rapids/pull/11576)|Update rapids JNI and private dependency to 24.10.0|

CONTRIBUTING.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -127,15 +127,15 @@ mvn -pl dist -PnoSnapshots package -DskipTests
127127
Verify that shim-specific classes are hidden from a conventional classloader.
128128

129129
```bash
130-
$ javap -cp dist/target/rapids-4-spark_2.12-24.10.0-cuda11.jar com.nvidia.spark.rapids.shims.SparkShimImpl
130+
$ javap -cp dist/target/rapids-4-spark_2.12-24.10.1-cuda11.jar com.nvidia.spark.rapids.shims.SparkShimImpl
131131
Error: class not found: com.nvidia.spark.rapids.shims.SparkShimImpl
132132
```
133133

134134
However, its bytecode can be loaded if prefixed with `spark3XY` not contained in the package name
135135

136136
```bash
137-
$ javap -cp dist/target/rapids-4-spark_2.12-24.10.0-cuda11.jar spark320.com.nvidia.spark.rapids.shims.SparkShimImpl | head -2
138-
Warning: File dist/target/rapids-4-spark_2.12-24.10.0-cuda11.jar(/spark320/com/nvidia/spark/rapids/shims/SparkShimImpl.class) does not contain class spark320.com.nvidia.spark.rapids.shims.SparkShimImpl
137+
$ javap -cp dist/target/rapids-4-spark_2.12-24.10.1-cuda11.jar spark320.com.nvidia.spark.rapids.shims.SparkShimImpl | head -2
138+
Warning: File dist/target/rapids-4-spark_2.12-24.10.1-cuda11.jar(/spark320/com/nvidia/spark/rapids/shims/SparkShimImpl.class) does not contain class spark320.com.nvidia.spark.rapids.shims.SparkShimImpl
139139
Compiled from "SparkShims.scala"
140140
public final class com.nvidia.spark.rapids.shims.SparkShimImpl {
141141
```
@@ -178,7 +178,7 @@ mvn package -pl dist -am -Dbuildver=340 -DallowConventionalDistJar=true
178178
Verify `com.nvidia.spark.rapids.shims.SparkShimImpl` is conventionally loadable:
179179
180180
```bash
181-
$ javap -cp dist/target/rapids-4-spark_2.12-24.10.0-cuda11.jar com.nvidia.spark.rapids.shims.SparkShimImpl | head -2
181+
$ javap -cp dist/target/rapids-4-spark_2.12-24.10.1-cuda11.jar com.nvidia.spark.rapids.shims.SparkShimImpl | head -2
182182
Compiled from "SparkShims.scala"
183183
public final class com.nvidia.spark.rapids.shims.SparkShimImpl {
184184
```

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ as a `provided` dependency.
7373
<dependency>
7474
<groupId>com.nvidia</groupId>
7575
<artifactId>rapids-4-spark_2.12</artifactId>
76-
<version>24.10.0</version>
76+
<version>24.10.1</version>
7777
<scope>provided</scope>
7878
</dependency>
7979
```

aggregator/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@
2222
<parent>
2323
<groupId>com.nvidia</groupId>
2424
<artifactId>rapids-4-spark-jdk-profiles_2.12</artifactId>
25-
<version>24.10.0</version>
25+
<version>24.10.1</version>
2626
<relativePath>../jdk-profiles/pom.xml</relativePath>
2727
</parent>
2828
<artifactId>rapids-4-spark-aggregator_2.12</artifactId>
2929
<name>RAPIDS Accelerator for Apache Spark Aggregator</name>
3030
<description>Creates an aggregated shaded package of the RAPIDS plugin for Apache Spark</description>
31-
<version>24.10.0</version>
31+
<version>24.10.1</version>
3232

3333
<properties>
3434
<rapids.module>aggregator</rapids.module>

api_validation/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@
2222
<parent>
2323
<groupId>com.nvidia</groupId>
2424
<artifactId>rapids-4-spark-shim-deps-parent_2.12</artifactId>
25-
<version>24.10.0</version>
25+
<version>24.10.1</version>
2626
<relativePath>../shim-deps/pom.xml</relativePath>
2727
</parent>
2828
<artifactId>rapids-4-spark-api-validation_2.12</artifactId>
29-
<version>24.10.0</version>
29+
<version>24.10.1</version>
3030

3131
<properties>
3232
<rapids.module>api_validation</rapids.module>

datagen/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ Where `$SPARK_VERSION` is a compressed version number, like 330 for Spark 3.3.0.
2424

2525
After this the jar should be at
2626
`target/datagen_2.12-$PLUGIN_VERSION-spark$SPARK_VERSION.jar`
27-
for example a Spark 3.3.0 jar for the 24.10.0 release would be
28-
`target/datagen_2.12-24.10.0-spark330.jar`
27+
for example a Spark 3.3.0 jar for the 24.10.1 release would be
28+
`target/datagen_2.12-24.10.1-spark330.jar`
2929

3030
To get a spark shell with this you can run
3131
```shell
32-
spark-shell --jars target/datagen_2.12-24.10.0-spark330.jar
32+
spark-shell --jars target/datagen_2.12-24.10.1-spark330.jar
3333
```
3434

3535
After that you should be good to go.

datagen/ScaleTest.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ $SPARK_HOME/bin/spark-submit \
4444
--conf spark.sql.parquet.datetimeRebaseModeInWrite=CORRECTED \
4545
--class com.nvidia.rapids.tests.scaletest.ScaleTestDataGen \ # the main class
4646
--jars $SPARK_HOME/examples/jars/scopt_2.12-3.7.1.jar \ # one dependency jar just shipped with Spark under $SPARK_HOME
47-
./target/datagen_2.12-24.10.0-spark332.jar \
47+
./target/datagen_2.12-24.10.1-spark332.jar \
4848
1 \
4949
10 \
5050
parquet \

datagen/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
<parent>
2222
<groupId>com.nvidia</groupId>
2323
<artifactId>rapids-4-spark-shim-deps-parent_2.12</artifactId>
24-
<version>24.10.0</version>
24+
<version>24.10.1</version>
2525
<relativePath>../shim-deps/pom.xml</relativePath>
2626
</parent>
2727
<artifactId>datagen_2.12</artifactId>
2828
<name>Data Generator</name>
2929
<description>Tools for generating large amounts of data</description>
30-
<version>24.10.0</version>
30+
<version>24.10.1</version>
3131
<properties>
3232
<rapids.module>datagen</rapids.module>
3333
<target.classifier/>

delta-lake/delta-20x/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222
<parent>
2323
<groupId>com.nvidia</groupId>
2424
<artifactId>rapids-4-spark-jdk-profiles_2.12</artifactId>
25-
<version>24.10.0</version>
25+
<version>24.10.1</version>
2626
<relativePath>../../jdk-profiles/pom.xml</relativePath>
2727
</parent>
2828

2929
<artifactId>rapids-4-spark-delta-20x_2.12</artifactId>
3030
<name>RAPIDS Accelerator for Apache Spark Delta Lake 2.0.x Support</name>
3131
<description>Delta Lake 2.0.x support for the RAPIDS Accelerator for Apache Spark</description>
32-
<version>24.10.0</version>
32+
<version>24.10.1</version>
3333

3434
<properties>
3535
<rapids.module>../delta-lake/delta-20x</rapids.module>

delta-lake/delta-21x/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222
<parent>
2323
<groupId>com.nvidia</groupId>
2424
<artifactId>rapids-4-spark-jdk-profiles_2.12</artifactId>
25-
<version>24.10.0</version>
25+
<version>24.10.1</version>
2626
<relativePath>../../jdk-profiles/pom.xml</relativePath>
2727
</parent>
2828

2929
<artifactId>rapids-4-spark-delta-21x_2.12</artifactId>
3030
<name>RAPIDS Accelerator for Apache Spark Delta Lake 2.1.x Support</name>
3131
<description>Delta Lake 2.1.x support for the RAPIDS Accelerator for Apache Spark</description>
32-
<version>24.10.0</version>
32+
<version>24.10.1</version>
3333

3434
<properties>
3535
<rapids.module>../delta-lake/delta-21x</rapids.module>

delta-lake/delta-22x/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222
<parent>
2323
<groupId>com.nvidia</groupId>
2424
<artifactId>rapids-4-spark-jdk-profiles_2.12</artifactId>
25-
<version>24.10.0</version>
25+
<version>24.10.1</version>
2626
<relativePath>../../jdk-profiles/pom.xml</relativePath>
2727
</parent>
2828

2929
<artifactId>rapids-4-spark-delta-22x_2.12</artifactId>
3030
<name>RAPIDS Accelerator for Apache Spark Delta Lake 2.2.x Support</name>
3131
<description>Delta Lake 2.2.x support for the RAPIDS Accelerator for Apache Spark</description>
32-
<version>24.10.0</version>
32+
<version>24.10.1</version>
3333

3434
<properties>
3535
<rapids.module>../delta-lake/delta-22x</rapids.module>

delta-lake/delta-23x/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222
<parent>
2323
<groupId>com.nvidia</groupId>
2424
<artifactId>rapids-4-spark-parent_2.12</artifactId>
25-
<version>24.10.0</version>
25+
<version>24.10.1</version>
2626
<relativePath>../../pom.xml</relativePath>
2727
</parent>
2828

2929
<artifactId>rapids-4-spark-delta-23x_2.12</artifactId>
3030
<name>RAPIDS Accelerator for Apache Spark Delta Lake 2.3.x Support</name>
3131
<description>Delta Lake 2.3.x support for the RAPIDS Accelerator for Apache Spark</description>
32-
<version>24.10.0</version>
32+
<version>24.10.1</version>
3333

3434
<properties>
3535
<rapids.module>../delta-lake/delta-23x</rapids.module>

delta-lake/delta-24x/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222
<parent>
2323
<groupId>com.nvidia</groupId>
2424
<artifactId>rapids-4-spark-jdk-profiles_2.12</artifactId>
25-
<version>24.10.0</version>
25+
<version>24.10.1</version>
2626
<relativePath>../../jdk-profiles/pom.xml</relativePath>
2727
</parent>
2828

2929
<artifactId>rapids-4-spark-delta-24x_2.12</artifactId>
3030
<name>RAPIDS Accelerator for Apache Spark Delta Lake 2.4.x Support</name>
3131
<description>Delta Lake 2.4.x support for the RAPIDS Accelerator for Apache Spark</description>
32-
<version>24.10.0</version>
32+
<version>24.10.1</version>
3333

3434
<properties>
3535
<rapids.module>../delta-lake/delta-24x</rapids.module>

delta-lake/delta-spark330db/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222
<parent>
2323
<groupId>com.nvidia</groupId>
2424
<artifactId>rapids-4-spark-shim-deps-parent_2.12</artifactId>
25-
<version>24.10.0</version>
25+
<version>24.10.1</version>
2626
<relativePath>../../shim-deps/pom.xml</relativePath>
2727
</parent>
2828

2929
<artifactId>rapids-4-spark-delta-spark330db_2.12</artifactId>
3030
<name>RAPIDS Accelerator for Apache Spark Databricks 11.3 Delta Lake Support</name>
3131
<description>Databricks 11.3 Delta Lake support for the RAPIDS Accelerator for Apache Spark</description>
32-
<version>24.10.0</version>
32+
<version>24.10.1</version>
3333

3434
<properties>
3535
<rapids.module>../delta-lake/delta-spark330db</rapids.module>

delta-lake/delta-spark332db/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222
<parent>
2323
<groupId>com.nvidia</groupId>
2424
<artifactId>rapids-4-spark-shim-deps-parent_2.12</artifactId>
25-
<version>24.10.0</version>
25+
<version>24.10.1</version>
2626
<relativePath>../../shim-deps/pom.xml</relativePath>
2727
</parent>
2828

2929
<artifactId>rapids-4-spark-delta-spark332db_2.12</artifactId>
3030
<name>RAPIDS Accelerator for Apache Spark Databricks 12.2 Delta Lake Support</name>
3131
<description>Databricks 12.2 Delta Lake support for the RAPIDS Accelerator for Apache Spark</description>
32-
<version>24.10.0</version>
32+
<version>24.10.1</version>
3333

3434
<properties>
3535
<rapids.module>../delta-lake/delta-spark332db</rapids.module>

delta-lake/delta-spark341db/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222
<parent>
2323
<groupId>com.nvidia</groupId>
2424
<artifactId>rapids-4-spark-shim-deps-parent_2.12</artifactId>
25-
<version>24.10.0</version>
25+
<version>24.10.1</version>
2626
<relativePath>../../shim-deps/pom.xml</relativePath>
2727
</parent>
2828

2929
<artifactId>rapids-4-spark-delta-spark341db_2.12</artifactId>
3030
<name>RAPIDS Accelerator for Apache Spark Databricks 13.3 Delta Lake Support</name>
3131
<description>Databricks 13.3 Delta Lake support for the RAPIDS Accelerator for Apache Spark</description>
32-
<version>24.10.0</version>
32+
<version>24.10.1</version>
3333

3434
<properties>
3535
<rapids.compressed.artifact>false</rapids.compressed.artifact>

delta-lake/delta-stub/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222
<parent>
2323
<groupId>com.nvidia</groupId>
2424
<artifactId>rapids-4-spark-jdk-profiles_2.12</artifactId>
25-
<version>24.10.0</version>
25+
<version>24.10.1</version>
2626
<relativePath>../../jdk-profiles/pom.xml</relativePath>
2727
</parent>
2828

2929
<artifactId>rapids-4-spark-delta-stub_2.12</artifactId>
3030
<name>RAPIDS Accelerator for Apache Spark Delta Lake Stub</name>
3131
<description>Delta Lake stub for the RAPIDS Accelerator for Apache Spark</description>
32-
<version>24.10.0</version>
32+
<version>24.10.1</version>
3333

3434
<properties>
3535
<rapids.module>../delta-lake/delta-stub</rapids.module>

dist/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@
2222
<parent>
2323
<groupId>com.nvidia</groupId>
2424
<artifactId>rapids-4-spark-jdk-profiles_2.12</artifactId>
25-
<version>24.10.0</version>
25+
<version>24.10.1</version>
2626
<relativePath>../jdk-profiles/pom.xml</relativePath>
2727
</parent>
2828
<artifactId>rapids-4-spark_2.12</artifactId>
2929
<name>RAPIDS Accelerator for Apache Spark Distribution</name>
3030
<description>Creates the distribution package of the RAPIDS plugin for Apache Spark</description>
31-
<version>24.10.0</version>
31+
<version>24.10.1</version>
3232
<dependencies>
3333
<dependency>
3434
<groupId>com.nvidia</groupId>

docs/configs.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The following is the list of options that `rapids-plugin-4-spark` supports.
1010
On startup use: `--conf [conf key]=[conf value]`. For example:
1111

1212
```
13-
${SPARK_HOME}/bin/spark-shell --jars rapids-4-spark_2.12-24.10.0-cuda11.jar \
13+
${SPARK_HOME}/bin/spark-shell --jars rapids-4-spark_2.12-24.10.1-cuda11.jar \
1414
--conf spark.plugins=com.nvidia.spark.SQLPlugin \
1515
--conf spark.rapids.sql.concurrentGpuTasks=2
1616
```

docs/dev/shims.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -68,17 +68,17 @@ Using JarURLConnection URLs we create a Parallel World of the current version wi
6868
Spark 3.0.2's URLs:
6969

7070
```text
71-
jar:file:/home/spark/rapids-4-spark_2.12-24.10.0.jar!/
72-
jar:file:/home/spark/rapids-4-spark_2.12-24.10.0.jar!/spark-shared/
73-
jar:file:/home/spark/rapids-4-spark_2.12-24.10.0.jar!/spark302/
71+
jar:file:/home/spark/rapids-4-spark_2.12-24.10.1.jar!/
72+
jar:file:/home/spark/rapids-4-spark_2.12-24.10.1.jar!/spark-shared/
73+
jar:file:/home/spark/rapids-4-spark_2.12-24.10.1.jar!/spark302/
7474
```
7575

7676
Spark 3.2.0's URLs :
7777

7878
```text
79-
jar:file:/home/spark/rapids-4-spark_2.12-24.10.0.jar!/
80-
jar:file:/home/spark/rapids-4-spark_2.12-24.10.0.jar!/spark-shared/
81-
jar:file:/home/spark/rapids-4-spark_2.12-24.10.0.jar!/spark320/
79+
jar:file:/home/spark/rapids-4-spark_2.12-24.10.1.jar!/
80+
jar:file:/home/spark/rapids-4-spark_2.12-24.10.1.jar!/spark-shared/
81+
jar:file:/home/spark/rapids-4-spark_2.12-24.10.1.jar!/spark320/
8282
```
8383

8484
### Late Inheritance in Public Classes

integration_tests/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ individually, so you don't risk running unit tests along with the integration te
263263
http://www.scalatest.org/user_guide/using_the_scalatest_shell
264264

265265
```shell
266-
spark-shell --jars rapids-4-spark-tests_2.12-24.10.0-tests.jar,rapids-4-spark-integration-tests_2.12-24.10.0-tests.jar,scalatest_2.12-3.0.5.jar,scalactic_2.12-3.0.5.jar
266+
spark-shell --jars rapids-4-spark-tests_2.12-24.10.1-tests.jar,rapids-4-spark-integration-tests_2.12-24.10.1-tests.jar,scalatest_2.12-3.0.5.jar,scalactic_2.12-3.0.5.jar
267267
```
268268

269269
First you import the `scalatest_shell` and tell the tests where they can find the test files you
@@ -286,7 +286,7 @@ If you just want to verify the SQL replacement is working you will need to add t
286286
assumes CUDA 11.0 is being used and the Spark distribution is built with Scala 2.12.
287287

288288
```
289-
$SPARK_HOME/bin/spark-submit --jars "rapids-4-spark_2.12-24.10.0-cuda11.jar" ./runtests.py
289+
$SPARK_HOME/bin/spark-submit --jars "rapids-4-spark_2.12-24.10.1-cuda11.jar" ./runtests.py
290290
```
291291

292292
You don't have to enable the plugin for this to work, the test framework will do that for you.
@@ -443,7 +443,7 @@ To run cudf_udf tests, need following configuration changes:
443443
As an example, here is the `spark-submit` command with the cudf_udf parameter on CUDA 11.0:
444444

445445
```
446-
$SPARK_HOME/bin/spark-submit --jars "rapids-4-spark_2.12-24.10.0-cuda11.jar,rapids-4-spark-tests_2.12-24.10.0.jar" --conf spark.rapids.memory.gpu.allocFraction=0.3 --conf spark.rapids.python.memory.gpu.allocFraction=0.3 --conf spark.rapids.python.concurrentPythonWorkers=2 --py-files "rapids-4-spark_2.12-24.10.0-cuda11.jar" --conf spark.executorEnv.PYTHONPATH="rapids-4-spark_2.12-24.10.0-cuda11.jar" ./runtests.py --cudf_udf
446+
$SPARK_HOME/bin/spark-submit --jars "rapids-4-spark_2.12-24.10.1-cuda11.jar,rapids-4-spark-tests_2.12-24.10.1.jar" --conf spark.rapids.memory.gpu.allocFraction=0.3 --conf spark.rapids.python.memory.gpu.allocFraction=0.3 --conf spark.rapids.python.concurrentPythonWorkers=2 --py-files "rapids-4-spark_2.12-24.10.1-cuda11.jar" --conf spark.executorEnv.PYTHONPATH="rapids-4-spark_2.12-24.10.1-cuda11.jar" ./runtests.py --cudf_udf
447447
```
448448

449449
### Enabling fuzz tests

integration_tests/ScaleTest.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ $SPARK_HOME/bin/spark-submit \
9797
--conf spark.sql.parquet.datetimeRebaseModeInWrite=CORRECTED \
9898
--jars $SPARK_HOME/examples/jars/scopt_2.12-3.7.1.jar \
9999
--class com.nvidia.spark.rapids.tests.scaletest.ScaleTest \
100-
./target/rapids-4-spark-integration-tests_2.12-24.10.0-spark332.jar \
100+
./target/rapids-4-spark-integration-tests_2.12-24.10.1-spark332.jar \
101101
10 \
102102
100 \
103103
parquet \

integration_tests/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@
2222
<parent>
2323
<groupId>com.nvidia</groupId>
2424
<artifactId>rapids-4-spark-shim-deps-parent_2.12</artifactId>
25-
<version>24.10.0</version>
25+
<version>24.10.1</version>
2626
<relativePath>../shim-deps/pom.xml</relativePath>
2727
</parent>
2828
<artifactId>rapids-4-spark-integration-tests_2.12</artifactId>
29-
<version>24.10.0</version>
29+
<version>24.10.1</version>
3030
<properties>
3131
<rapids.module>integration_tests</rapids.module>
3232
<target.classifier/>

0 commit comments

Comments
 (0)