nsivabalan commented on issue #16919: URL: https://github.com/apache/hudi/issues/16919#issuecomment-4800687456
This appears to be fixed on master. The `LogFileIterator` code path in `hudi-spark-datasource/hudi-spark-common/src/main/scala/org/apache/hudi/Iterators.scala` (which contained the redundant `mutable.HashMap(scanner.getRecords.asScala.toSeq: _*)` copy at line 416) was removed in commit 0c0c402a9a03 (PR #17457, 'refactor: Use HoodieFileGroupReader paths for all Spark Datasource reads'). All Spark Datasource MOR reads now go through `HoodieFileGroupReader` (`hudi-common/src/main/java/org/apache/hudi/common/table/read/HoodieFileGroupReader.java`), which does not perform this in-memory copy of the SpillableMap. Please verify against current master and close if no longer reproducible. -- 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]
