We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
get_last_checkpoint
Delta-rs version: 0.10.2
Not a bug but a performance issue. When running update_incremental on an already-loaded table, get_last_checkpoint lists files starting from the last checkpoint, even if the loaded table is at a later version. This causes listing to take more time than necessary, as listing could start from self.version if it is larger than the last checkpoint version. https://github.com/delta-io/delta-rs/blob/fdebcd67b59ca36e22b455065a7a32888122de0e/rust/src/delta.rs#L419C21-L419C21
update_incremental
self.version
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Environment
Delta-rs version: 0.10.2
Bug
Not a bug but a performance issue. When running
update_incremental
on an already-loaded table,get_last_checkpoint
lists files starting from the last checkpoint, even if the loaded table is at a later version. This causes listing to take more time than necessary, as listing could start fromself.version
if it is larger than the last checkpoint version.https://github.com/delta-io/delta-rs/blob/fdebcd67b59ca36e22b455065a7a32888122de0e/rust/src/delta.rs#L419C21-L419C21
The text was updated successfully, but these errors were encountered: