jonathanc-n opened a new issue, #219: URL: https://github.com/apache/hudi-rs/issues/219
### Description of the improvement To support incremental queries: - Create function called `get_file_slices_incremental` in `FileSystemView`. - The function should be given a `start_timestamp` and a `Option<end_timestamp>` as the range; if end timestamp is `None`, then it will default to the current timestamp (latest commit instant). (partition pruner and excluded file groups will be included in parameters) - Based on the `start_timestamp` and `end_timestamp` it will read when the most recent changes happened to each files, and only retrieve slice if it falls in the range. ### Expected behavior Be able to return fileslices (only supporting basefiles currently; CoW) that have changes that fall in a range of one commit time to an optional timestamp (which is the current timestamp). ### Additional context _No response_ -- 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]
