nsivabalan commented on issue #16965: URL: https://github.com/apache/hudi/issues/16965#issuecomment-4800710284
This appears to already be implemented on master. The trino-hudi plugin uses `HoodieFileGroupReader` for MOR (non-base-file-only) splits: - `HudiPageSourceProvider` constructs a `HoodieFileGroupReader<IndexedRecord>` wired to a `HudiTrinoReaderContext` (`hudi-trino-plugin/src/main/java/io/trino/plugin/hudi/HudiPageSourceProvider.java`, around lines 234-248). - `HudiPageSource` iterates via `fileGroupReader.hasNext()` / `next()` (`hudi-trino-plugin/src/main/java/io/trino/plugin/hudi/HudiPageSource.java`, lines 37, 95-97). This support landed when the plugin was migrated into the Hudi repo via [HUDI-9556 / #13493](https://github.com/apache/hudi/commit/4e987fe936d1ad9089906d46bb57dc193d89fc75). If there's a remaining gap (e.g., a specific query path still bypassing FG reader), please share details — otherwise this issue can likely be closed. -- 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]
