[utils] Add gRPC server bootstrapping packages [serve, connection, and retry] - #138
Open
dean-amar wants to merge 7 commits into
Open
[utils] Add gRPC server bootstrapping packages [serve, connection, and retry]#138dean-amar wants to merge 7 commits into
dean-amar wants to merge 7 commits into
Conversation
Introduce the gRPC server bootstrapping chain (serve -> connection -> retry), plus the generic channel utility and test helpers used by tests in the mentioned libraries, moved from fabric-x-committer so they can be shared by fabric-x-committer, fabric-x-evm, and future components rather than duplicated or depended on across repos. Signed-off-by: Dean Amar <Dean.Amar@ibm.com>
dean-amar
force-pushed
the
move-serve-connection-retry
branch
from
July 19, 2026 15:01
a3bdc90 to
34a5ce5
Compare
Signed-off-by: Dean Amar <Dean.Amar@ibm.com>
dean-amar
force-pushed
the
move-serve-connection-retry
branch
from
July 19, 2026 15:23
4f88b2a to
04fbaff
Compare
Signed-off-by: Dean Amar <Dean.Amar@ibm.com>
Signed-off-by: Dean Amar <Dean.Amar@ibm.com>
Signed-off-by: Dean Amar <Dean.Amar@ibm.com>
dean-amar
marked this pull request as ready for review
July 20, 2026 11:30
Signed-off-by: Dean Amar <Dean.Amar@ibm.com>
Contributor
|
Hi @dean-amar , are you still planning to continue this? @tock-ibm this is what @cendhu mentioned in the call today. Even if you don't want to use the shared package for GRPC, it's good for inspiration ;) |
Author
Hey @arner, this work item is still planned. Some important features are still being added to these packages. As mentioned above, the migration will be delayed slightly until everything is fully covered and ready to be moved into the common repository. |
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.
Type of change
Description
Introduce the gRPC server-bootstrapping chain -
serve->connection->retry.In addition, importing the generic
channelutility and sharedtesthelpers, used in the mentioned packages above, fromfabric-x-committer.Hosting them in
fabric-x-commonletsfabric-x-committer,fabric-x-evm, andfuture components share a single implementation instead of duplicating it or relying on
fabric-x-committeracross repos.Packages added:
utils/retry- backoff/retry.utils/connection- gRPC client dialing, endpoints, TLS config, health checks.utils/serve- gRPC/HTTP server lifecycle, interceptors, TLS providerutils/channel- generic channel + readiness primitives (Readylatch, buffered reader/writer)Related issues
utils/serveto fabric-x-common fabric-x-committer#675