[python] Add table tag CLI subcommands#8320
Open
TheR1sing3un wants to merge 2 commits into
Open
Conversation
Add `paimon table tag {create,list,get,delete}` nested under the table
command (mirroring `table alter`). All operations go through the Catalog
layer so they get typed exceptions and work for both filesystem and REST
catalogs. `tag get` surfaces tag_create_time / tag_time_retained when
present. Document the new commands in the pypaimon CLI docs.
Cover create / list / get / delete end-to-end through the CLI, including --snapshot-id, --ignore-if-exists, --prefix, table/json output, and the not-found / duplicate / invalid-identifier error paths.
Contributor
|
Maybe just |
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
pypaimon already implements the full tag Catalog API (filesystem + REST), but the CLI had no way to manage tags — users had to drop down to the Python API. This adds tag management to the CLI.
Changes
Add
paimon table tag {create,list,get,delete}, nested under thetablecommand (mirroringtable alter):TagAlreadyExistException/TagNotExistException/TableNotExistException) and work for both filesystem and REST catalogs.tag getsurfacestag_create_time/tag_time_retainedwhen present.listwarns on stderr (rather than silently truncating) if the catalog returns a partial page.Flag names mirror the Java Flink/Spark tag procedures (
snapshot_id, etc.).Tests
End-to-end CLI coverage for create / list / get / delete, including
--snapshot-id,--ignore-if-exists,--prefix, table/json output, and the not-found / duplicate / invalid-identifier error paths.Does this PR introduce a user-facing change?
No.
Generative AI disclosure: drafted with AI assistance and reviewed by the author.