shyjsarah commented on PR #563: URL: https://github.com/apache/paimon-rust/pull/563#issuecomment-5031089753
Thanks, that ordering works for me. One API requirement from #571: global-index archives may be stored on remote FileIO and can be large, so the current implementation intentionally avoids reading the entire archive into memory. It adapts range reads from `FileRead` to `paimon_ftindex_core::io::SeekRead` with bounded concurrency. Could #563 make `FullTextArchiveReader` generic over `SeekRead`, or provide a `from_seek_read` constructor while keeping `from_input_file` as a convenience API? That would let both the global-index and PK paths reuse the same reader foundation without forcing whole-file reads. I'll keep #571 as a draft and rebase it onto #563 once we agree on this API and the foundation lands. -- 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]
