[TASK-276] Add unsubscribe_partition to python bindings#277
Merged
luoyuxia merged 1 commit intoFeb 8, 2026
Conversation
Member
Author
|
@luoyuxia @leekeiabstraction PTAL 🙏 |
There was a problem hiding this comment.
Pull request overview
Adds the missing unsubscribe_partition API to the Python bindings so Python users can mirror the unsubscribe functionality already available in the C++ and Rust clients.
Changes:
- Add
LogScanner.unsubscribe_partition(partition_id, bucket_id)to the PyO3 bindings. - Update Python type stubs (
.pyi) to include the new method. - Extend the Python example to demonstrate unsubscribing from a partition and reading remaining partitions.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| bindings/python/src/table.rs | Exposes unsubscribe_partition on the Python LogScanner, dispatching to either record or batch scanner implementation. |
| bindings/python/fluss/init.pyi | Adds the unsubscribe_partition method to Python type hints/stubs. |
| bindings/python/example/example.py | Demonstrates unsubscribing from a partition and reading remaining data via to_arrow(). |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
luoyuxia
approved these changes
Feb 8, 2026
Contributor
luoyuxia
left a comment
There was a problem hiding this comment.
@fresh-borzoni Thanks. LGTM!
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.
Summary
closes #276
unsubscribe_partitionmethod to python bindings