[Rust] Expose persistent stream API - #763
Open
elenagaljak-db wants to merge 1 commit into
Open
Conversation
This was referenced Aug 20, 2026
elenagaljak-db
force-pushed
the
stack/eos-grpc-core
branch
from
August 20, 2026 09:27
98b4072 to
9dcabe6
Compare
elenagaljak-db
force-pushed
the
stack/eos-public-api
branch
from
August 20, 2026 09:27
3f681ec to
793df75
Compare
elenagaljak-db
force-pushed
the
stack/eos-public-api
branch
from
August 20, 2026 10:47
793df75 to
ae4347c
Compare
elenagaljak-db
force-pushed
the
stack/eos-grpc-core
branch
2 times, most recently
from
August 20, 2026 13:09
18a643f to
abf5a92
Compare
elenagaljak-db
force-pushed
the
stack/eos-public-api
branch
from
August 20, 2026 13:09
ae4347c to
e7effcb
Compare
elenagaljak-db
force-pushed
the
stack/eos-grpc-core
branch
from
August 24, 2026 16:40
abf5a92 to
12c4957
Compare
elenagaljak-db
force-pushed
the
stack/eos-public-api
branch
from
August 25, 2026 12:36
e7effcb to
ef1b17e
Compare
elenagaljak-db
force-pushed
the
stack/eos-grpc-core
branch
from
August 25, 2026 13:48
a574b4e to
137f398
Compare
elenagaljak-db
force-pushed
the
stack/eos-public-api
branch
from
August 25, 2026 13:48
ef1b17e to
d96a85d
Compare
Signed-off-by: elenagaljak-db <elena.galjak@databricks.com>
elenagaljak-db
force-pushed
the
stack/eos-public-api
branch
from
August 26, 2026 15:56
d96a85d to
0ecfe35
Compare
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.
What changes are proposed in this pull request?
This PR exposes the feature-gated Rust API for creating and resuming persistent streams on top of #762.
It adds:
ZerobusSdk::persistent_stream_builder().PersistentStreamBuilderwith the existing table, authentication, format, recovery, timeout, backpressure, and callback configuration.build()for a new durable stream andresume(stream_id)for reconnecting.PersistentStream, exposingstream_id, the resume watermark, ingestion, batch ingestion, flush, offset waiting, close, and unacknowledged-record retrieval.JSON and protobuf are supported; Arrow Flight and a public retirement API are intentionally deferred. Documentation follows the pipelined loop-then-
flush()pattern. The new public feature is recorded inrust/NEXT_CHANGELOG.md.Stack
How is this tested?
cargo check -p databricks-zerobus-ingest-sdk --features eoscargo test -p databricks-zerobus-ingest-sdk --features eos --lib— 156 tests passedcargo fmt --all -- --check