[Python] Introduce incremental-between read by timestamp#6391
Merged
leaves12138 merged 6 commits intoapache:masterfrom Oct 17, 2025
Merged
[Python] Introduce incremental-between read by timestamp#6391leaves12138 merged 6 commits intoapache:masterfrom
leaves12138 merged 6 commits intoapache:masterfrom
Conversation
JingsongLi
reviewed
Oct 13, 2025
Contributor
JingsongLi
left a comment
There was a problem hiding this comment.
Can you update doc to show the new API?
Contributor
|
Also you can add with_shard to doc too. |
Contributor
Author
|
Contributor
Author
ok. |
Contributor
Author
ok. |
Contributor
|
get_ealiest_snapshot is the same as get_latest_snapshot: |
leaves12138
reviewed
Oct 15, 2025
| for snapshot_id in range(self.startingSnapshotId + 1, self.endingSnapshotId + 1): | ||
| snapshot = self.snapshot_manager.get_snapshot_by_id(snapshot_id) | ||
| if snapshot: | ||
| snapshots_in_range.append(snapshot) |
Contributor
There was a problem hiding this comment.
If delta scan, we should skip APPEND && OVERWRITE snapshots
f8dab74 to
b6ec35a
Compare
JingsongLi
pushed a commit
that referenced
this pull request
Oct 22, 2025
Stephen0421
pushed a commit
to Stephen0421/flink-table-store
that referenced
this pull request
Apr 10, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Purpose
Read incremental changes between start timestamp (exclusive) and end timestamp, for example, 't1,t2' means changes between timestamp t1 and timestamp t2.
Tests
API and Format
Documentation