Skip to content

Commit 2e6a6dc

Browse files
authored
Merge branch-25.10 into main (#13633)
Merge branch-25.10 into main Note: merge this PR with **Create a merge commit to merge**
2 parents 3c26560 + 43c66a8 commit 2e6a6dc

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Change log
2-
Generated on 2025-10-13
2+
Generated on 2025-10-21
33

44
## Release 25.10
55

@@ -38,6 +38,7 @@ Generated on 2025-10-13
3838
### Bugs Fixed
3939
|||
4040
|:---|:---|
41+
|[#13628](https://github.com/NVIDIA/spark-rapids/issues/13628)|[BUG] spark.rapids.memory.host.offHeapLimit doesn't play well with spark.memory.offHeap.size in Databricks|
4142
|[#13578](https://github.com/NVIDIA/spark-rapids/issues/13578)|[BUG] Query failure in InMemoryTableScan with AQE enabled for aggregation|
4243
|[#13554](https://github.com/NVIDIA/spark-rapids/issues/13554)|[BUG] iceberg-rest-catalog CI failed: Missing "org.apache.iceberg.rest.RESTCatalog"|
4344
|[#13312](https://github.com/NVIDIA/spark-rapids/issues/13312)|[BUG] zip_with test failures|
@@ -85,6 +86,8 @@ Generated on 2025-10-13
8586
### PRs
8687
|||
8788
|:---|:---|
89+
|[#13627](https://github.com/NVIDIA/spark-rapids/pull/13627)|disable offHeapLimit by default|
90+
|[#13588](https://github.com/NVIDIA/spark-rapids/pull/13588)|Update changelog for the v25.10 release [skip ci]|
8891
|[#13593](https://github.com/NVIDIA/spark-rapids/pull/13593)|[DOC] update the download doc for 2510 release [skip ci]|
8992
|[#13587](https://github.com/NVIDIA/spark-rapids/pull/13587)|Update dependency version JNI, private, hybrid to 25.10.0|
9093
|[#13581](https://github.com/NVIDIA/spark-rapids/pull/13581)|Avoid host-vector access under TableCache by replacing CPU ColumnarToRow with GPU variant|

sql-plugin/src/main/scala/com/nvidia/spark/rapids/RapidsConf.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ object RapidsConf extends Logging {
354354
// This might change as a part of https://github.com/NVIDIA/spark-rapids/issues/8878
355355
.internal()
356356
.booleanConf
357-
.createWithDefault(true)
357+
.createWithDefault(false)
358358

359359
val OFF_HEAP_LIMIT_SIZE = conf("spark.rapids.memory.host.offHeapLimit.size")
360360
.doc("The maximum amount of off heap memory that the plugin will use. " +

0 commit comments

Comments
 (0)