[python][ray] Support dynamic_table_options in read_paimon#8195
Merged
JingsongLi merged 7 commits intoJun 11, 2026
Conversation
read_paimon now accepts a dynamic_table_options parameter that is merged into the table options via Table.copy() at read time, enabling use cases like blob-as-descriptor=true without modifying the stored table options.
…le_options Reject all conflicting combinations: snapshot_id/tag_name params vs any time-travel scan key in dynamic_table_options, and multiple time-travel keys within dynamic_table_options itself.
Contributor
Author
|
@JingsongLi snapshot_id and tag_name are essentially shortcuts for |
…consolidate tests
…ble_options and fix flake8
JingsongLi
reviewed
Jun 11, 2026
| limit: Optional[int] = None, | ||
| snapshot_id: Optional[int] = None, | ||
| tag_name: Optional[str] = None, | ||
| dynamic_table_options: Optional[Dict[str, str]] = None, |
Contributor
Author
There was a problem hiding this comment.
dynamic_options?
Updated
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_paimon() cannot dynamically override table options at read time. For example, there is no way to pass
blob-as-descriptor=truewithout setting it at table creation. This PR pass dynamic_table_options into read_paimon.Tests